From f9332611299665f2c3c89b49c1c4cecd14093480 Mon Sep 17 00:00:00 2001 From: Julien Loizelet Date: Fri, 18 Oct 2024 14:40:39 +0900 Subject: [PATCH] feat(*): Prepare release 3.5.0 --- CHANGELOG.md | 11 +++++++++++ src/Constants.php | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d959c0e..f50480f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,17 @@ The [public API](https://semver.org/spec/v2.0.0.html#spec-item-1) of this libra As far as possible, we try to adhere to [Symfony guidelines](https://symfony.com/doc/current/contributing/code/bc.html#working-on-symfony-code) when deciding whether a change is a breaking change or not. +--- + +## [3.5.0](https://github.com/crowdsecurity/php-remediation-engine/releases/tag/v3.5.0) - 2024-10-18 +[_Compare with previous release_](https://github.com/crowdsecurity/php-remediation-engine/compare/v3.4.0...v3.5.0) + +### Added + +- Add AppSec settings to manage maximum size of the request body + - Add `appsec_max_body_size_kb` setting + - Add `appsec_body_size_exceeded_action` setting + --- ## [3.4.0](https://github.com/crowdsecurity/php-remediation-engine/releases/tag/v3.4.0) - 2024-10-04 diff --git a/src/Constants.php b/src/Constants.php index efd0248..80533de 100644 --- a/src/Constants.php +++ b/src/Constants.php @@ -65,5 +65,5 @@ class Constants extends CommonConstants /** * @var string The current version of this library */ - public const VERSION = 'v3.4.0'; + public const VERSION = 'v3.5.0'; }