File tree 3 files changed +38
-12
lines changed
3 files changed +38
-12
lines changed Original file line number Diff line number Diff line change 6
6
7
7
// Notes for specific branches can be added here, and will appear in the table.
8
8
$ BRANCH_NOTES = [
9
+ '8.0 ' => '<a href="/migration81">A guide is available for migrating from PHP 8.0 to 8.1.</a> ' ,
9
10
'7.4 ' => '<a href="/migration80">A guide is available for migrating from PHP 7.4 to 8.0.</a> ' ,
10
11
'7.3 ' => '<a href="/migration74">A guide is available for migrating from PHP 7.3 to 7.4.</a> ' ,
11
12
'7.2 ' => '<a href="/migration73">A guide is available for migrating from PHP 7.2 to 7.3.</a> ' ,
Original file line number Diff line number Diff line change 2
2
$ OLDRELEASES = array (
3
3
8 =>
4
4
array (
5
+ '8.0.30 ' =>
6
+ array (
7
+ 'announcement ' =>
8
+ array (
9
+ 'English ' => '/releases/8_0_30.php ' ,
10
+ ),
11
+ 'tags ' =>
12
+ array (
13
+ 0 => 'security ' ,
14
+ ),
15
+ 'date ' => '03 Aug 2023 ' ,
16
+ 'source ' =>
17
+ array (
18
+ 0 =>
19
+ array (
20
+ 'filename ' => 'php-8.0.30.tar.gz ' ,
21
+ 'name ' => 'PHP 8.0.30 (tar.gz) ' ,
22
+ 'sha256 ' => '449d2048fcb20a314d8c218097c6d1047a9f1c5bb72aa54d5d3eba0a27a4c80c ' ,
23
+ 'date ' => '03 Aug 2023 ' ,
24
+ ),
25
+ 1 =>
26
+ array (
27
+ 'filename ' => 'php-8.0.30.tar.bz2 ' ,
28
+ 'name ' => 'PHP 8.0.30 (tar.bz2) ' ,
29
+ 'sha256 ' => '98a9cb6a0e27a6950cdf4b26dcac48f2be2d936d5224a502f066cf3d4cf19b92 ' ,
30
+ 'date ' => '03 Aug 2023 ' ,
31
+ ),
32
+ 2 =>
33
+ array (
34
+ 'filename ' => 'php-8.0.30.tar.xz ' ,
35
+ 'name ' => 'PHP 8.0.30 (tar.xz) ' ,
36
+ 'sha256 ' => '216ab305737a5d392107112d618a755dc5df42058226f1670e9db90e77d777d9 ' ,
37
+ 'date ' => '03 Aug 2023 ' ,
38
+ ),
39
+ ),
40
+ 'museum ' => false ,
41
+ ),
5
42
'8.1.25 ' =>
6
43
array (
7
44
'announcement ' =>
Original file line number Diff line number Diff line change @@ -54,18 +54,6 @@ $RELEASES = (function () {
54
54
]
55
55
];
56
56
57
- /* PHP 8.0 Release */
58
- $ data ['8.0 ' ] = [
59
- 'version ' => '8.0.30 ' ,
60
- 'date ' => '03 Aug 2023 ' ,
61
- 'tags ' => ['security ' ], // Set to ['security'] for security releases.
62
- 'sha256 ' => [
63
- 'tar.gz ' => '449d2048fcb20a314d8c218097c6d1047a9f1c5bb72aa54d5d3eba0a27a4c80c ' ,
64
- 'tar.bz2 ' => '98a9cb6a0e27a6950cdf4b26dcac48f2be2d936d5224a502f066cf3d4cf19b92 ' ,
65
- 'tar.xz ' => '216ab305737a5d392107112d618a755dc5df42058226f1670e9db90e77d777d9 ' ,
66
- ]
67
- ];
68
-
69
57
$ ret = [];
70
58
foreach ($ data as $ release ) {
71
59
$ version = $ release ['version ' ];
You can’t perform that action at this time.
0 commit comments