Skip to content

Commit 06b2cf6

Browse files
feat(*): Prepare release 2.1.0
1 parent 247949f commit 06b2cf6

File tree

5 files changed

+4
-14
lines changed

5 files changed

+4
-14
lines changed

.github/workflows/coding-standards.yml

-5
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,6 @@ jobs:
5555
ddev get julienloizelet/ddev-tools
5656
ddev get julienloizelet/ddev-crowdsec-php
5757
58-
- name: Add Redis, Memcached and X-Debug
59-
if: ${{ matrix.php-version == '8.3' }}
60-
run: |
61-
cp .ddev/okaeli-add-on/common/custom_files/config.php83missing.yaml .ddev/config.php83missing.yaml
62-
6358
- name: Start DDEV
6459
run: |
6560
ddev start

.github/workflows/test-suite.yml

-5
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,6 @@ jobs:
5353
ddev get julienloizelet/ddev-tools
5454
ddev get julienloizelet/ddev-crowdsec-php
5555
56-
- name: Add Redis, Memcached and X-Debug
57-
if: ${{ matrix.php-version == '8.3' }}
58-
run: |
59-
cp .ddev/okaeli-add-on/common/custom_files/config.php83missing.yaml .ddev/config.php83missing.yaml
60-
6156
- name: Start DDEV
6257
run: ddev start
6358

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ The [public API](https://semver.org/spec/v2.0.0.html#spec-item-1) of this librar
1010
---
1111

1212

13-
## [2.1.0](https://github.com/crowdsecurity/php-cs-bouncer/releases/tag/v2.1.0) - 202?-??-??
13+
## [2.1.0](https://github.com/crowdsecurity/php-cs-bouncer/releases/tag/v2.1.0) - 2023-12-14
1414
[_Compare with previous release_](https://github.com/crowdsecurity/php-cs-bouncer/compare/v2.0.0...v2.1.0)
1515

1616

1717
### Changed
1818

1919
- Update `gregwar/captcha` from `1.2.0` to `1.2.1` and remove override fixes
2020
- Update `crowdsec/common` dependency to `v2.2.0` (`api_connect_timeout` setting)
21-
- Update `crowdsec/remediation-engine` dependency to `v3.2.0` (`api_connect_timeout` setting)
21+
- Update `crowdsec/remediation-engine` dependency to `v3.3.0` (`api_connect_timeout` setting)
2222

2323

2424
---

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
],
4141
"require": {
4242
"php": ">=7.2.5",
43-
"crowdsec/remediation-engine": "^3.1.1",
43+
"crowdsec/remediation-engine": "^3.3.0",
4444
"crowdsec/common": "^2.2.0",
4545
"symfony/config": "^4.4.27 || ^5.2 || ^6.0",
4646
"twig/twig": "^3.4.2",

src/Constants.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class Constants extends RemConstants
3939
/** @var string Path for html templates folder (e.g. ban and captcha wall) */
4040
public const TEMPLATES_DIR = __DIR__ . '/templates';
4141
/** @var string The last version of this library */
42-
public const VERSION = 'v2.0.0';
42+
public const VERSION = 'v2.1.0';
4343
/** @var string The "disabled" x-forwarded-for setting */
4444
public const X_FORWARDED_DISABLED = 'no_forward';
4545
}

0 commit comments

Comments
 (0)