Skip to content

Commit 13a1393

Browse files
Merge pull request #114 from julienloizelet/main
Update lib to 0.34.0 and add 6.1 compatibility tests
2 parents 7145a1b + 02c2f25 commit 13a1393

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+381
-236
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
wp-version: [ "4.9", "5.0", "5.1", "5.2", "5.3", "5.4", "5.5", "5.6", "5.7", "5.8", "5.9", "6.0" ]
18+
wp-version: [ "4.9", "5.0", "5.1", "5.2", "5.3", "5.4", "5.5", "5.6", "5.7", "5.8", "5.9", "6.0", "6.1" ]
1919
php-version: [ "7.2", "7.4", "8.0" ]
2020
exclude:
2121
- { php-version: "7.4", wp-version: "4.9" }
@@ -41,7 +41,7 @@ jobs:
4141
steps:
4242

4343
- name: Clone DDEV files
44-
uses: actions/checkout@v2
44+
uses: actions/checkout@v3
4545
with:
4646
path: .ddev
4747
repository: julienloizelet/ddev-wp
@@ -96,7 +96,7 @@ jobs:
9696
9797
9898
- name: Clone ${{ env.EXTENSION_NAME }} files
99-
uses: actions/checkout@v2
99+
uses: actions/checkout@v3
100100
with:
101101
path: my-own-modules/${{ env.EXTENSION_PATH }}
102102

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
wp-version: [ "4.9", "5.0", "5.1", "5.2", "5.3", "5.4", "5.5", "5.6", "5.7", "5.8", "5.9", "6.0" ]
18+
wp-version: [ "4.9", "5.0", "5.1", "5.2", "5.3", "5.4", "5.5", "5.6", "5.7", "5.8", "5.9", "6.0", "6.1" ]
1919
php-version: [ "7.2", "7.4", "8.0" ]
2020
exclude:
2121
- { php-version: "7.4", wp-version: "4.9" }
@@ -41,7 +41,7 @@ jobs:
4141
steps:
4242

4343
- name: Clone DDEV files
44-
uses: actions/checkout@v2
44+
uses: actions/checkout@v3
4545
with:
4646
path: .ddev
4747
repository: julienloizelet/ddev-wp
@@ -96,7 +96,7 @@ jobs:
9696
9797
9898
- name: Clone ${{ env.EXTENSION_NAME }} files
99-
uses: actions/checkout@v2
99+
uses: actions/checkout@v3
100100
with:
101101
path: my-own-modules/${{ env.EXTENSION_PATH }}
102102

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en)
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [?.?.?](https://github.com/crowdsecurity/cs-wordpress-bouncer/releases/tag/v1.10.0) - 2022-??-??
8+
[_Compare with previous release_](https://github.com/crowdsecurity/cs-wordpress-bouncer/compare/v1.9.0...v1.10.0)
9+
### Changed
10+
- Do not use cache tags for `memcached` as it is discouraged
11+
- Replace unauthorized chars by underscore _ in cache key
12+
### Fixed
13+
- Fix ban and captcha walls W3C validity
14+
15+
---
16+
717
## [1.9.0](https://github.com/crowdsecurity/cs-wordpress-bouncer/releases/tag/v1.9.0) - 2022-09-15
818
[_Compare with previous release_](https://github.com/crowdsecurity/cs-wordpress-bouncer/compare/v1.8.1...v1.9.0)
919
### Added

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
}
2020
},
2121
"require": {
22-
"crowdsec/bouncer": "0.32.0",
22+
"crowdsec/bouncer": "0.34.0",
2323
"symfony/polyfill-mbstring": "1.20.0",
2424
"symfony/service-contracts": "2.4.1"
2525
},

0 commit comments

Comments
 (0)