[PHP-WEBMASTER] [web-php] master: Announce PHP 8.3.0alpha2

2023-06-22 Thread Eric Mann
Author: Eric Mann (ericmann)
Date: 2023-06-22T11:22:01-07:00

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

Announce PHP 8.3.0alpha2

Changed paths:
  A  archive/entries/2023-06-22-1.xml
  M  archive/archive.xml


Diff:

diff --git a/archive/archive.xml b/archive/archive.xml
index da44d4fed..07ec3104f 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-06-22-1.xml b/archive/entries/2023-06-22-1.xml
new file mode 100644
index 0..48908dd4c
--- /dev/null
+++ b/archive/entries/2023-06-22-1.xml
@@ -0,0 +1,22 @@
+
+http://www.w3.org/2005/Atom;>
+  PHP 8.3.0 Alpha 2 available for testing
+  https://www.php.net/archive/2023.php#2023-06-22-1
+  2023-06-22T11:15:33-07:00
+  2023-06-22T11:15:33-07:00
+  https://www.php.net/index.php#2023-06-22-1; rel="alternate" 
type="text/html"/>
+  https://www.php.net/archive/2023.php#2023-06-22-1; rel="via" 
type="text/html"/>
+  
+  
+http://www.w3.org/1999/xhtml;>
+  The PHP team is pleased to announce the second testing release of PHP 
8.3.0, Alpha 2. This continues the PHP 8.3 release cycle, the rouch outline of 
which is specified in the https://wiki.php.net/todo/php83;>PHP 
Wiki.
+  For source downloads of PHP 8.3.0 Alpha 2 please visit https://downloads.php.net/~eric/;>download page.
+  Please carefully test this version and report any issues found in the 
https://github.com/php/php-src/issues;>bug reporting system.
+  Please DO NOT use this version in production, it is an early 
test version.
+  For more information on the new features and other changes, you can 
read the https://github.com/php/php-src/blob/php-8.3.0alpha2/NEWS;>NEWS file, 
or the https://github.com/php/php-src/blob/php-8.3.0alpha2/UPGRADING;>UPGRADING
 file for a complete list of upgrading notes. These files can also be found in 
the release archive.
+  The next release will be Alpha 3, planned for 6 July 2023.
+  The signatures for this release can be found in https://gist.github.com/ericmann/7355303dbb2d350522b155349c61fc7c;>the 
manifest or on https://qa.php.net/;>the QA site.
+  Thank you for helping us make PHP better!
+
+  
+

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



[PHP-WEBMASTER] [web-php] PR #786: Announce IPC Fall 2023 Munich

2023-06-22 Thread sgolemon
Pull Request: https://github.com/php/web-php/pull/786

Closed by sgolemon.

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



[PHP-WEBMASTER] [web-php] master: Expose PHP version support states as JSON (#785)

2023-06-22 Thread Thomas Jarrand via GitHub
Author: Thomas Jarrand (Tom32i)
Committer: GitHub (web-flow)
Pusher: sgolemon
Date: 2023-06-22T11:35:32-05:00

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

Expose PHP version support states as JSON (#785)

Changed paths:
  A  releases/states.php


Diff:

diff --git a/releases/states.php b/releases/states.php
new file mode 100644
index 0..2fc972f6b
--- /dev/null
+++ b/releases/states.php
@@ -0,0 +1,30 @@
+format('c') : null;
+}
+
+foreach (get_all_branches() as $major => $releases) {
+$states[$major] = [];
+foreach ($releases as $branch => $release) {
+$states[$major][$branch] = [
+'state' => get_branch_support_state($branch),
+'initial_release' => formatDate(get_branch_release_date($branch)),
+'active_support_end' => 
formatDate(get_branch_bug_eol_date($branch)),
+'security_support_end' => 
formatDate(get_branch_security_eol_date($branch)),
+];
+}
+krsort($states[$major]);
+}
+
+krsort($states);
+
+echo json_encode($states);

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



[PHP-WEBMASTER] [web-php] PR #785: [feature] Expose PHP version support states and dates as JSON

2023-06-22 Thread sgolemon
Pull Request: https://github.com/php/web-php/pull/785

Closed by sgolemon.

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



[PHP-WEBMASTER] [web-php] master: add CVE in ChangeLog

2023-06-22 Thread Remi Collet
Author: Remi Collet (remicollet)
Date: 2023-06-22T08:10:49+02:00

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

add CVE in ChangeLog

Changed paths:
  M  ChangeLog-8.php


Diff:

diff --git a/ChangeLog-8.php b/ChangeLog-8.php
index 66d642039..b3401c397 100644
--- a/ChangeLog-8.php
+++ b/ChangeLog-8.php
@@ -66,7 +66,7 @@
 
 Soap:
 
-  Fixed bug GHSA-76gg-c692-v2mw (Missing error check and insufficient 
random bytes in HTTP Digest authentication for SOAP).
+  Fixed bug GHSA-76gg-c692-v2mw (Missing error check and insufficient 
random bytes in HTTP Digest authentication for SOAP). (CVE-2023-3247)
   Fixed bug  (make test fail 
while soap extension build).
 
 SPL:
@@ -890,7 +890,7 @@
 
 Soap:
 
-  Fixed bug GHSA-76gg-c692-v2mw (Missing error check and insufficient 
random bytes in HTTP Digest authentication for SOAP).
+  Fixed bug GHSA-76gg-c692-v2mw (Missing error check and insufficient 
random bytes in HTTP Digest authentication for SOAP). (CVE-2023-3247)
   Fixed bug  (make test fail 
while soap extension build).
 
 SPL:
@@ -2285,7 +2285,7 @@
 
 Soap:
 
-  Fixed bug GHSA-76gg-c692-v2mw (Missing error check and insufficient 
random bytes in HTTP Digest authentication for SOAP).
+  Fixed bug GHSA-76gg-c692-v2mw (Missing error check and insufficient 
random bytes in HTTP Digest authentication for SOAP). (CVE-2023-3247)
 
 
 

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