diff options
author | taca <taca@pkgsrc.org> | 2022-08-04 15:22:08 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2022-08-04 15:22:08 +0000 |
commit | 279b4de3b21e608a226c4a74daafb233fac0af78 (patch) | |
tree | db894a58524ae71daed99c8de99f01a2e6e0a899 /lang/php | |
parent | 2a4715753e7fcf187025c45b71a6c41736a151d2 (diff) | |
download | pkgsrc-279b4de3b21e608a226c4a74daafb233fac0af78.tar.gz |
lang/php81: update to 8.1.9
04 Aug 2022, PHP 8.1.9
- CLI:
. Fixed potential overflow for the builtin server via the
PHP_CLI_SERVER_WORKERS environment variable. (yiyuaner)
. Fixed GH-8952 (Intentionally closing std handles no longer possible).
(Arnaud, cmb)
- Core:
. Fixed bug GH-8923 (error_log on Windows can hold the file write
lock). (cmb)
. Fixed bug GH-8995 (WeakMap object reference offset causing TypeError).
(Tobias Bachert)
- Date:
. Fixed bug #80047 (DatePeriod doesn't warn with custom DateTimeImmutable).
(Derick)
- FPM:
. Fixed zlog message prepend, free on incorrect address. (Heiko Weber)
. Fixed possible double free on configuration loading
failure. (Heiko Weber).
- GD:
. Fixed bug GH-8848 (imagecopyresized() error refers to the wrong argument).
(cmb)
- Intl:
. Fixed build for ICU 69.x and onwards. (David Carlier)
- OPcache:
. Fixed bug GH-8847 (PHP hanging infinitly at 100% cpu when check php
syntaxe of a valid file). (Dmitry)
. Fixed bug GH-8030 (Segfault with JIT and large match/switch statements).
(Arnaud)
- Reflection:
. Fixed bug GH-8943 (Fixed Reflection::getModifiersNames() with readonly
modifier). (Pierrick)
- Standard:
. Fixed the crypt_sha256/512 api build with clang > 12. (David Carlier)
. Uses CCRandomGenerateBytes instead of arc4random_buf on
macOs. (David Carlier).
. Fixed bug GH-9017 (php_stream_sock_open_from_socket could return NULL).
(Heiko Weber)
Diffstat (limited to 'lang/php')
-rw-r--r-- | lang/php/phpversion.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/php/phpversion.mk b/lang/php/phpversion.mk index c75842c6176..c55b2d388e3 100644 --- a/lang/php/phpversion.mk +++ b/lang/php/phpversion.mk @@ -1,4 +1,4 @@ -# $NetBSD: phpversion.mk,v 1.371 2022/08/04 15:19:39 taca Exp $ +# $NetBSD: phpversion.mk,v 1.372 2022/08/04 15:22:08 taca Exp $ # # This file selects a PHP version, based on the user's preferences and # the installed packages. It does not add a dependency on the PHP @@ -90,7 +90,7 @@ PHPVERSION_MK= defined PHP56_VERSION= 5.6.40 PHP74_VERSION= 7.4.30 PHP80_VERSION= 8.0.22 -PHP81_VERSION= 8.1.8 +PHP81_VERSION= 8.1.9 # Define initial release of major version. PHP56_RELDATE= 20140828 |