summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2025-08-19 20:54:00 +0200
committerjvoisin2025-08-19 20:54:00 +0200
commit1c7598c432551d0c49c2c57f249ccd5ccabce638 (patch)
treee4814f2dd8f0739fe3490bcabd74af90d29781f4
parentc25c8a1f25bf5ed40fbbd8642d72865dd68d054d (diff)
Bump the changelogv0.12.0
-rw-r--r--debian/changelog12
-rw-r--r--doc/source/changelog.rst25
-rw-r--r--src/php_snuffleupagus.h2
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 @@
1snuffleupagus (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
1snuffleupagus (0.11.0) UNRELEASED; urgency=low 13snuffleupagus (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 @@
1Changelog 1Changelog
2========= 2=========
3 3
40.11.0 - ` Mastodon <https://github.com/jvoisin/snuffleupagus/releases/tag/v0.12.0>`__ 2024/09/06 40.12.0 - `Stegodontidae <https://github.com/jvoisin/snuffleupagus/releases/tag/v0.12.0>`__ 2025/08/19
5-----------------------------------------------------------------------------------------------------
6
7New features
8^^^^^^^^^^^^
9* Unify the default rules across all php versions
10
11Breaking Changes
12^^^^^^^^^^^^^^^^
13* Snuffleupagus will no longer report outdated PHP versions
14
15Bug 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
230.11.0 - `Mastodon <https://github.com/jvoisin/snuffleupagus/releases/tag/v0.11.0>`__ 2024/09/06
5------------------------------------------------------------------------------------------------- 24-------------------------------------------------------------------------------------------------
6 25
7New features 26New 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
14Breaking Changes
15^^^^^^^^^^^^^^^^
16 33
17Bug fixes 34Bug 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
40Breaking Changes 57Breaking 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"