Skip to content

Commit d9e52e6

Browse files
feat(*): Add compatibility with 6.6 (#155)
1 parent 27a8042 commit d9e52e6

File tree

9 files changed

+20
-13
lines changed

9 files changed

+20
-13
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
wp-version: [ "4.9", "5.0", "5.9", "6.0", "6.4", "6.5" ]
22+
wp-version: [ "4.9", "5.0", "5.9", "6.0", "6.5", "6.6" ]
2323
php-version: [ "7.2", "7.4", "8.0" ]
2424
exclude:
2525
- { php-version: "7.4", wp-version: "4.9" }

.github/workflows/end-to-end-multisite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
wp-version: [ "4.9", "5.9", "6.5" ]
27+
wp-version: [ "4.9", "5.9", "6.6" ]
2828
php-version: [ "7.2" ]
2929
subsite: ["site1", "site2"]
3030

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ jobs:
3434
php-version: '7.2'
3535
- wp-version: '6.0'
3636
php-version: '8.0'
37-
- wp-version: '6.5'
37+
- wp-version: '6.6'
3838
php-version: '7.2'
39-
- wp-version: '6.5'
39+
- wp-version: '6.6'
4040
php-version: '8.0'
41-
- wp-version: '6.5'
41+
- wp-version: '6.6'
4242
php-version: '8.3'
4343

4444
name: End-to-end test suite

.github/workflows/release-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
wp-version: [ "4.9", "5.0", "5.9", "6.0", "6.5" ]
27+
wp-version: [ "4.9", "5.0", "5.9", "6.0", "6.6" ]
2828
php-version: [ "7.2", "7.4", "8.0" ]
2929
exclude:
3030
- { php-version: "7.4", wp-version: "4.9" }

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ jobs:
166166
strategy:
167167
fail-fast: false
168168
matrix:
169-
wp-version: [ "4.9", "5.0", "5.9", "6.0", "6.5" ]
169+
wp-version: [ "4.9", "5.0", "5.9", "6.0", "6.6" ]
170170
php-version: [ "7.2", "7.4", "8.0" ]
171171
exclude:
172172
- { php-version: "7.4", wp-version: "4.9" }

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
---
88

9+
## [2.6.7](https://github.com/crowdsecurity/cs-wordpress-bouncer/releases/tag/v2.6.7) - 2024-07-26
10+
[_Compare with previous release_](https://github.com/crowdsecurity/cs-wordpress-bouncer/compare/v2.6.6...v2.6.7)
911

12+
### Added
13+
14+
- Add compatibility with WordPress 6.6
15+
16+
---
1017

1118
## [2.6.6](https://github.com/crowdsecurity/cs-wordpress-bouncer/releases/tag/v2.6.6) - 2024-06-20
1219
[_Compare with previous release_](https://github.com/crowdsecurity/cs-wordpress-bouncer/compare/v2.6.5...v2.6.6)

crowdsec.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
* Plugin URI: https://github.com/crowdsecurity/cs-wordpress-bouncer
55
* Description: Safer Together. Protect your WordPress application with CrowdSec.
66
* Tags: security, captcha, ip-blocker, crowdsec, hacker-protection
7-
* Version: 2.6.6
7+
* Version: 2.6.7
88
* Author: CrowdSec
99
* Author URI: https://www.crowdsec.net/
1010
* Github: https://github.com/crowdsecurity/cs-wordpress-bouncer
1111
* License: MIT
1212
* License URI: https://opensource.org/licenses/MIT
1313
* Requires PHP: 7.2
1414
* Requires at least: 4.9
15-
* Tested up to: 6.5
16-
* Stable tag: 2.6.6
15+
* Tested up to: 6.6
16+
* Stable tag: 2.6.7
1717
* Text Domain: crowdsec-wp
1818
* First release: 2021.
1919
*/

inc/Constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ class Constants extends LibConstants
2121

2222
public const DEFAULT_BASE_FILE_PATH = __DIR__ . '/../../../../wp-content/uploads/crowdsec/';
2323
public const STANDALONE_CONFIG_PATH = __DIR__ . '/standalone-settings.php';
24-
public const VERSION = 'v2.6.6';
24+
public const VERSION = 'v2.6.7';
2525
}

readme.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Contributors: crowdsec
33
Donate link: https://crowdsec.net/
44
Tags: security, captcha, ip-blocker, crowdsec, hacker-protection
55
Requires at least: 4.9
6-
Tested up to: 6.5
7-
Stable tag: 2.6.6
6+
Tested up to: 6.6
7+
Stable tag: 2.6.7
88
Requires PHP: 7.2
99
License: MIT
1010
License URI: https://opensource.org/licenses/MIT

0 commit comments

Comments
 (0)