From 721adb907fa4636693695024d3ed7ca8602db261 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Fri, 31 Aug 2018 16:51:02 +0200 Subject: [PATCH] Bump the changelog --- debian/changelog | 17 +++++++++++++++++ doc/source/changelog.rst | 39 +++++++++++++++++++++++++++++++++++++++ src/php_snuffleupagus.h | 2 +- 3 files changed, 57 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 31d66ebe..20c7711e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,20 @@ +snuffleupagus (0.4.0) UNRELEASED; urgency=medium + + * Add the possibility to whitelist `stream wrappers` + * Snuffleupagus is now using php's logging mechanisms, instead of outputting its log directly into the syslog. + * PHP is now prevented from ever disabling certificate verification thanks to a few lines in our default configuration. + * Significant code simplification for cookies handling + * Our `sloppy comparison` feature is now complete + * Snuffleupagus won't start with an invalid config anymore, except if the `sp.allow_broken_configuration` is set. + * It's now possible to place virtual-patches on the return value of user-defined functions. + * Since Snuffleupagus is used by more and more organisations, we added a bunch of them in our propaganda page. + * Add some missing pieces of documentation and fix some links + * Fix the `make install` command + * Fix various compilation warnings + * Snuffleupagus is now running on platforms that aren't using the glibc + + -- jvoisin Fri, 31 Aug 2018 16:50:00 +0200 + snuffleupagus (0.3.1) UNRELEASED; urgency=medium * Disable XXE and harden PRNG by default diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst index 18f64332..534537f9 100644 --- a/doc/source/changelog.rst +++ b/doc/source/changelog.rst @@ -1,6 +1,45 @@ Changelog ========= +0.4.0 - `Oliphant Chuckerbutty `__ 2018/08/31 +-------------------------------------------------------------------------------------------------------------- + +New features +^^^^^^^^^^^^ + +- Add the possibility to whitelist `stream + wrappers `__ +- Snuffleupagus is now using php's logging mechanisms, instead of + outputting its log directly into the syslog. +- PHP is now prevented from ever disabling certificate verification + thanks to a few lines in our default configuration. + + +Improvements +^^^^^^^^^^^^ + +- Significant code simplification for cookies handling + thanks to `Remi Collet `__ +- Our ``sloppy comparison`` feature is now complete +- Snuffleupagus won't start with an invalid config anymore, + except if the ``sp.allow_broken_configuration`` is set. +- It's now possible to place virtual-patches on the return value + of user-defined functions. +- Since Snuffleupagus is used by more and more organisations, + we added a bunch of them in our propaganda page. + +Bug fixes +^^^^^^^^^ + +- Add some missing pieces of documentation and fix some links +- Fix the ``make install`` command +- Fix various compilation warnings +- Snuffleupagus is now running on platforms that aren't using + the glibc, thanks to an external contributor `Antoine Tenart + `__ + + + 0.3.1 - `Elephant Arch `__ 2018/08/20 ------------------------------------------------------------------------------------------------------ diff --git a/src/php_snuffleupagus.h b/src/php_snuffleupagus.h index 50957e5f..bc927a0e 100644 --- a/src/php_snuffleupagus.h +++ b/src/php_snuffleupagus.h @@ -1,7 +1,7 @@ #ifndef PHP_SNUFFLEUPAGUS_H #define PHP_SNUFFLEUPAGUS_H -#define PHP_SNUFFLEUPAGUS_VERSION "0.3.1" +#define PHP_SNUFFLEUPAGUS_VERSION "0.4.0" #define PHP_SNUFFLEUPAGUS_EXTNAME "snuffleupagus" #define PHP_SNUFFLEUPAGUS_AUTHOR "NBS System" #define PHP_SNUFFLEUPAGUS_URL "https://github.com/nbs-system/snuffleupagus"