Skip to content

Commit f9f989e

Browse files
committed
Merge branch 'master' into phar-stub-fix
2 parents 6cc480d + 1a0f955 commit f9f989e

File tree

776 files changed

+25800
-10889
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

776 files changed

+25800
-10889
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
/ext/sockets @devnexen
5353
/ext/spl @Girgias
5454
/ext/standard @bukka
55-
/ext/uri @kocsismate
55+
/ext/uri @kocsismate @TimWolla
5656
/ext/xml @nielsdos
5757
/ext/xmlreader @nielsdos
5858
/ext/xmlwriter @nielsdos

.github/nightly_matrix.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<?php
22

33
const BRANCHES = [
4-
['ref' => 'master', 'version' => [8, 5]],
4+
['ref' => 'master', 'version' => [8, 6]],
5+
['ref' => 'PHP-8.5', 'version' => [8, 5]],
56
['ref' => 'PHP-8.4', 'version' => [8, 4]],
67
['ref' => 'PHP-8.3', 'version' => [8, 3]],
78
['ref' => 'PHP-8.2', 'version' => [8, 2]],

.github/scripts/windows/find-target-branch.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
for /f "usebackq tokens=3" %%i in (`findstr PHP_MAJOR_VERSION main\php_version.h`) do set BRANCH=%%i
44
for /f "usebackq tokens=3" %%i in (`findstr PHP_MINOR_VERSION main\php_version.h`) do set BRANCH=%BRANCH%.%%i
55

6-
if /i "%BRANCH%" equ "8.5" (
6+
if /i "%BRANCH%" equ "8.6" (
77
set BRANCH=master
88
)

.github/workflows/nightly.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ on:
4444
skip_wordpress:
4545
required: true
4646
type: boolean
47+
variation_enable_zend_max_execution_timers:
48+
required: true
49+
type: boolean
4750
permissions:
4851
contents: read
4952
jobs:
@@ -198,6 +201,7 @@ jobs:
198201
zts: true
199202
configuration_parameters: >-
200203
CFLAGS="-DZEND_RC_DEBUG=1 -DPROFITABILITY_CHECKS=0 -DZEND_VERIFY_FUNC_INFO=1 -DZEND_VERIFY_TYPE_INFERENCE"
204+
${{ inputs.variation_enable_zend_max_execution_timers && '--enable-zend-max-execution-timers' || '' }}
201205
run_tests_parameters: -d zend_test.observer.enabled=1 -d zend_test.observer.show_output=0
202206
timeout_minutes: 360
203207
test_function_jit: true
@@ -1038,7 +1042,7 @@ jobs:
10381042
PHP_BUILD_CACHE_BASE_DIR: C:\build-cache
10391043
PHP_BUILD_OBJ_DIR: C:\obj
10401044
PHP_BUILD_CACHE_SDK_DIR: C:\build-cache\sdk
1041-
PHP_BUILD_SDK_BRANCH: php-sdk-2.3.0
1045+
PHP_BUILD_SDK_BRANCH: php-sdk-2.5.0
10421046
PHP_BUILD_CRT: ${{ inputs.vs_crt_version }}
10431047
PLATFORM: ${{ matrix.x64 && 'x64' || 'x86' }}
10441048
THREAD_SAFE: "${{ matrix.zts && '1' || '0' }}"

.github/workflows/push.yml

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Push
22
on:
33
push:
4-
paths-ignore:
4+
paths-ignore: &ignore_paths
55
- docs/**
66
- NEWS
77
- UPGRADING
@@ -18,16 +18,7 @@ on:
1818
- PHP-8.4
1919
- master
2020
pull_request:
21-
paths-ignore:
22-
- docs/**
23-
- NEWS
24-
- UPGRADING
25-
- UPGRADING.INTERNALS
26-
- '**/README.*'
27-
- CONTRIBUTING.md
28-
- CODING_STANDARDS.md
29-
- .cirrus.yml
30-
- .circleci/**
21+
paths-ignore: *ignore_paths
3122
branches:
3223
- '**'
3324
workflow_dispatch: ~
@@ -240,7 +231,7 @@ jobs:
240231
PHP_BUILD_CACHE_BASE_DIR: C:\build-cache
241232
PHP_BUILD_OBJ_DIR: C:\obj
242233
PHP_BUILD_CACHE_SDK_DIR: C:\build-cache\sdk
243-
PHP_BUILD_SDK_BRANCH: php-sdk-2.3.0
234+
PHP_BUILD_SDK_BRANCH: php-sdk-2.5.0
244235
PHP_BUILD_CRT: vs17
245236
PLATFORM: x64
246237
THREAD_SAFE: "1"

.github/workflows/root.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,5 @@ jobs:
6464
skip_laravel: ${{ matrix.branch.version[0] == 8 && matrix.branch.version[1] == 1 }}
6565
skip_symfony: ${{ matrix.branch.version[0] == 8 && matrix.branch.version[1] == 1 }}
6666
skip_wordpress: ${{ matrix.branch.version[0] == 8 && matrix.branch.version[1] == 1 }}
67+
variation_enable_zend_max_execution_timers: ${{ (matrix.branch.version[0] == 8 && matrix.branch.version[1] >= 3) || matrix.branch.version[0] >= 9 }}
6768
secrets: inherit

CONTRIBUTING.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,8 @@ Currently, we have the following branches in use:
357357

358358
| Branch | |
359359
| --------- | --------- |
360-
| master | Active development branch for PHP 8.5, which is open for backwards incompatible changes and major internal API changes. |
360+
| master | Active development branch for PHP 8.6, which is open for backwards incompatible changes and major internal API changes. |
361+
| PHP-8.5 | Is used to release the PHP 8.5.x series. This is a current stable version and is open for bugfixes only. |
361362
| PHP-8.4 | Is used to release the PHP 8.4.x series. This is a current stable version and is open for bugfixes only. |
362363
| PHP-8.3 | Is used to release the PHP 8.3.x series. This is a current stable version and is open for bugfixes only. |
363364
| PHP-8.2 | Is used to release the PHP 8.2.x series. This is an old stable version and is open for security fixes only. |

EXTENSIONS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -506,6 +506,7 @@ STATUS: Working
506506
-------------------------------------------------------------------------------
507507
EXTENSION: uri
508508
PRIMARY MAINTAINER Máté Kocsis <[email protected]> (2025 - 2025)
509+
Tim Düsterhus <[email protected]> (2025 - 2025)
509510
MAINTENANCE: Maintained
510511
STATUS: Working
511512
SINCE: 8.5.0

0 commit comments

Comments
 (0)