Skip to content

Commit

Permalink
Bump the changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jvoisin committed Aug 31, 2018
1 parent 206ffa3 commit 721adb9
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 1 deletion.
17 changes: 17 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -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 <snuffleupagus@nbs-system.com> Fri, 31 Aug 2018 16:50:00 +0200

snuffleupagus (0.3.1) UNRELEASED; urgency=medium

* Disable XXE and harden PRNG by default
Expand Down
39 changes: 39 additions & 0 deletions doc/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,45 @@
Changelog
=========

0.4.0 - `Oliphant Chuckerbutty <https://github.com/nbs-system/snuffleupagus/releases/tag/v0.4.0>`__ 2018/08/31
--------------------------------------------------------------------------------------------------------------

New features
^^^^^^^^^^^^

- Add the possibility to whitelist `stream
wrappers <https://secure.php.net/manual/en/intro.stream.php>`__
- 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 <http://famillecollet.com>`__
- 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
<https://ack.tf>`__



0.3.1 - `Elephant Arch <https://github.com/nbs-system/snuffleupagus/releases/tag/v0.3.1>`__ 2018/08/20
------------------------------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/php_snuffleupagus.h
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 721adb9

Please sign in to comment.