Skip to content

Commit

Permalink
feat(*): Prepare release 1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
julienloizelet committed Dec 21, 2022
1 parent fd4c3e3 commit 8f02e1d
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [1.11.0](https://github.com/crowdsecurity/cs-wordpress-bouncer/releases/tag/v1.11.0) - 2022-12-22
[_Compare with previous release_](https://github.com/crowdsecurity/cs-wordpress-bouncer/compare/v1.10.0...v1.11.0)

### Added
- Add LAPI request timeout setting (default to 120 seconds)
---

## [1.10.0](https://github.com/crowdsecurity/cs-wordpress-bouncer/releases/tag/v1.10.0) - 2022-12-01
[_Compare with previous release_](https://github.com/crowdsecurity/cs-wordpress-bouncer/compare/v1.9.0...v1.10.0)
### Changed
Expand Down
4 changes: 2 additions & 2 deletions crowdsec.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Plugin URI: https://github.com/crowdsecurity/cs-wordpress-bouncer
* Description: Safer Together. Protect your WordPress application with CrowdSec.
* Tags: crowdsec-bouncer, wordpress, security, firewall, captcha, ip-scanner, ip-blocker, ip-blocking, ip-address, ip-database, ip-range-check, crowdsec, ban-hosts, ban-management, anti-hacking, hacker-protection, captcha-image, captcha-generator, captcha-generation, captcha-service
* Version: 1.10.0
* Version: 1.11.0
* Author: CrowdSec
* Author URI: https://www.crowdsec.net/
* Github: https://github.com/crowdsecurity/cs-wordpress-blocker
Expand All @@ -13,7 +13,7 @@
* Requires PHP: 7.2
* Requires at least: 4.9
* Tested up to: 6.1
* Stable tag: 1.10.0
* Stable tag: 1.11.0
* Text Domain: crowdsec-wp
* First release: 2021.
*/
Expand Down
2 changes: 1 addition & 1 deletion inc/Constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Constants extends LibConstants
public const CROWDSEC_DEBUG_LOG_PATH = __DIR__ . '/../logs/debug.log';
public const CROWDSEC_CACHE_PATH = __DIR__ . '/../.cache';
public const CROWDSEC_CONFIG_PATH = __DIR__ . '/standalone-settings.php';
public const CROWDSEC_BOUNCER_USER_AGENT = 'WordPress CrowdSec Bouncer/v1.10.0';
public const CROWDSEC_BOUNCER_USER_AGENT = 'WordPress CrowdSec Bouncer/v1.11.0';
public const CROWDSEC_BOUNCER_GEOLOCATION_DIR = __DIR__ . '/../geolocation';
public const CROWDSEC_BOUNCER_TLS_DIR = __DIR__ . '/../tls';

Expand Down
6 changes: 5 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: https://crowdsec.net/
Tags: crowdsec-bouncer, wordpress, security, firewall, captcha, ip-scanner, ip-blocker, ip-blocking, ip-address, ip-database, ip-range-check, crowdsec, ban-hosts, ban-management, anti-hacking, hacker-protection, captcha-image, captcha-generator, captcha-generation, captcha-service
Requires at least: 4.9
Tested up to: 6.1
Stable tag: 1.10.0
Stable tag: 1.11.0
Requires PHP: 7.2
License: MIT
License URI: https://opensource.org/licenses/MIT
Expand Down Expand Up @@ -44,6 +44,10 @@ This WordPress plugin is a "bouncer", which purpose is to block detected attacks

== Changelog ==

= 1.11 (2022-12-22) =

- Add LAPI request timeout setting

= 1.10 (2022-12-01) =

- Modify ban and captcha walls templating for W3C validity
Expand Down
3 changes: 3 additions & 0 deletions tests/e2e-ddev/utils/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,11 @@ const onAdminGoToThemePage = async () => {
};

const onLoginPageLoginAsAdmin = async () => {
await wait(2000);
await page.fill("#user_login", ADMIN_LOGIN);
await wait(2000);
await page.fill("#user_pass", ADMIN_PASSWORD);
await wait(2000);
await page.waitForSelector("#wp-submit");
await page.click("#wp-submit");
};
Expand Down

0 comments on commit 8f02e1d

Please sign in to comment.