From d70c69839cd84799484b4d74b6769a8ab3de326a Mon Sep 17 00:00:00 2001 From: Gabriel Caruso Date: Tue, 4 Jan 2022 09:40:46 -0300 Subject: [PATCH 1/2] Prepare for PHP 8.0.16 --- NEWS | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 7f2292bc4a7..f7a7a1eefa5 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,9 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? ??? 2022, PHP 8.0.15 +?? ??? 2022, PHP 8.0.16 + + +20 Jan 2022, PHP 8.0.15 - Core: . Fixed bug #81656 (GCC-11 silently ignores -R). (Michael Wallner) From f1d7f9570217a01e53bd62f82d27b74affd47c28 Mon Sep 17 00:00:00 2001 From: Ilija Tovilo Date: Tue, 4 Jan 2022 13:08:33 +0100 Subject: [PATCH 2/2] [ci skip] Fix GH-7725: Adjust README instructions on referencing issues Also remove some references to git.php.net which is not used anymore. Closes GH-7882. --- README.md | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 18ee18a9184..e172501e925 100644 --- a/README.md +++ b/README.md @@ -99,9 +99,8 @@ Extension Community Library - [PECL](https://pecl.php.net). ## Contributing The PHP source code is located in the Git repository at -[git.php.net](https://git.php.net). Contributions are most welcome by forking -the [GitHub mirror repository](https://github.com/php/php-src) and sending a -pull request. +[github.com/php/php-src](https://github.com/php/php-src). Contributions are most +welcome by forking the repository and sending a pull request. Discussions are done on GitHub, but depending on the topic can also be relayed to the official PHP developer mailing list internals@lists.php.net. @@ -111,20 +110,15 @@ New features require an RFC and must be accepted by the developers. See [Voting on PHP features](https://wiki.php.net/rfc/voting) for more information on the process. -Bug fixes **do not** require an RFC but require a bug tracker ticket. Open a -ticket at [bugs.php.net](https://bugs.php.net) and reference the bug id using -`#NNNNNN`. +Bug fixes don't require an RFC. If the bug has a GitHub issue, reference it in +the commit message using `GH-NNNNNN`. Use `#NNNNNN` for tickets in the old +[bugs.php.net](https://bugs.php.net) bug tracker. + Fix GH-7815: php_uname doesn't recognise latest Windows versions Fix #55371: get_magic_quotes_gpc() throws deprecation warning - After removing magic quotes, the get_magic_quotes_gpc function caused a - deprecated warning. get_magic_quotes_gpc can be used to detect the - magic_quotes behavior and therefore should not raise a warning at any time. - The patch removes this warning. - -Pull requests are not merged directly on GitHub. All PRs will be pulled and -pushed through [git.php.net](https://git.php.net). See -[Git workflow](https://wiki.php.net/vcs/gitworkflow) for more details. +See [Git workflow](https://wiki.php.net/vcs/gitworkflow) for details on how pull +requests are merged. ### Guidelines for contributors