diff options
| -rw-r--r-- | debian/changelog | 13 | ||||
| -rw-r--r-- | doc/source/changelog.rst | 16 | ||||
| -rw-r--r-- | src/php_snuffleupagus.h | 2 |
3 files changed, 29 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index d0ab5e0..51ca43d 100644 --- a/debian/changelog +++ b/debian/changelog | |||
| @@ -1,3 +1,16 @@ | |||
| 1 | snuffleupagus (0.7.1) UNRELEASED; urgency=low | ||
| 2 | [ jvoisin ] | ||
| 3 | * Fixed possible memory-leaks when hooking via regular expressions | ||
| 4 | * Modernise the code by removing usage of `strtok` | ||
| 5 | * Prevent a possible crash during configuration reloading | ||
| 6 | * Fix the default rules to catch dangerous `chmod` calls | ||
| 7 | * Improve compatibility with various `libpcre` configurations/versions | ||
| 8 | * Improve the default rules' compatibility with php8 | ||
| 9 | * Prevent XXE in php8 as well | ||
| 10 | * Improve a bit the verbosity of the logs | ||
| 11 | * Add a rules file for php8 | ||
| 12 | |||
| 13 | |||
| 1 | snuffleupagus (0.7.0) UNRELEASED; urgency=medium | 14 | snuffleupagus (0.7.0) UNRELEASED; urgency=medium |
| 2 | [ jvoisin ] | 15 | [ jvoisin ] |
| 3 | * PHP8 support | 16 | * PHP8 support |
diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst index 307c92c..39b65cf 100644 --- a/doc/source/changelog.rst +++ b/doc/source/changelog.rst | |||
| @@ -1,8 +1,22 @@ | |||
| 1 | Changelog | 1 | Changelog |
| 2 | ========= | 2 | ========= |
| 3 | 3 | ||
| 4 | 0.7.1 - `Proboscidea <https://github.com/jvoisin/snuffleupagus/releases/tag/v0.7.0>`__ 2021/08/02 | ||
| 5 | ------------------------------------------------------------------------------------------------- | ||
| 6 | |||
| 7 | * Fixed possible memory-leaks when hooking via regular expressions | ||
| 8 | * Modernise the code by removing usage of `strtok` | ||
| 9 | * Prevent a possible crash during configuration reloading | ||
| 10 | * Fix the default rules to catch dangerous `chmod` calls | ||
| 11 | * Improve compatibility with various `libpcre` configurations/versions | ||
| 12 | * Improve the default rules' compatibility with php8 | ||
| 13 | * Prevent XXE in php8 as well | ||
| 14 | * Improve a bit the verbosity of the logs | ||
| 15 | * Add a rules file for php8 | ||
| 16 | |||
| 17 | |||
| 4 | 0.7.0 - `Los Elefantes <https://github.com/jvoisin/snuffleupagus/releases/tag/v0.7.0>`__ 2021/01/02 | 18 | 0.7.0 - `Los Elefantes <https://github.com/jvoisin/snuffleupagus/releases/tag/v0.7.0>`__ 2021/01/02 |
| 5 | ---------------------------------------------------------------------------------------------------------- | 19 | --------------------------------------------------------------------------------------------------- |
| 6 | 20 | ||
| 7 | New features | 21 | New features |
| 8 | ^^^^^^^^^^^^ | 22 | ^^^^^^^^^^^^ |
diff --git a/src/php_snuffleupagus.h b/src/php_snuffleupagus.h index 5b2b414..9ed67e6 100644 --- a/src/php_snuffleupagus.h +++ b/src/php_snuffleupagus.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | #ifndef PHP_SNUFFLEUPAGUS_H | 1 | #ifndef PHP_SNUFFLEUPAGUS_H |
| 2 | #define PHP_SNUFFLEUPAGUS_H | 2 | #define PHP_SNUFFLEUPAGUS_H |
| 3 | 3 | ||
| 4 | #define PHP_SNUFFLEUPAGUS_VERSION "0.7.0" | 4 | #define PHP_SNUFFLEUPAGUS_VERSION "0.7.1" |
| 5 | #define PHP_SNUFFLEUPAGUS_EXTNAME "snuffleupagus" | 5 | #define PHP_SNUFFLEUPAGUS_EXTNAME "snuffleupagus" |
| 6 | #define PHP_SNUFFLEUPAGUS_AUTHOR "NBS System & Julien (jvoisin) Voisin" | 6 | #define PHP_SNUFFLEUPAGUS_AUTHOR "NBS System & Julien (jvoisin) Voisin" |
| 7 | #define PHP_SNUFFLEUPAGUS_URL "https://github.com/jvoisin/snuffleupagus" | 7 | #define PHP_SNUFFLEUPAGUS_URL "https://github.com/jvoisin/snuffleupagus" |
