From afff2c0bc7daf8342b7d8132b4b4bd6868ed5654 Mon Sep 17 00:00:00 2001 From: Jakub Zelenka Date: Thu, 23 Nov 2023 16:37:05 +0000 Subject: [PATCH] Announce PHP 8.3.0 --- ChangeLog-8.php | 299 ++++++++++++++++++++++++++++++- archive/archive.xml | 1 + archive/entries/2023-11-23-2.xml | 36 ++++ include/version.inc | 12 ++ releases/8_3_0.php | 27 +++ 5 files changed, 374 insertions(+), 1 deletion(-) create mode 100644 archive/entries/2023-11-23-2.xml create mode 100644 releases/8_3_0.php diff --git a/ChangeLog-8.php b/ChangeLog-8.php index 4ee0367599..91e7dcc232 100644 --- a/ChangeLog-8.php +++ b/ChangeLog-8.php @@ -3,9 +3,306 @@ include_once __DIR__ . '/include/prepend.inc'; include_once __DIR__ . '/include/changelogs.inc'; -$MINOR_VERSIONS = ['8.2', '8.1', '8.0']; +$MINOR_VERSIONS = ['8.3', '8.2', '8.1', '8.0']; changelog_header(8, $MINOR_VERSIONS); ?> + + +
+

Version 8.3.0

+ + +
+ + +
diff --git a/archive/archive.xml b/archive/archive.xml index 48d7156a1c..98d278b53d 100644 --- a/archive/archive.xml +++ b/archive/archive.xml @@ -9,6 +9,7 @@ http://php.net/contact php-webmaster@lists.php.net + diff --git a/archive/entries/2023-11-23-2.xml b/archive/entries/2023-11-23-2.xml new file mode 100644 index 0000000000..9b42518afe --- /dev/null +++ b/archive/entries/2023-11-23-2.xml @@ -0,0 +1,36 @@ + + + PHP 8.3.0 Released! + https://www.php.net/archive/2023.php#2023-11-23-2 + 2023-11-23T15:43:03+00:00 + 2023-11-23T15:43:03+00:00 + + + + + +
+

The PHP development team announces the immediate availability of PHP 8.3.0. This release marks the latest minor release of the PHP language.

+

PHP 8.3 comes with numerous improvements and new features such as:

+ +

+ For source downloads of PHP 8.3.0 please visit our downloads page, + Windows source and binaries can be found on windows.php.net/download/. + The list of changes is recorded in the ChangeLog. +

+

+ The migration guide is available in the PHP Manual. + Please consult it for the detailed list of new features and backward incompatible changes. +

+

Kudos to all the contributors and supporters!

+
+
+
diff --git a/include/version.inc b/include/version.inc index 1826ce7d60..3f36b3d184 100644 --- a/include/version.inc +++ b/include/version.inc @@ -18,6 +18,18 @@ $RELEASES = (function () { $data = []; + /* PHP 8.3 Release */ + $data['8.3'] = [ + 'version' => '8.3.0', + 'date' => '23 Nov 2023', + 'tags' => [], // Set to ['security'] for security releases. + 'sha256' => [ + 'tar.gz' => '557ae14650f1d1984d3213e3fcd8d93a5f11418b3f8026d3a2d5022251163951', + 'tar.bz2' => 'de67d0833d42b196e5a66fa1a332f45e296cbe8e9472e9256b2a071c34dc5ed6', + 'tar.xz' => '1db84fec57125aa93638b51bb2b15103e12ac196e2f960f0d124275b2687ea54', + ] + ]; + /* PHP 8.2 Release */ $data['8.2'] = [ 'version' => '8.2.13', diff --git a/releases/8_3_0.php b/releases/8_3_0.php new file mode 100644 index 0000000000..367240b3cd --- /dev/null +++ b/releases/8_3_0.php @@ -0,0 +1,27 @@ + +

PHP 8.3.0 Release Announcement

+ +

The PHP development team announces the immediate availability of PHP 8.3.0. This release marks +the latest minor release of the PHP language.

+ +

PHP 8.3 comes with numerous improvements and new features such as:

+ + + +

For source downloads of PHP 8.3.0 please visit our downloads page, +Windows source and binaries can be found on windows.php.net/download/. +The list of changes is recorded in the ChangeLog. +

+