Skip to content

Commit

Permalink
feat(*): Prepare release 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
julienloizelet committed Dec 14, 2023
1 parent 247949f commit 06b2cf6
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 14 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,6 @@ jobs:
ddev get julienloizelet/ddev-tools
ddev get julienloizelet/ddev-crowdsec-php
- name: Add Redis, Memcached and X-Debug
if: ${{ matrix.php-version == '8.3' }}
run: |
cp .ddev/okaeli-add-on/common/custom_files/config.php83missing.yaml .ddev/config.php83missing.yaml
- name: Start DDEV
run: |
ddev start
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,6 @@ jobs:
ddev get julienloizelet/ddev-tools
ddev get julienloizelet/ddev-crowdsec-php
- name: Add Redis, Memcached and X-Debug
if: ${{ matrix.php-version == '8.3' }}
run: |
cp .ddev/okaeli-add-on/common/custom_files/config.php83missing.yaml .ddev/config.php83missing.yaml
- name: Start DDEV
run: ddev start

Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ The [public API](https://semver.org/spec/v2.0.0.html#spec-item-1) of this librar
---


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


### Changed

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


---
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
],
"require": {
"php": ">=7.2.5",
"crowdsec/remediation-engine": "^3.1.1",
"crowdsec/remediation-engine": "^3.3.0",
"crowdsec/common": "^2.2.0",
"symfony/config": "^4.4.27 || ^5.2 || ^6.0",
"twig/twig": "^3.4.2",
Expand Down
2 changes: 1 addition & 1 deletion src/Constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class Constants extends RemConstants
/** @var string Path for html templates folder (e.g. ban and captcha wall) */
public const TEMPLATES_DIR = __DIR__ . '/templates';
/** @var string The last version of this library */
public const VERSION = 'v2.0.0';
public const VERSION = 'v2.1.0';
/** @var string The "disabled" x-forwarded-for setting */
public const X_FORWARDED_DISABLED = 'no_forward';
}

0 comments on commit 06b2cf6

Please sign in to comment.