Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
497 changes: 496 additions & 1 deletion ChangeLog-8.php

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions archive/archive.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<uri>http://php.net/contact</uri>
<email>php-webmaster@lists.php.net</email>
</author>
<xi:include href="entries/2025-11-20-3.xml"/>
<xi:include href="entries/2025-11-20-2.xml"/>
<xi:include href="entries/2025-11-20-1.xml"/>
<xi:include href="entries/2025-11-13-1.xml"/>
Expand Down
35 changes: 35 additions & 0 deletions archive/entries/2025-11-20-3.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<entry xmlns="http://www.w3.org/2005/Atom">
<title>PHP 8.5.0 Released!</title>
<id>https://www.php.net/archive/2025.php#2025-11-20-3</id>
<published>2025-11-20T14:20:19+00:00</published>
<updated>2025-11-20T14:20:19+00:00</updated>
<link href="https://www.php.net/index.php#2025-11-20-3" rel="alternate" type="text/html"/>
<link href="https://www.php.net/archive/2025.php#2025-11-20-3" 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.5.0. This release marks the latest minor release of the PHP language.</p>

<p>PHP 8.5 comes with numerous improvements and new features such as:</p>
<ul>
<li>New "URI" extension</li>
<li>New pipe operator (|&gt;)</li>
<li>Clone With</li>
<li>New #[\NoDiscard] attribute</li>
<li>Support for closures, casts, and first class callables in constant expressions</li>
<li>And much much more...</li>
</ul>
<p>
For source downloads of PHP 8.5.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.5.0">ChangeLog</a>.
</p>
<p>
The <a href="https://php.net/manual/en/migration85.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>
8 changes: 4 additions & 4 deletions include/release-qa.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,10 @@
'active' => true,
'release' => [
'type' => 'RC',
'number' => 5,
'sha256_bz2' => '0d5f8b55a0f5350c55526e34372037348e0bc959d14d7f8e25d7b3237be2fc63',
'sha256_gz' => 'c57233825070238a00dee8712487b4859fa35f597e3c365adddfad13578ffb87',
'sha256_xz' => '4964cdbaf2447afba100c4199ec9c59c41ca4cc23db8d1e38ac7e57aab028954',
'number' => 0,
'sha256_bz2' => '',
'sha256_gz' => '',
'sha256_xz' => '',
'date' => '13 Nov 2025',
'baseurl' => 'https://downloads.php.net/~daniels/',
],
Expand Down
14 changes: 14 additions & 0 deletions include/version.inc
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,20 @@
$RELEASES = (function () {
$data = [];

/* PHP 8.5 Release */
$data['8.5'] = [
'version' => '8.5.0',
'date' => '20 Nov 2025',
'tags' => [''], // Set to ['security'] for security releases.
'sha256' => [
// WARNING: Order of SHA256 entries here is DIFFERENT from the
// order in the manifest
'tar.gz' => 'dc3651369c9b63320dd4ea8e272c6a23f18e50f67c13d10ee368c86961dbd10f',
'tar.bz2' => 'cd16cb045b34a6cec6a83008e1b335f365c7a832fcc483df82308664c6d021f9',
'tar.xz' => '39cb6e4acd679b574d3d3276f148213e935fc25f90403eb84fb1b836a806ef1e',
]
];

/* PHP 8.4 Release */
$data['8.4'] = [
'version' => '8.4.15',
Expand Down
30 changes: 30 additions & 0 deletions releases/8_5_0.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?php
$_SERVER['BASE_PAGE'] = 'releases/8_5_0.php';
include_once __DIR__ . '/../include/prepend.inc';
site_header('PHP 8.5.0 Release Announcement');
?>
<h1>PHP 8.5.0 Release Announcement</h1>

<p>The PHP development team announces the immediate availability of PHP 8.5.0. This release marks the latest minor release of the PHP language.</p>

<p>PHP 8.5 comes with numerous improvements and new features such as:</p>
<ul>
<li>New "URI" extension</li>
<li>New pipe operator (|&gt;)</li>
<li>Clone With</li>
<li>New #[\NoDiscard] attribute</li>
<li>Support for closures, casts, and first class callables in constant expressions</li>
<li>And much much more...</li>
</ul>
<p>
For source downloads of PHP 8.5.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.5.0">ChangeLog</a>.
</p>
<p>
The <a href="https://php.net/manual/en/migration85.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();
Loading