Author: Sergey Panteleev (saundefined)
Date: 2022-12-08T14:47:07+03:00

Commit: 
https://github.com/php/web-php/commit/c966868202caafa880213055f4e3e97c0483119b
Raw diff: 
https://github.com/php/web-php/commit/c966868202caafa880213055f4e3e97c0483119b.diff

Announce PHP 8.2.0

Changed paths:
  A  archive/entries/2022-12-08-1.xml
  A  releases/8_2_0.php
  M  ChangeLog-8.php
  M  archive/archive.xml
  M  include/version.inc


Diff:

diff --git a/ChangeLog-8.php b/ChangeLog-8.php
index e837854cf..849d21e55 100644
--- a/ChangeLog-8.php
+++ b/ChangeLog-8.php
@@ -3,9 +3,90 @@
 include_once __DIR__ . '/include/prepend.inc';
 include_once __DIR__ . '/include/changelogs.inc';
 
-$MINOR_VERSIONS = ['8.1', '8.0'];
+$MINOR_VERSIONS = ['8.2', '8.1', '8.0'];
 changelog_header(8, $MINOR_VERSIONS);
 ?>
+<a id="PHP_8_2"></a>
+
+<section class="version" id="8.2.0"><!-- {{{ 8.2.0 -->
+<h3>Version 8.2.0</h3>
+<b><?php release_date('08-Dec-2022'); ?></b>
+<ul><li>CLI:
+<ul>
+  <li><?php bugfix(81496); ?> (Server logs incorrect request method).</li>
+  <li>Updated the mime-type table for the builtin-server.</li>
+  <li>Fixed potential overflow for the builtin server via the 
PHP_CLI_SERVER_WORKERS environment variable.</li>
+  <li>Fixed <?php githubissuel('php/php-src', 8575); ?> by changing STDOUT, 
STDERR and STDIN to not close on resource destruction.</li>
+  <li>Implement built-in web server responding without body to HEAD request on 
a static resource.</li>
+  <li>Implement built-in web server responding with HTTP status 405 to 
DELETE/PUT/PATCH request on a static resource.</li>
+  <li>Fixed bug <?php githubissuel('php/php-src', 9709); ?> (Null pointer 
dereference with -w/-s options).</li>
+</ul></li>
+<li>COM:
+<ul>
+  <li>Fixed bug <?php githubissuel('php/php-src', 8750); ?> (Can not create 
VT_ERROR variant type).</li>
+</ul></li>
+<li>Core:
+<ul>
+  <li><?php bugfix(81380); ?> (Observer may not be initialized properly).</li>
+  <li>Fixed bug <?php githubissuel('php/php-src', 7771); ?> (Fix 
filename/lineno of constant expressions).</li>
+  <li>Fixed bug <?php githubissuel('php/php-src', 7792); ?> (Improve class 
type in error messages).</li>
+  <li>Support huge pages on MacOS.</li>
+  <li>Fixed bug <?php githubissuel('php/php-src', 8655); ?> (Casting an object 
to array does not unwrap refcount=1 references).</li>
+  <li>Fixed bug <?php githubissuel('php/php-src', 8661); ?> (Nullsafe in 
coalesce triggers undefined variable warning).</li>
+  <li>Fixed bug <?php githubissuel('php/php-src', 7821); ?> and <?php 
githubissuel('php/php-src', 8418); ?> (Allow arbitrary const expressions in 
backed enums).</li>
+  <li>Fixed bug <?php githubissuel('php/php-src', 8810); ?> (Incorrect lineno 
in backtrace of multi-line function calls).</li>
+  <li>Optimised code path for newly created file with the stream plain 
wrapper.</li>
+  <li>Uses safe_perealloc instead of perealloc for the 
ZEND_PTR_STACK_RESIZE_IF_NEEDED to avoid possible overflows.</li>
+  <li>Reduced the memory footprint of strings returned by var_export(), 
json_encode(), serialize(), iconv_*(), mb_ereg*(), session_create_id(), 
http_build_query(), strstr(), Reflection*::__toString().</li>
+  <li>Fixed bug <?php githubissuel('php/php-src', 8995); ?> (WeakMap object 
reference offset causing TypeError).</li>
+  <li>Added error_log_mode ini setting.</li>
+  <li>Updated request startup messages.</li>
+  <li>Fixed bug <?php githubissuel('php/php-src', 7900); ?> (Arrow function 
with never return type compile-time errors).</li>
+  <li>Fixed incorrect double to long casting in latest clang.</li>
+  <li>Added support for defining constants in traits.</li>
+  <li>Stop incorrectly emitting false positive deprecation notice alongside 
unsupported syntax fatal error for `"{$g{'h'}}"`.</li>
+  <li>Fix unexpected deprecated dynamic property warning, which occurred when 
exit() in finally block after an exception was thrown without catching.</li>
+  <li>Fixed bug <?php githubissuel('php/php-src', 9323); ?> (Crash in 
ZEND_RETURN/GC/zend_call_function) (Tim Starling)</li>
+  <li>Fixed bug <?php githubissuel('php/php-src', 9227); ?> (Trailing dots and 
spaces in filenames are ignored).</li>
+  <li>Fixed bug <?php githubissuel('php/php-src', 9285); ?> (Traits cannot be 
used in readonly classes).</li>
+  <li>Fixed bug <?php githubissuel('php/php-src', 9186); ?> 
(@strict-properties can be bypassed using unserialization).</li>
+  <li>Fixed bug <?php githubissuel('php/php-src', 9500); ?> (Using dnf type 
with parentheses after readonly keyword results in a parse error).</li>
+  <li>Fixed bug <?php githubissuel('php/php-src', 9516); ?> ((A&amp;B)|D as a 
param should allow AB or D. Not just A).</li>
+  <li>Fixed observer class notify with Opcache file_cache_only=1.</li>
+  <li>Fixes segfault with Fiber on FreeBSD i386 architecture.</li>
+  <li>Fixed bug <?php githubissuel('php/php-src', 9655); ?> (Pure intersection 
types cannot be implicitly nullable) (Girgias)</li>
+  <li>Fixed bug <?php githubissuel('php/php-src', 9589); ?> (dl() segfaults 
when module is already loaded).</li>
+  <li>Fixed bug <?php githubissuel('php/php-src', 9752); ?> (Generator crashes 
when interrupted during argument evaluation with extra named params).</li>
+  <li>Fixed bug <?php githubissuel('php/php-src', 9801); ?> (Generator crashes 
when memory limit is exceeded during initialization).</li>
+  <li>Fixed a bug with preloaded enums possibly segfaulting.</li>
+  <li>Fixed bug <?php githubissuel('php/php-src', 9823); ?> (Don’t reset func 
in zend_closure_internal_handler).</li>
+  <li>Fixed potential NULL pointer dereference Windows shm*() functions.</li>
+  <li>Fix target validation for internal attributes with constructor property 
promotion.</li>
+  <li>Fixed bug <?php githubissuel('php/php-src', 9750); ?> (Generator memory 
leak when interrupted during argument evaluation.</li>
+  <li>Move observer_declared_function_notify until after pass_two().</li>
+  <li>Do not report MINIT stage internal class aliases in extensions.</li>
+</ul></li>
+<li>Curl:
+<ul>
+  <li>Added support for CURLOPT_XFERINFOFUNCTION.</li>
+  <li>Added support for CURLOPT_MAXFILESIZE_LARGE.</li>
+  <li>Added new constants from cURL 7.62 to 7.80.</li>
+  <li>New function curl_upkeep().</li>
+</ul></li>
+<li>Date:
+<ul>
+  <li>Fixed <?php githubissuel('php/php-src', 8458); ?> 
(DateInterval::createFromDateString does not throw if non-relative items are 
present).</li>
+  <li><?php bugfix(52015); ?> (Allow including end date in DatePeriod 
iterations) (Daniel Egeberg, Derick)</li>
+  <li>idate() now accepts format specifiers "N" (ISO Day-of-Week) and "o" (ISO 
Year).</li>
+  <li>Fixed bug <?php githubissuel('php/php-src', 8730); ?> (DateTime::diff 
miscalculation is same time zone of different type).</li>
+  <li>Fixed bug <?php githubissuel('php/php-src', 8964); ?> (DateTime object 
comparison after applying delta less than 1 second).</li>
+  <li>Fixed bug <?php githubissuel('php/php-src', 9106); ?>: (DateInterval 
1.5s added to DateTimeInterface is rounded</li>
+</ul></li>
+</ul>
+<!-- }}} --></section>
+
+
+
 <a id="PHP_8_1"></a>
 
 <section class="version" id="8.1.13"><!-- {{{ 8.1.13 -->
diff --git a/archive/archive.xml b/archive/archive.xml
index dd19241e8..292d10a0a 100644
--- a/archive/archive.xml
+++ b/archive/archive.xml
@@ -9,6 +9,7 @@
     <uri>http://php.net/contact</uri>
     <email>php-webmaster@lists.php.net</email>
   </author>
+  <xi:include href="entries/2022-12-08-1.xml"/>
   <xi:include href="entries/2022-12-06-1.xml"/>
   <xi:include href="entries/2022-11-26-1.xml"/>
   <xi:include href="entries/2022-11-24-2.xml"/>
diff --git a/archive/entries/2022-12-08-1.xml b/archive/entries/2022-12-08-1.xml
new file mode 100644
index 000000000..85754e0dd
--- /dev/null
+++ b/archive/entries/2022-12-08-1.xml
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="utf-8"?>
+<entry xmlns="http://www.w3.org/2005/Atom";>
+  <title>PHP 8.2.0 Released!</title>
+  <id>https://www.php.net/archive/2022.php#2022-12-08-1</id>
+  <published>2022-12-08T06:26:27+00:00</published>
+  <updated>2022-12-08T06:26:27+00:00</updated>
+  <link href="https://www.php.net/index.php#2022-12-08-1"; rel="alternate" 
type="text/html"/>
+  <link href="https://www.php.net/archive/2022.php#2022-12-08-1"; rel="via" 
type="text/html"/>
+  <category term="releases" label="New PHP release"/>
+  <category term="frontpage" label="PHP.net frontpage news"/>
+  <content type="xhtml">
+    <div xmlns="http://www.w3.org/1999/xhtml";>
+      <p>The PHP development team announces the immediate availability of PHP 
8.2.0. This release marks the latest minor release of the PHP language.</p>
+      <p>PHP 8.2 comes with numerous improvements and new features such as:</p>
+      <ul>
+        <li><a 
href="https://www.php.net/manual/en/language.oop5.basic.php#language.oop5.basic.class.readonly";>Readonly
 classes</a></li>
+        <li><a 
href="https://www.php.net/manual/en/migration82.new-features.php#migration82.new-features.core.type-system";>Disjunctive
 Normal Form (DNF) Types</a></li>
+        <li>New stand-alone types: <a 
href="https://wiki.php.net/rfc/null-false-standalone-types";>null, false</a>, 
and <a href="https://wiki.php.net/rfc/true-type";>true</a></li>
+        <li><a href="https://www.php.net/manual/en/book.random.php";>New 
"Random" extension</a></li>
+        <li><a 
href="https://www.php.net/manual/en/migration82.new-features.php#migration82.new-features.core.constant-in-traits";>Constants
 in traits</a></li>
+        <li><a 
href="https://www.php.net/manual/en/migration82.deprecated.php#migration82.deprecated.core.dynamic-properties";>Deprecate
 dynamic properties</a></li>
+        <li>And much much more...</li>
+      </ul>
+      <p>
+        For source downloads of PHP 8.2.0 please visit our <a 
href="https://www.php.net/downloads.php";>downloads page</a>,
+        Windows source and binaries can be found on <a 
href="https://windows.php.net/download/";>windows.php.net/download/</a>.
+        The list of changes is recorded in the <a 
href="https://www.php.net/ChangeLog-8.php#8.2.0";>ChangeLog</a>.
+      </p>
+      <p>
+        The <a href="https://php.net/manual/en/migration82.php";>migration 
guide</a> is available in the PHP Manual.
+        Please consult it for the detailed list of new features and backward 
incompatible changes.
+      </p>
+      <p>Kudos to all the contributors and supporters!</p>
+    </div>
+  </content>
+</entry>
diff --git a/include/version.inc b/include/version.inc
index bc36a95cd..a1b3e7dbb 100644
--- a/include/version.inc
+++ b/include/version.inc
@@ -18,6 +18,18 @@
 $RELEASES = (function () {
     $data = [];
 
+    /* PHP 8.2 Release */
+    $data['8.2'] = [
+        'version' => '8.2.0',
+        'date' => '08 Dec 2021',
+        'tags' => [], // Set to ['security'] for security releases.
+        'sha256' => [
+            'tar.gz' => 
'435c4c2439db648cdf34236f7cd459f93f943fb788b66723a033610d4a059fc6',
+            'tar.bz2' => 
'1bf4fca663f93d9e0b4909bd6eae0583a1ce383e7f05df126f28f272fa1fd51a',
+            'tar.xz' => 
'6ea4c2dfb532950fd712aa2a08c1412a6a81cd1334dd0b0bf88a8e44c2b3a943',
+        ]
+    ];
+
     /* PHP 8.1 Release */
     $data['8.1'] = [
         'version' => '8.1.13',
diff --git a/releases/8_2_0.php b/releases/8_2_0.php
new file mode 100644
index 000000000..3464cebeb
--- /dev/null
+++ b/releases/8_2_0.php
@@ -0,0 +1,35 @@
+<?php
+$_SERVER['BASE_PAGE'] = 'releases/8_2_0.php';
+include_once __DIR__ . '/../include/prepend.inc';
+site_header('PHP 8.2.0 Release Announcement');
+?>
+<h1>PHP 8.2.0 Release Announcement</h1>
+
+<p>The PHP development team announces the immediate availability of PHP 8.2.0. 
This release marks the latest minor release of the PHP language.</p>
+
+<p>PHP 8.2 comes with numerous improvements and new features such as:</p>
+
+<ul>
+    <li><a 
href="https://www.php.net/manual/en/language.oop5.basic.php#language.oop5.basic.class.readonly";>Readonly
 classes</a></li>
+    <li><a 
href="https://www.php.net/manual/en/migration82.new-features.php#migration82.new-features.core.type-system";>Disjunctive
 Normal Form (DNF) Types</a></li>
+    <li>New stand-alone types: <a 
href="https://wiki.php.net/rfc/null-false-standalone-types";>null, false</a>, 
and <a href="https://wiki.php.net/rfc/true-type";>true</a></li>
+    <li><a href="https://www.php.net/manual/en/book.random.php";>New "Random" 
extension</a></li>
+    <li><a 
href="https://www.php.net/manual/en/migration82.new-features.php#migration82.new-features.core.constant-in-traits";>Constants
 in traits</a></li>
+    <li><a 
href="https://www.php.net/manual/en/migration82.deprecated.php#migration82.deprecated.core.dynamic-properties";>Deprecate
 dynamic properties</a></li>
+    <li>And much much more...</li>
+</ul>
+
+<p>
+    For source downloads of PHP 8.2.0 please visit our <a 
href="https://www.php.net/downloads.php";>downloads page</a>,
+    Windows source and binaries can be found on <a 
href="https://windows.php.net/download/";>windows.php.net/download/</a>.
+    The list of changes is recorded in the <a 
href="https://www.php.net/ChangeLog-8.php#8.2.0";>ChangeLog</a>.
+</p>
+
+<p>
+    The <a href="https://php.net/manual/en/migration82.php";>migration 
guide</a> is available in the PHP Manual.
+    Please consult it for the detailed list of new features and backward 
incompatible changes.
+</p>
+
+<p>Kudos to all the contributors and supporters!</p>
+
+<?php site_footer();

-- 
PHP Webmaster List Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to