Skip to content

Commit 09f9d24

Browse files
committed
Prepare PHP 8.2.0 RC7
1 parent dfe9a8d commit 09f9d24

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
lines changed

NEWS

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3-
?? ??? ????, PHP 8.2.0RC6
3+
24 Nov 2022, PHP 8.2.0RC7
4+
5+
- Core:
6+
. Move observer_declared_function_notify until after pass_two(). (Bob)
7+
. Do not report MINIT stage internal class aliases in extensions. (Bob)
8+
9+
- Opcache:
10+
. Fix opcache preload with observers enabled. (Bob)
11+
12+
- Standard:
13+
. Fix crash reading module_entry after DL_UNLOAD() when module already
14+
loaded. (Bob)
15+
16+
10 Nov 2022, PHP 8.2.0RC6
417

518
- Core:
619
. Fixed bug GH-9823 (Don’t reset func in zend_closure_internal_handler).

Zend/zend.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#ifndef ZEND_H
2121
#define ZEND_H
2222

23-
#define ZEND_VERSION "4.2.0-dev"
23+
#define ZEND_VERSION "4.2.0RC7"
2424

2525
#define ZEND_ENGINE_3
2626

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dnl Basic autoconf initialization, generation of config.nice.
1717
dnl ----------------------------------------------------------------------------
1818

1919
AC_PREREQ([2.68])
20-
AC_INIT([PHP],[8.2.0-dev],[https://github.com/php/php-src/issues],[php],[https://www.php.net])
20+
AC_INIT([PHP],[8.2.0RC7],[https://github.com/php/php-src/issues],[php],[https://www.php.net])
2121
AC_CONFIG_SRCDIR([main/php_version.h])
2222
AC_CONFIG_AUX_DIR([build])
2323
AC_PRESERVE_HELP_ORDER

main/php_version.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
#define PHP_MAJOR_VERSION 8
44
#define PHP_MINOR_VERSION 2
55
#define PHP_RELEASE_VERSION 0
6-
#define PHP_EXTRA_VERSION "-dev"
7-
#define PHP_VERSION "8.2.0-dev"
6+
#define PHP_EXTRA_VERSION "RC7"
7+
#define PHP_VERSION "8.2.0RC7"
88
#define PHP_VERSION_ID 80200

0 commit comments

Comments
 (0)