Skip to content

Commit

Permalink
Bump the changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jvoisin committed Sep 6, 2024
1 parent 47e88e1 commit 0ba0c07
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 2 deletions.
21 changes: 21 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
snuffleupagus (0.11.0) UNRELEASED; urgency=low
[ jvoisin ]
* Compatibility with PHP8.4
* Fixed compilation on FreeBSD
* Update the internal deprecation checks

[ cgzones ]
* Print key and value on INI violations
* Improve `scripts/generate_rules.php` with regard to functions from global space prefixed with `\`
* Add option to specify the allowed "php" wrapper types
* Make 'phar' filenames work in `sp.disabled_functions`
* Improve the documentation
* Improve the default set of rules, especially with regard to portability
* Improve the Debian packaging
* Improve behaviour when dealing with broken configuration file
* Don't whitelist files if the function name is actually a method of a class in `scripts/generate_rules.php`
* Ignore function definition in `scripts/generate_rules.php`
* Improve configuration dumping

-- jvoisin <[email protected]> Fri, 06 Sep 2024 14:30:00 +0200

snuffleupagus (0.10.0) UNRELEASED; urgency=low
[ jvoisin ]
* Compatibility with PHP8.3
Expand Down
27 changes: 27 additions & 0 deletions doc/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,33 @@
Changelog
=========

0.11.0 - ` Mastodon <https://github.com/jvoisin/snuffleupagus/releases/tag/v0.12.0>`__ 2024/09/06
-------------------------------------------------------------------------------------------------

New features
^^^^^^^^^^^^
* Compatibility with PHP8.4
* Print key and value on INI violations
* Improve scripts/generate_rules.php with regard to functions from global space prefixed with \
* Add option to specify the allowed "php" wrapper types

Breaking Changes
^^^^^^^^^^^^^^^^

Bug fixes
^^^^^^^^^
* Make 'phar' filenames work in sp.disabled_functions
* Improve the documentation
* Improve the default set of rules, especially with regard to portability
* Improve the Debian packaging
* Improve behaviour when dealing with broken configuration file
* Update the internal deprecation checks
* Don't whitelist files if the function name is actually a method of a class in scripts/generate_rules.php
* Ignore function definition in scripts/generate_rules.php
* Improve configuration dumping
* Fixed compilation on FreeBSD


0.10.0 - `Babar the Elephant <https://github.com/jvoisin/snuffleupagus/releases/tag/v0.10.0>`__ 2023/09/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.10.0"
#define PHP_SNUFFLEUPAGUS_VERSION "0.11.0"
#define PHP_SNUFFLEUPAGUS_EXTNAME "snuffleupagus"
#define PHP_SNUFFLEUPAGUS_AUTHOR "NBS System & Julien (jvoisin) Voisin & SektionEins GmbH"
#define PHP_SNUFFLEUPAGUS_URL "https://github.com/jvoisin/snuffleupagus"
Expand Down
2 changes: 1 addition & 1 deletion src/snuffleupagus.c
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ PHP_MINFO_FUNCTION(snuffleupagus) {
php_info_print_table_row(
2, "snuffleupagus support",
SPG(is_config_valid) ? "enabled" : "disabled");
php_info_print_table_row(2, "Version", PHP_SNUFFLEUPAGUS_VERSION "-sng (with Suhosin-NG patches)");
php_info_print_table_row(2, "Version", PHP_SNUFFLEUPAGUS_VERSION);
php_info_print_table_row(2, "Valid config", valid_config);
php_info_print_table_end();
DISPLAY_INI_ENTRIES();
Expand Down

0 comments on commit 0ba0c07

Please sign in to comment.