diff --git a/debian/changelog b/debian/changelog index d0ab5e07..51ca43df 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +snuffleupagus (0.7.1) UNRELEASED; urgency=low + [ jvoisin ] + * Fixed possible memory-leaks when hooking via regular expressions + * Modernise the code by removing usage of `strtok` + * Prevent a possible crash during configuration reloading + * Fix the default rules to catch dangerous `chmod` calls + * Improve compatibility with various `libpcre` configurations/versions + * Improve the default rules' compatibility with php8 + * Prevent XXE in php8 as well + * Improve a bit the verbosity of the logs + * Add a rules file for php8 + + snuffleupagus (0.7.0) UNRELEASED; urgency=medium [ jvoisin ] * PHP8 support diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst index 307c92c4..39b65cfe 100644 --- a/doc/source/changelog.rst +++ b/doc/source/changelog.rst @@ -1,8 +1,22 @@ Changelog ========= +0.7.1 - `Proboscidea `__ 2021/08/02 +------------------------------------------------------------------------------------------------- + +* Fixed possible memory-leaks when hooking via regular expressions +* Modernise the code by removing usage of `strtok` +* Prevent a possible crash during configuration reloading +* Fix the default rules to catch dangerous `chmod` calls +* Improve compatibility with various `libpcre` configurations/versions +* Improve the default rules' compatibility with php8 +* Prevent XXE in php8 as well +* Improve a bit the verbosity of the logs +* Add a rules file for php8 + + 0.7.0 - `Los Elefantes `__ 2021/01/02 ----------------------------------------------------------------------------------------------------------- +--------------------------------------------------------------------------------------------------- New features ^^^^^^^^^^^^ diff --git a/src/php_snuffleupagus.h b/src/php_snuffleupagus.h index 5b2b414d..9ed67e65 100644 --- a/src/php_snuffleupagus.h +++ b/src/php_snuffleupagus.h @@ -1,7 +1,7 @@ #ifndef PHP_SNUFFLEUPAGUS_H #define PHP_SNUFFLEUPAGUS_H -#define PHP_SNUFFLEUPAGUS_VERSION "0.7.0" +#define PHP_SNUFFLEUPAGUS_VERSION "0.7.1" #define PHP_SNUFFLEUPAGUS_EXTNAME "snuffleupagus" #define PHP_SNUFFLEUPAGUS_AUTHOR "NBS System & Julien (jvoisin) Voisin" #define PHP_SNUFFLEUPAGUS_URL "https://github.com/jvoisin/snuffleupagus"