diff options
| -rw-r--r-- | debian/changelog | 12 | ||||
| -rw-r--r-- | doc/source/changelog.rst | 25 | ||||
| -rw-r--r-- | src/php_snuffleupagus.h | 2 |
3 files changed, 34 insertions, 5 deletions
diff --git a/debian/changelog b/debian/changelog index f5b67c3..4d48990 100644 --- a/debian/changelog +++ b/debian/changelog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | snuffleupagus (0.12.0) UNRELEASED; urgency=low | ||
| 2 | [ jvoisin ] | ||
| 3 | * Unify the default rules across all php versions | ||
| 4 | * Snuffleupagus will no longer report outdated PHP versions | ||
| 5 | * Fix a possible cookie-related crash | ||
| 6 | * Fix a NULL-pointer dereference | ||
| 7 | * Fix a minor portability issue | ||
| 8 | * Improve modern Debian support | ||
| 9 | * Improved documentation | ||
| 10 | |||
| 11 | -- jvoisin <julien.voisin+snuffleupagus@dustri.org> Tue, 19 Aug 2025 21:00:00 +0200 | ||
| 12 | |||
| 1 | snuffleupagus (0.11.0) UNRELEASED; urgency=low | 13 | snuffleupagus (0.11.0) UNRELEASED; urgency=low |
| 2 | [ jvoisin ] | 14 | [ jvoisin ] |
| 3 | * Compatibility with PHP8.4 | 15 | * Compatibility with PHP8.4 |
diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst index a0d3f4a..490a7ea 100644 --- a/doc/source/changelog.rst +++ b/doc/source/changelog.rst | |||
| @@ -1,7 +1,26 @@ | |||
| 1 | Changelog | 1 | Changelog |
| 2 | ========= | 2 | ========= |
| 3 | 3 | ||
| 4 | 0.11.0 - ` Mastodon <https://github.com/jvoisin/snuffleupagus/releases/tag/v0.12.0>`__ 2024/09/06 | 4 | 0.12.0 - `Stegodontidae <https://github.com/jvoisin/snuffleupagus/releases/tag/v0.12.0>`__ 2025/08/19 |
| 5 | ----------------------------------------------------------------------------------------------------- | ||
| 6 | |||
| 7 | New features | ||
| 8 | ^^^^^^^^^^^^ | ||
| 9 | * Unify the default rules across all php versions | ||
| 10 | |||
| 11 | Breaking Changes | ||
| 12 | ^^^^^^^^^^^^^^^^ | ||
| 13 | * Snuffleupagus will no longer report outdated PHP versions | ||
| 14 | |||
| 15 | Bug fixes | ||
| 16 | ^^^^^^^^^ | ||
| 17 | * Fix a possible cookie-related crash | ||
| 18 | * Fix a NULL-pointer dereference | ||
| 19 | * Fix a minor portability issue | ||
| 20 | * Improve modern Debian support | ||
| 21 | * Improved documentation | ||
| 22 | |||
| 23 | 0.11.0 - `Mastodon <https://github.com/jvoisin/snuffleupagus/releases/tag/v0.11.0>`__ 2024/09/06 | ||
| 5 | ------------------------------------------------------------------------------------------------- | 24 | ------------------------------------------------------------------------------------------------- |
| 6 | 25 | ||
| 7 | New features | 26 | New features |
| @@ -11,8 +30,6 @@ New features | |||
| 11 | * Improve scripts/generate_rules.php with regard to functions from global space prefixed with \ | 30 | * Improve scripts/generate_rules.php with regard to functions from global space prefixed with \ |
| 12 | * Add option to specify the allowed "php" wrapper types | 31 | * Add option to specify the allowed "php" wrapper types |
| 13 | 32 | ||
| 14 | Breaking Changes | ||
| 15 | ^^^^^^^^^^^^^^^^ | ||
| 16 | 33 | ||
| 17 | Bug fixes | 34 | Bug fixes |
| 18 | ^^^^^^^^^ | 35 | ^^^^^^^^^ |
| @@ -37,7 +54,7 @@ New features | |||
| 37 | * Add `sp.log_max_len` to limit the maximum size of the log messages | 54 | * Add `sp.log_max_len` to limit the maximum size of the log messages |
| 38 | * Add an example configuration for Xenforo 2.2.12 | 55 | * Add an example configuration for Xenforo 2.2.12 |
| 39 | 56 | ||
| 40 | Breaking Changes | 57 | Breaking C2hanges |
| 41 | ^^^^^^^^^^^^^^^^ | 58 | ^^^^^^^^^^^^^^^^ |
| 42 | * Url encode functions arguments when logging them | 59 | * Url encode functions arguments when logging them |
| 43 | 60 | ||
diff --git a/src/php_snuffleupagus.h b/src/php_snuffleupagus.h index b738ae8..be37cfa 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.11.0" | 4 | #define PHP_SNUFFLEUPAGUS_VERSION "0.12.0" |
| 5 | #define PHP_SNUFFLEUPAGUS_EXTNAME "snuffleupagus" | 5 | #define PHP_SNUFFLEUPAGUS_EXTNAME "snuffleupagus" |
| 6 | #define PHP_SNUFFLEUPAGUS_AUTHOR "NBS System & Julien (jvoisin) Voisin & SektionEins GmbH" | 6 | #define PHP_SNUFFLEUPAGUS_AUTHOR "NBS System & Julien (jvoisin) Voisin & SektionEins GmbH" |
| 7 | #define PHP_SNUFFLEUPAGUS_URL "https://github.com/jvoisin/snuffleupagus" | 7 | #define PHP_SNUFFLEUPAGUS_URL "https://github.com/jvoisin/snuffleupagus" |
