Skip to content

Commit 52bb5ca

Browse files
committed
PHP 8.1 is now end-of-life
1 parent b371568 commit 52bb5ca

File tree

8 files changed

+40
-32
lines changed

8 files changed

+40
-32
lines changed

downloads.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ function option(string $value, string $desc, $attributes = []): string
101101
'8.4' => 'version 8.4',
102102
'8.3' => 'version 8.3',
103103
'8.2' => 'version 8.2',
104-
'8.1' => 'version 8.1',
105104
'default' => 'OS default version',
106105
];
107106

eol.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
// Notes for specific branches can be added here, and will appear in the table.
88
$BRANCH_NOTES = [
9+
'8.1' => '<a href="/migration82">A guide is available for migrating from PHP 8.1 to 8.2.</a>',
910
'8.0' => '<a href="/migration81">A guide is available for migrating from PHP 8.0 to 8.1.</a>',
1011
'7.4' => '<a href="/migration80">A guide is available for migrating from PHP 7.4 to 8.0.</a>',
1112
'7.3' => '<a href="/migration74">A guide is available for migrating from PHP 7.3 to 7.4.</a>',

git-php.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<h3>Git access</h3>
2121
<p>
2222
If you would like to grab PHP sources or other PHP.net
23-
hosted project data from PHP.net, you can also use
23+
hosted project data from PHP.net, you can also use
2424
<a href="/git.php">Git</a>. No Git account is required.
2525
</p>
2626
';

git.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,6 @@
113113
<br>
114114
<strong>PHP 8.2</strong>:
115115
<code>git checkout PHP-8.2</code>
116-
<br>
117-
<strong>PHP 8.1</strong>:
118-
<code>git checkout PHP-8.1</code>
119116
<br><br>
120117
</li>
121118

include/release-qa.php

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -45,19 +45,6 @@
4545

4646
$QA_RELEASES = [
4747

48-
'8.1.27' => [
49-
'active' => true,
50-
'release' => [
51-
'type' => 'RC',
52-
'number' => 0,
53-
'sha256_gz' => '',
54-
'sha256_bz2' => '',
55-
'sha256_xz' => '',
56-
'date' => '07 Nov 2023',
57-
'baseurl' => 'https://downloads.php.net/',
58-
],
59-
],
60-
6148
'8.2.27' => [
6249
'active' => true,
6350
'release' => [

include/releases.inc

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,43 @@
22
$OLDRELEASES = array (
33
8 =>
44
array (
5+
'8.1.34' =>
6+
array (
7+
'announcement' =>
8+
array (
9+
'English' => '/releases/8_1_34.php',
10+
),
11+
'tags' =>
12+
array (
13+
0 => 'security',
14+
),
15+
'date' => '18 Dec 2025',
16+
'source' =>
17+
array (
18+
0 =>
19+
array (
20+
'filename' => 'php-8.1.34.tar.gz',
21+
'name' => 'PHP 8.1.34 (tar.gz)',
22+
'sha256' => '3c5b060ec8e0d5dd1d8237823f3161cc8bc5342aab3c46893eba9857759c4bfa',
23+
'date' => '18 Dec 2025',
24+
),
25+
1 =>
26+
array (
27+
'filename' => 'php-8.1.34.tar.bz2',
28+
'name' => 'PHP 8.1.34 (tar.bz2)',
29+
'sha256' => '98e0a08a0fae37d08dfcca2f5ff6664863097dde4b1d360af2acc8c3542f2a0f',
30+
'date' => '18 Dec 2025',
31+
),
32+
2 =>
33+
array (
34+
'filename' => 'php-8.1.34.tar.xz',
35+
'name' => 'PHP 8.1.34 (tar.xz)',
36+
'sha256' => 'ffa9e0982e82eeaea848f57687b425ed173aa278fe563001310ae2638db5c251',
37+
'date' => '18 Dec 2025',
38+
),
39+
),
40+
'museum' => false,
41+
),
542
'8.1.33' =>
643
array (
744
'announcement' =>

include/version.inc

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -68,18 +68,6 @@ $RELEASES = (function () {
6868
]
6969
];
7070

71-
/* PHP 8.1 Release */
72-
$data['8.1'] = [
73-
'version' => '8.1.34',
74-
'date' => '18 Dec 2025',
75-
'tags' => ['security'], // Set to ['security'] for security releases.
76-
'sha256' => [
77-
'tar.gz' => '3c5b060ec8e0d5dd1d8237823f3161cc8bc5342aab3c46893eba9857759c4bfa',
78-
'tar.bz2' => '98e0a08a0fae37d08dfcca2f5ff6664863097dde4b1d360af2acc8c3542f2a0f',
79-
'tar.xz' => 'ffa9e0982e82eeaea848f57687b425ed173aa278fe563001310ae2638db5c251',
80-
]
81-
];
82-
8371
$ret = [];
8472
foreach ($data as $release) {
8573
$version = $release['version'];
@@ -126,7 +114,7 @@ function show_source_releases()
126114
{
127115
global $RELEASES;
128116

129-
$SHOW_COUNT = 5;
117+
$SHOW_COUNT = 4;
130118

131119
$current_uri = htmlspecialchars($_SERVER['REQUEST_URI'], ENT_QUOTES, 'UTF-8');
132120

supported-versions.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
'8.4' => 'https://www.php.net/manual/migration84.php',
1515
'8.3' => 'https://www.php.net/manual/migration83.php',
1616
'8.2' => 'https://www.php.net/manual/migration82.php',
17-
'8.1' => 'https://www.php.net/manual/migration81.php',
1817
];
1918
?>
2019

0 commit comments

Comments
 (0)