Skip to content

Commit 1147f03

Browse files
chore(*): Bump to 2.2.1
1 parent 428f32b commit 1147f03

File tree

9 files changed

+19
-10
lines changed

9 files changed

+19
-10
lines changed

.github/workflows/doc-links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Clone sources
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222
with:
2323
path: extension
2424

.github/workflows/end-to-end-auto-prepend-test-suite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
run: ddev get julienloizelet/ddev-playwright
5555

5656
- name: Clone M2 ${{ env.EXTENSION_NAME }} files
57-
uses: actions/checkout@v4
57+
uses: actions/checkout@v5
5858
with:
5959
path: my-own-modules/${{ env.EXTENSION_PATH }}
6060

.github/workflows/end-to-end-test-suite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
run: ddev get julienloizelet/ddev-playwright
6666

6767
- name: Clone M2 ${{ env.EXTENSION_NAME }} files
68-
uses: actions/checkout@v4
68+
uses: actions/checkout@v5
6969
with:
7070
path: my-own-modules/${{ env.EXTENSION_PATH }}
7171

.github/workflows/installation-and-varnish-test-suite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
varnish_setup: "true"
5252

5353
- name: Clone M2 ${{ env.EXTENSION_NAME }} files
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v5
5555
with:
5656
path: my-own-modules/${{ env.EXTENSION_PATH }}
5757

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
echo "VERSION_SOURCES=$(echo ${{ env.EXTENSION_ZIP_NAME }}-${{ env.VERSION_NUMBER }} )" >> $GITHUB_ENV
4747
4848
- name: Clone sources
49-
uses: actions/checkout@v4
49+
uses: actions/checkout@v5
5050
with:
5151
path: ${{ env.VERSION_SOURCES }}
5252

@@ -98,7 +98,7 @@ jobs:
9898
zip -r ${{ env.VERSION_SOURCES }}.zip ${{ env.VERSION_SOURCES }}/ -x '${{ env.VERSION_SOURCES }}/.git*'
9999
100100
- name: Clone zip validator
101-
uses: actions/checkout@v4
101+
uses: actions/checkout@v5
102102
with:
103103
repository: julienloizelet/m2-extension-zip-validator
104104
path: zip-validator
@@ -186,7 +186,7 @@ jobs:
186186
run: ddev get julienloizelet/ddev-playwright
187187

188188
- name: Clone M2 ${{ env.EXTENSION_NAME }} files
189-
uses: actions/checkout@v4
189+
uses: actions/checkout@v5
190190
with:
191191
path: module-sources
192192

.github/workflows/static-and-unit-test-suite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
magento_repository: "https://repo.magento.com/"
4949

5050
- name: Clone M2 Crowdsec Bouncer files
51-
uses: actions/checkout@v4
51+
uses: actions/checkout@v5
5252
with:
5353
path: my-own-modules/${{ env.EXTENSION_PATH }}
5454

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
The [public API](https://semver.org/spec/v2.0.0.html#spec-item-1) for this project is defined by the set of
88
functions provided by the module.
99

10+
## [2.2.1](https://github.com/crowdsecurity/cs-magento-bouncer/releases/tag/v2.2.1) - 2025-10-10
11+
[_Compare with previous release_](https://github.com/crowdsecurity/cs-magento-bouncer/compare/v2.2.0...v2.2.1)
12+
13+
### Fixed
14+
15+
- Fix deprecation warning on PHP 8.4 ([PR 28](https://github.com/crowdsecurity/cs-magento-bouncer/pull/28))
16+
17+
18+
---
1019

1120
## [2.2.0](https://github.com/crowdsecurity/cs-magento-bouncer/releases/tag/v2.2.0) - 2025-09-15
1221
[_Compare with previous release_](https://github.com/crowdsecurity/cs-magento-bouncer/compare/v2.1.1...v2.2.0)

Constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class Constants extends LibConstants
3333
{
3434

3535
/** @var string The last version of this library */
36-
public const VERSION = 'v2.2.0';
36+
public const VERSION = 'v2.2.1';
3737

3838
/** @var string The user agent used to send request to Local API */
3939
public const BASE_USER_AGENT = 'Magento 2 CrowdSec Bouncer/'.self::VERSION;

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "crowdsec/magento2-module-bouncer",
33
"description": "The Bouncer module for Magento 2 allows rejecting IP detected as malicious by CrowdSec",
44
"type": "magento2-module",
5-
"version": "2.2.0",
5+
"version": "2.2.1",
66
"minimum-stability": "stable",
77
"license": "MIT",
88
"authors": [

0 commit comments

Comments
 (0)