summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2022-08-27 17:34:24 +0200
committerjvoisin2022-08-27 17:34:24 +0200
commite9cb71769ae7a4c189fb2ecadc52b20bb8980166 (patch)
tree592e3343d593cc3f79a8cd484cd4fc7f120cf37a
parente6219a095de78ce03be4a36360020a6f4fe94105 (diff)
Bump the changelogv0.8.3
-rw-r--r--debian/changelog15
-rw-r--r--doc/source/changelog.rst23
-rw-r--r--src/php_snuffleupagus.h2
3 files changed, 39 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 034a34d..a3ad95c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,18 @@
1snuffleupagus (0.8.3) UNRELEASED; urgency=low
2 [ jvoisin ]
3 * Mix the stacktrace in the sha256 for the filename of .dump()
4 * Add the ability to dump the parameter passed to `eval`
5 * Add the ability to match on `eval`'s parameter
6 * Add optional extended checks for `readonly_exec`
7 * Add config error for ini rules with identical key
8 * Add disabled functions return type to config export
9 * Make it actually possible to configure sloppy comparison on latests PHP7
10 * Allow file:// prefix in include() wich readonly_exec mode
11 * Fix a possible crash when exporting function list
12 * Fix a minor memory leak when parsing cookie-related configuration
13
14 -- jvoisin <julien.voisin+snuffleupagus@dustri.org> Sat, 27 Aug 2022 17:30:00 +0200
15
1snuffleupagus (0.8.2) UNRELEASED; urgency=low 16snuffleupagus (0.8.2) UNRELEASED; urgency=low
2 [ jvoisin ] 17 [ jvoisin ]
3 * Fix compilation when ZTS is used 18 * Fix compilation when ZTS is used
diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst
index a406953..d5d6ba7 100644
--- a/doc/source/changelog.rst
+++ b/doc/source/changelog.rst
@@ -1,6 +1,29 @@
1Changelog 1Changelog
2========= 2=========
3 3
40.8.3 - `Surus <https://github.com/jvoisin/snuffleupagus/releases/tag/v0.8.3>`__ 2022/08/27
5-------------------------------------------------------------------------------------------
6
7New features
8^^^^^^^^^^^^
9* Add the ability to dump the parameter passed to `eval`
10* Add the ability to match on `eval`'s parameter
11* Add optional extended checks for `readonly_exec`
12* Add config error for ini rules with identical key
13* Add disabled functions return type to config export
14
15Breaking Changes
16^^^^^^^^^^^^^^^^
17* Mix the stacktrace in the sha256 for the filename of .dump()
18
19Bug fixes
20^^^^^^^^^
21* Make it actually possible to configure sloppy comparison on latests PHP7
22* Allow file:// prefix in include() wich readonly_exec mode
23* Fix a possible crash when exporting function list
24* Fix a minor memory leak when parsing cookie-related configuration
25
26
40.8.2 - `Surus <https://github.com/jvoisin/snuffleupagus/releases/tag/v0.8.2>`__ 2022/05/20 270.8.2 - `Surus <https://github.com/jvoisin/snuffleupagus/releases/tag/v0.8.2>`__ 2022/05/20
5------------------------------------------------------------------------------------------- 28-------------------------------------------------------------------------------------------
6 29
diff --git a/src/php_snuffleupagus.h b/src/php_snuffleupagus.h
index 3eeb9db..7c534a8 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.8.2" 4#define PHP_SNUFFLEUPAGUS_VERSION "0.8.3"
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"