summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2018-08-31 16:51:02 +0200
committerjvoisin2018-08-31 16:51:02 +0200
commit721adb907fa4636693695024d3ed7ca8602db261 (patch)
tree2621036fc7b21f8f1aa386da48d6c61d2ddccd4f
parent206ffa3fb3fd72c6a2eb45194fb176535a91288c (diff)
Bump the changelogv0.4.0
-rw-r--r--debian/changelog17
-rw-r--r--doc/source/changelog.rst39
-rw-r--r--src/php_snuffleupagus.h2
3 files changed, 57 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 31d66eb..20c7711 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,20 @@
1snuffleupagus (0.4.0) UNRELEASED; urgency=medium
2
3 * Add the possibility to whitelist `stream wrappers`
4 * Snuffleupagus is now using php's logging mechanisms, instead of outputting its log directly into the syslog.
5 * PHP is now prevented from ever disabling certificate verification thanks to a few lines in our default configuration.
6 * Significant code simplification for cookies handling
7 * Our `sloppy comparison` feature is now complete
8 * Snuffleupagus won't start with an invalid config anymore, except if the `sp.allow_broken_configuration` is set.
9 * It's now possible to place virtual-patches on the return value of user-defined functions.
10 * Since Snuffleupagus is used by more and more organisations, we added a bunch of them in our propaganda page.
11 * Add some missing pieces of documentation and fix some links
12 * Fix the `make install` command
13 * Fix various compilation warnings
14 * Snuffleupagus is now running on platforms that aren't using the glibc
15
16 -- jvoisin <snuffleupagus@nbs-system.com> Fri, 31 Aug 2018 16:50:00 +0200
17
1snuffleupagus (0.3.1) UNRELEASED; urgency=medium 18snuffleupagus (0.3.1) UNRELEASED; urgency=medium
2 19
3 * Disable XXE and harden PRNG by default 20 * Disable XXE and harden PRNG by default
diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst
index 18f6433..534537f 100644
--- a/doc/source/changelog.rst
+++ b/doc/source/changelog.rst
@@ -1,6 +1,45 @@
1Changelog 1Changelog
2========= 2=========
3 3
40.4.0 - `Oliphant Chuckerbutty <https://github.com/nbs-system/snuffleupagus/releases/tag/v0.4.0>`__ 2018/08/31
5--------------------------------------------------------------------------------------------------------------
6
7New features
8^^^^^^^^^^^^
9
10- Add the possibility to whitelist `stream
11 wrappers <https://secure.php.net/manual/en/intro.stream.php>`__
12- Snuffleupagus is now using php's logging mechanisms, instead of
13 outputting its log directly into the syslog.
14- PHP is now prevented from ever disabling certificate verification
15 thanks to a few lines in our default configuration.
16
17
18Improvements
19^^^^^^^^^^^^
20
21- Significant code simplification for cookies handling
22 thanks to `Remi Collet <http://famillecollet.com>`__
23- Our ``sloppy comparison`` feature is now complete
24- Snuffleupagus won't start with an invalid config anymore,
25 except if the ``sp.allow_broken_configuration`` is set.
26- It's now possible to place virtual-patches on the return value
27 of user-defined functions.
28- Since Snuffleupagus is used by more and more organisations,
29 we added a bunch of them in our propaganda page.
30
31Bug fixes
32^^^^^^^^^
33
34- Add some missing pieces of documentation and fix some links
35- Fix the ``make install`` command
36- Fix various compilation warnings
37- Snuffleupagus is now running on platforms that aren't using
38 the glibc, thanks to an external contributor `Antoine Tenart
39 <https://ack.tf>`__
40
41
42
40.3.1 - `Elephant Arch <https://github.com/nbs-system/snuffleupagus/releases/tag/v0.3.1>`__ 2018/08/20 430.3.1 - `Elephant Arch <https://github.com/nbs-system/snuffleupagus/releases/tag/v0.3.1>`__ 2018/08/20
5------------------------------------------------------------------------------------------------------ 44------------------------------------------------------------------------------------------------------
6 45
diff --git a/src/php_snuffleupagus.h b/src/php_snuffleupagus.h
index 50957e5..bc927a0 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.3.1" 4#define PHP_SNUFFLEUPAGUS_VERSION "0.4.0"
5#define PHP_SNUFFLEUPAGUS_EXTNAME "snuffleupagus" 5#define PHP_SNUFFLEUPAGUS_EXTNAME "snuffleupagus"
6#define PHP_SNUFFLEUPAGUS_AUTHOR "NBS System" 6#define PHP_SNUFFLEUPAGUS_AUTHOR "NBS System"
7#define PHP_SNUFFLEUPAGUS_URL "https://github.com/nbs-system/snuffleupagus" 7#define PHP_SNUFFLEUPAGUS_URL "https://github.com/nbs-system/snuffleupagus"