diff options
| author | hamza (hes) ES SAHELY | 2018-08-20 15:10:45 +0200 |
|---|---|---|
| committer | hamza (hes) ES SAHELY | 2018-08-20 15:10:45 +0200 |
| commit | f796c63b7a7381644fa51d5dbf7df43293cfdddd (patch) | |
| tree | d9d2612cb7db3d20192f298e32483e5b94c5789a | |
| parent | 2105928a9848dac1867d681ee9e004595ea73089 (diff) | |
Bump the changlogv0.3.1
| -rw-r--r-- | debian/changelog | 16 | ||||
| -rw-r--r-- | doc/source/changelog.rst | 23 | ||||
| -rw-r--r-- | src/php_snuffleupagus.h | 2 |
3 files changed, 40 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index b61b6fe..31d66eb 100644 --- a/debian/changelog +++ b/debian/changelog | |||
| @@ -1,3 +1,19 @@ | |||
| 1 | snuffleupagus (0.3.1) UNRELEASED; urgency=medium | ||
| 2 | |||
| 3 | * Disable XXE and harden PRNG by default | ||
| 4 | * Use SameSite on PHP's session cookie in the default rules | ||
| 5 | * Relax a bit what files can be included in the default rules | ||
| 6 | * Add the possibility to ignore files hashes when generating rules | ||
| 7 | * The filename filter is now accepting phar paths | ||
| 8 | * The harden rand_feature is not ignoring parameters anymore in function calls | ||
| 9 | * Fix possible crashes/hangs when using php-fpm's pools | ||
| 10 | * Fix an infinite loop on echo hook | ||
| 11 | * Fix an issue with filename filter | ||
| 12 | * Fix some documentation issues | ||
| 13 | * Fix the Arch Linux's PKGBUILD | ||
| 14 | |||
| 15 | -- he2ss <snuffleupagus@nbs-system.com> Tue, 20 Aug 2018 15:00:00 +0200 | ||
| 16 | |||
| 1 | snuffleupagus (0.3.0) UNRELEASED; urgency=medium | 17 | snuffleupagus (0.3.0) UNRELEASED; urgency=medium |
| 2 | 18 | ||
| 3 | * Session cookies can now be encrypted | 19 | * Session cookies can now be encrypted |
diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst index d1e88ed..18f6433 100644 --- a/doc/source/changelog.rst +++ b/doc/source/changelog.rst | |||
| @@ -1,6 +1,29 @@ | |||
| 1 | Changelog | 1 | Changelog |
| 2 | ========= | 2 | ========= |
| 3 | 3 | ||
| 4 | 0.3.1 - `Elephant Arch <https://github.com/nbs-system/snuffleupagus/releases/tag/v0.3.1>`__ 2018/08/20 | ||
| 5 | ------------------------------------------------------------------------------------------------------ | ||
| 6 | |||
| 7 | Improvements | ||
| 8 | ^^^^^^^^^^^^ | ||
| 9 | |||
| 10 | - Disable XXE and harden PRNG by default | ||
| 11 | - Use ``SameSite`` on PHP's session cookie in the default rules | ||
| 12 | - Relax a bit what files can be included in the default rules | ||
| 13 | - Add the possibility to ignore files hashes when generating rules | ||
| 14 | - The ``filename`` filter is now accepting phar paths | ||
| 15 | |||
| 16 | Bug fixes | ||
| 17 | ^^^^^^^^^ | ||
| 18 | |||
| 19 | - The harden rand_feature is not ignoring parameters anymore in function calls | ||
| 20 | - Fix possible crashes/hangs when using php-fpm's pools | ||
| 21 | - Fix an infinite loop on ``echo`` hook | ||
| 22 | - Fix an issue with ``filename`` filter | ||
| 23 | - Fix some documentation issues | ||
| 24 | - Fix the Arch Linux's PKGBUILD | ||
| 25 | |||
| 26 | |||
| 4 | 0.3.0 - `Dentalium elephantinum <https://github.com/nbs-system/snuffleupagus/releases/tag/v0.3.0>`__ 2018/07/17 | 27 | 0.3.0 - `Dentalium elephantinum <https://github.com/nbs-system/snuffleupagus/releases/tag/v0.3.0>`__ 2018/07/17 |
| 5 | --------------------------------------------------------------------------------------------------------------- | 28 | --------------------------------------------------------------------------------------------------------------- |
| 6 | 29 | ||
diff --git a/src/php_snuffleupagus.h b/src/php_snuffleupagus.h index 9b13b5b..96f9dd4 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.0" | 4 | #define PHP_SNUFFLEUPAGUS_VERSION "0.3.1" |
| 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" |
