summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog9
-rw-r--r--doc/source/changelog.rst19
-rw-r--r--src/php_snuffleupagus.h2
3 files changed, 29 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 0d73819..feed240 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
1snuffleupagus (0.10.0) UNRELEASED; urgency=low
2 [ jvoisin ]
3 * Compatibility with PHP8.3
4 * Add `sp.log_max_len` to limit the maximum size of the log messages
5 * Add an example configuration for Xenforo 2.2.12
6 * Url encode functions arguments when logging them
7
8 -- jvoisin <julien.voisin+snuffleupagus@dustri.org> Wed, 20 Sep 2023 15:25:00 +0200
9
1snuffleupagus (0.9.0) UNRELEASED; urgency=low 10snuffleupagus (0.9.0) UNRELEASED; urgency=low
2 [ jvoisin ] 11 [ jvoisin ]
3 * Compatibility with PHP8.2 12 * Compatibility with PHP8.2
diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst
index aa039e4..7d70498 100644
--- a/doc/source/changelog.rst
+++ b/doc/source/changelog.rst
@@ -1,6 +1,25 @@
1Changelog 1Changelog
2========= 2=========
3 3
40.10.0 - `Babar the Elephant <https://github.com/jvoisin/snuffleupagus/releases/tag/v0.10.0>`__ 2023/09/20
5----------------------------------------------------------------------------------------------------------
6
7New features
8^^^^^^^^^^^^
9* Compatibility with PHP8.3
10* Add `sp.log_max_len` to limit the maximum size of the log messages
11* Add an example configuration for Xenforo 2.2.12
12
13Breaking Changes
14^^^^^^^^^^^^^^^^
15* Url encode functions arguments when logging them
16
17Bug fixes
18^^^^^^^^^
19* Fix a possible NULL-byte truncation when outputting parameters in the logs
20* Make readonly_exec play nice on readonly filesystems
21
22
40.9.0 - `Elephant seal <https://github.com/jvoisin/snuffleupagus/releases/tag/v0.9.0>`__ 2023/01/03 230.9.0 - `Elephant seal <https://github.com/jvoisin/snuffleupagus/releases/tag/v0.9.0>`__ 2023/01/03
5--------------------------------------------------------------------------------------------------- 24---------------------------------------------------------------------------------------------------
6 25
diff --git a/src/php_snuffleupagus.h b/src/php_snuffleupagus.h
index 229c1b9..53cf1da 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.9.0" 4#define PHP_SNUFFLEUPAGUS_VERSION "0.10.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"