Changeset 63167
- Timestamp:
- 08/10/2026 10:26:55 PM (4 weeks ago)
- Location:
- trunk
- Files:
-
- 23 edited
-
.github/workflows/check-built-files.yml (modified) (1 diff)
-
.github/workflows/cleanup-pull-requests.yml (modified) (1 diff)
-
.github/workflows/coding-standards.yml (modified) (3 diffs)
-
.github/workflows/end-to-end-tests.yml (modified) (2 diffs)
-
.github/workflows/javascript-tests.yml (modified) (2 diffs)
-
.github/workflows/javascript-type-checking.yml (modified) (2 diffs)
-
.github/workflows/local-docker-environment.yml (modified) (3 diffs)
-
.github/workflows/performance.yml (modified) (3 diffs)
-
.github/workflows/php-compatibility.yml (modified) (2 diffs)
-
.github/workflows/phpstan-static-analysis.yml (modified) (2 diffs)
-
.github/workflows/phpunit-tests.yml (modified) (7 diffs)
-
.github/workflows/test-build-processes.yml (modified) (3 diffs)
-
.github/workflows/test-old-branches.yml (modified) (5 diffs)
-
.github/workflows/upgrade-develop-testing.yml (modified) (6 diffs)
-
.github/workflows/upgrade-testing.yml (modified) (1 diff)
-
.github/workflows/workflow-lint.yml (modified) (2 diffs)
-
.version-support-mysql.json (modified) (1 diff)
-
.version-support-php.json (modified) (1 diff)
-
SECURITY.md (modified) (1 diff)
-
composer.json (modified) (1 diff)
-
package-lock.json (modified) (2 diffs)
-
package.json (modified) (1 diff)
-
src/wp-includes/version.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/check-built-files.yml
r62095 r63167 50 50 name: Check built files 51 51 if: ${{ github.repository == 'wordpress/wordpress-develop' }} 52 uses: ./.github/workflows/reusable-check-built-files.yml52 uses: WordPress/wordpress-develop/.github/workflows/reusable-check-built-files.yml@trunk 53 53 permissions: 54 54 contents: read -
trunk/.github/workflows/cleanup-pull-requests.yml
r59661 r63167 26 26 pull-requests: write 27 27 if: ${{ github.repository == 'WordPress/wordpress-develop' }} 28 uses: ./.github/workflows/reusable-cleanup-pull-requests.yml28 uses: WordPress/wordpress-develop/.github/workflows/reusable-cleanup-pull-requests.yml@trunk -
trunk/.github/workflows/coding-standards.yml
r62855 r63167 48 48 phpcs: 49 49 name: Coding standards 50 uses: ./.github/workflows/reusable-coding-standards-php.yml50 uses: WordPress/wordpress-develop/.github/workflows/reusable-coding-standards-php.yml@trunk 51 51 permissions: 52 52 contents: read … … 56 56 jshint: 57 57 name: Coding standards 58 uses: ./.github/workflows/reusable-coding-standards-javascript.yml58 uses: WordPress/wordpress-develop/.github/workflows/reusable-coding-standards-javascript.yml@trunk 59 59 permissions: 60 60 contents: read … … 63 63 slack-notifications: 64 64 name: Slack Notifications 65 uses: ./.github/workflows/slack-notifications.yml65 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 66 66 permissions: 67 67 actions: read -
trunk/.github/workflows/end-to-end-tests.yml
r62855 r63167 55 55 e2e-tests: 56 56 name: ${{ matrix.label }} 57 uses: ./.github/workflows/reusable-end-to-end-tests.yml57 uses: WordPress/wordpress-develop/.github/workflows/reusable-end-to-end-tests.yml@trunk 58 58 permissions: 59 59 contents: read … … 70 70 slack-notifications: 71 71 name: Slack Notifications 72 uses: ./.github/workflows/slack-notifications.yml72 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 73 73 permissions: 74 74 actions: read -
trunk/.github/workflows/javascript-tests.yml
r62855 r63167 51 51 test-js: 52 52 name: QUnit Tests 53 uses: ./.github/workflows/reusable-javascript-tests.yml53 uses: WordPress/wordpress-develop/.github/workflows/reusable-javascript-tests.yml@trunk 54 54 permissions: 55 55 contents: read … … 58 58 slack-notifications: 59 59 name: Slack Notifications 60 uses: ./.github/workflows/slack-notifications.yml60 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 61 61 permissions: 62 62 actions: read -
trunk/.github/workflows/javascript-type-checking.yml
r62855 r63167 44 44 typecheck: 45 45 name: JavaScript type checking 46 uses: ./.github/workflows/reusable-javascript-type-checking-v1.yml46 uses: WordPress/wordpress-develop/.github/workflows/reusable-javascript-type-checking-v1.yml@trunk 47 47 permissions: 48 48 contents: read … … 51 51 slack-notifications: 52 52 name: Slack Notifications 53 uses: ./.github/workflows/slack-notifications.yml53 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 54 54 permissions: 55 55 actions: read -
trunk/.github/workflows/local-docker-environment.yml
r62742 r63167 77 77 build-test-matrix: 78 78 name: Build Test Matrix 79 uses: ./.github/workflows/reusable-support-json-reader-v1.yml79 uses: WordPress/wordpress-develop/.github/workflows/reusable-support-json-reader-v1.yml@trunk 80 80 permissions: 81 81 contents: read … … 87 87 environment-tests-mysql: 88 88 name: PHP ${{ matrix.php }} 89 uses: ./.github/workflows/reusable-test-local-docker-environment-v1.yml89 uses: WordPress/wordpress-develop/.github/workflows/reusable-test-local-docker-environment-v1.yml@trunk 90 90 permissions: 91 91 contents: read … … 123 123 slack-notifications: 124 124 name: Slack Notifications 125 uses: ./.github/workflows/slack-notifications.yml125 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 126 126 permissions: 127 127 actions: read -
trunk/.github/workflows/performance.yml
r62855 r63167 92 92 performance: 93 93 name: ${{ matrix.multisite && 'Multisite' || 'Single Site' }} ${{ matrix.memcached && 'Memcached' || 'Default' }} 94 uses: ./.github/workflows/reusable-performance-test-v2.yml94 uses: WordPress/wordpress-develop/.github/workflows/reusable-performance-test-v2.yml@trunk 95 95 needs: [ determine-matrix ] 96 96 permissions: … … 110 110 compare: 111 111 name: ${{ matrix.label }} 112 uses: ./.github/workflows/reusable-performance-report-v2.yml112 uses: WordPress/wordpress-develop/.github/workflows/reusable-performance-report-v2.yml@trunk 113 113 needs: [ determine-matrix, performance ] 114 114 permissions: … … 131 131 slack-notifications: 132 132 name: Slack Notifications 133 uses: ./.github/workflows/slack-notifications.yml133 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 134 134 permissions: 135 135 actions: read -
trunk/.github/workflows/php-compatibility.yml
r62855 r63167 40 40 php-compatibility: 41 41 name: Check PHP compatibility 42 uses: ./.github/workflows/reusable-php-compatibility.yml42 uses: WordPress/wordpress-develop/.github/workflows/reusable-php-compatibility.yml@trunk 43 43 permissions: 44 44 contents: read … … 47 47 slack-notifications: 48 48 name: Slack Notifications 49 uses: ./.github/workflows/slack-notifications.yml49 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 50 50 permissions: 51 51 actions: read -
trunk/.github/workflows/phpstan-static-analysis.yml
r63019 r63167 40 40 phpstan: 41 41 name: PHP static analysis 42 uses: ./.github/workflows/reusable-phpstan-static-analysis-v1.yml42 uses: WordPress/wordpress-develop/.github/workflows/reusable-phpstan-static-analysis-v1.yml@trunk 43 43 permissions: 44 44 contents: read … … 47 47 slack-notifications: 48 48 name: Slack Notifications 49 uses: ./.github/workflows/slack-notifications.yml49 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 50 50 permissions: 51 51 actions: read -
trunk/.github/workflows/phpunit-tests.yml
r63162 r63167 56 56 prepare-gutenberg: 57 57 name: Prepare Gutenberg Assets 58 uses: ./.github/workflows/reusable-prepare-gutenberg.yml58 uses: WordPress/wordpress-develop/.github/workflows/reusable-prepare-gutenberg.yml@trunk 59 59 permissions: 60 60 contents: read … … 70 70 test-with-mysql: 71 71 name: PHP ${{ matrix.php }} 72 uses: ./.github/workflows/reusable-phpunit-tests-v3.yml72 uses: WordPress/wordpress-develop/.github/workflows/reusable-phpunit-tests-v3.yml@trunk 73 73 needs: prepare-gutenberg 74 74 permissions: … … 153 153 test-with-mariadb: 154 154 name: PHP ${{ matrix.php }} 155 uses: ./.github/workflows/reusable-phpunit-tests-v3.yml155 uses: WordPress/wordpress-develop/.github/workflows/reusable-phpunit-tests-v3.yml@trunk 156 156 needs: prepare-gutenberg 157 157 permissions: … … 211 211 test-innovation-releases: 212 212 name: PHP ${{ matrix.php }} 213 uses: ./.github/workflows/reusable-phpunit-tests-v3.yml213 uses: WordPress/wordpress-develop/.github/workflows/reusable-phpunit-tests-v3.yml@trunk 214 214 needs: prepare-gutenberg 215 215 permissions: … … 258 258 html-api-test-groups: 259 259 name: ${{ matrix.label }} 260 uses: ./.github/workflows/reusable-phpunit-tests-v3.yml260 uses: WordPress/wordpress-develop/.github/workflows/reusable-phpunit-tests-v3.yml@trunk 261 261 needs: prepare-gutenberg 262 262 permissions: … … 292 292 limited-matrix-for-forks: 293 293 name: PHP ${{ matrix.php }} 294 uses: ./.github/workflows/reusable-phpunit-tests-v3.yml294 uses: WordPress/wordpress-develop/.github/workflows/reusable-phpunit-tests-v3.yml@trunk 295 295 needs: prepare-gutenberg 296 296 permissions: … … 350 350 slack-notifications: 351 351 name: Slack Notifications 352 uses: ./.github/workflows/slack-notifications.yml352 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 353 353 permissions: 354 354 actions: read -
trunk/.github/workflows/test-build-processes.yml
r62855 r63167 49 49 test-core-build-process: 50 50 name: Core running from ${{ matrix.directory }} 51 uses: ./.github/workflows/reusable-test-core-build-process.yml51 uses: WordPress/wordpress-develop/.github/workflows/reusable-test-core-build-process.yml@trunk 52 52 permissions: 53 53 contents: read … … 84 84 test-core-build-process-additional-os: 85 85 name: Core running from ${{ matrix.directory }} 86 uses: ./.github/workflows/reusable-test-core-build-process.yml86 uses: WordPress/wordpress-develop/.github/workflows/reusable-test-core-build-process.yml@trunk 87 87 permissions: 88 88 contents: read … … 99 99 slack-notifications: 100 100 name: Slack Notifications 101 uses: ./.github/workflows/slack-notifications.yml101 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 102 102 permissions: 103 103 actions: read -
trunk/.github/workflows/test-old-branches.yml
r62742 r63167 26 26 27 27 env: 28 CURRENTLY_SUPPORTED_BRANCH: '7. 0'28 CURRENTLY_SUPPORTED_BRANCH: '7.1' 29 29 30 30 jobs: … … 46 46 ] 47 47 branch: [ 48 '7. 0',48 '7.1', '7.0', 49 49 '6.9', '6.8', '6.7', '6.6', '6.5', '6.4', '6.3', '6.2', '6.1','6.0', 50 50 '5.9', '5.8', '5.7', '5.6', '5.5', '5.4', '5.3', '5.2', '5.1', '5.0', … … 53 53 include: 54 54 # PHP Compatibility testing was introduced in 5.5. 55 - branch: '7.1' 56 workflow: 'php-compatibility.yml' 55 57 - branch: '7.0' 56 58 workflow: 'php-compatibility.yml' … … 89 91 # Starting in 5.8 with #52905, some additional tests with real assertions were introduced. 90 92 # Branches 5.8 and newer should be tested to confirm no regressions are introduced. 93 - branch: '7.1' 94 workflow: 'end-to-end-tests.yml' 91 95 - branch: '7.0' 92 96 workflow: 'end-to-end-tests.yml' … … 119 123 # Since the workflow frequently failed for 6.2 and 6.3 due to the flaky nature of the Puppeteer tests, 120 124 # the workflow was removed from those two branches. 125 - branch: '7.1' 126 workflow: 'performance.yml' 121 127 - branch: '7.0' 122 workflow: 'performance.yml'123 - branch: '6.9'124 128 workflow: 'performance.yml' 125 129 -
trunk/.github/workflows/upgrade-develop-testing.yml
r62855 r63167 44 44 build: 45 45 name: Build 46 uses: ./.github/workflows/reusable-build-package.yml46 uses: WordPress/wordpress-develop/.github/workflows/reusable-build-package.yml@trunk 47 47 if: ${{ startsWith( github.repository, 'WordPress/' ) && ( github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' ) }} 48 48 permissions: … … 60 60 upgrade-tests-develop: 61 61 name: Upgrade from ${{ matrix.wp }} 62 uses: ./.github/workflows/reusable-upgrade-testing.yml62 uses: WordPress/wordpress-develop/.github/workflows/reusable-upgrade-testing.yml@trunk 63 63 if: ${{ github.repository == 'WordPress/wordpress-develop' }} 64 64 needs: [ build ] … … 73 73 db-version: [ '5.7', '8.4' ] 74 74 # WordPress 5.3 is the oldest version that supports PHP 7.4. 75 wp: [ '5.3', '6.9', '7.0' ]75 wp: [ '5.3', '6.9', '7.0', '7.1-RC2' ] 76 76 multisite: [ false, true ] 77 77 with: … … 87 87 upgrade-tests-develop-forks: 88 88 name: Upgrade from ${{ matrix.wp }} 89 uses: ./.github/workflows/reusable-upgrade-testing.yml89 uses: WordPress/wordpress-develop/.github/workflows/reusable-upgrade-testing.yml@trunk 90 90 if: ${{ github.repository != 'WordPress/wordpress-develop' }} 91 91 needs: [ build ] … … 99 99 db-type: [ 'mysql' ] 100 100 db-version: [ '8.4' ] 101 wp: [ '6.9', '7.0' ]101 wp: [ '6.9', '7.0', '7.1-RC2' ] 102 102 multisite: [ false, true ] 103 103 with: … … 112 112 slack-notifications: 113 113 name: Slack Notifications 114 uses: ./.github/workflows/slack-notifications.yml114 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 115 115 permissions: 116 116 actions: read -
trunk/.github/workflows/upgrade-testing.yml
r62742 r63167 72 72 db-type: [ 'mysql' ] 73 73 db-version: [ '5.7', '8.0', '8.4', '9.7' ] 74 wp: [ '6.9', '7.0' ]74 wp: [ '6.9', '7.0', '7.1-RC2' ] 75 75 multisite: [ false, true ] 76 76 with: -
trunk/.github/workflows/workflow-lint.yml
r62742 r63167 33 33 lint: 34 34 name: Lint GitHub Action files 35 uses: ./.github/workflows/reusable-workflow-lint.yml35 uses: WordPress/wordpress-develop/.github/workflows/reusable-workflow-lint.yml@trunk 36 36 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} 37 37 permissions: … … 42 42 slack-notifications: 43 43 name: Slack Notifications 44 uses: ./.github/workflows/slack-notifications.yml44 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 45 45 permissions: 46 46 actions: read -
trunk/.version-support-mysql.json
r62407 r63167 1 1 { 2 "7-2": [ 3 "9.7", 4 "8.4", 5 "8.0", 6 "5.7", 7 "5.6", 8 "5.5" 9 ], 2 10 "7-1": [ 3 11 "9.7", -
trunk/.version-support-php.json
r62160 r63167 1 1 { 2 "7-2": [ 3 "7.4", 4 "8.0", 5 "8.1", 6 "8.2", 7 "8.3", 8 "8.4", 9 "8.5" 10 ], 2 11 "7-1": [ 3 12 "7.4", -
trunk/SECURITY.md
r62160 r63167 11 11 | Version | Supported | 12 12 |---------| --------- | 13 | 7.1.x | Yes | 13 14 | 7.0.x | Yes | 14 15 | 6.9.x | Yes | -
trunk/composer.json
r63037 r63167 1 1 { 2 2 "name": "wordpress/wordpress", 3 "version": "7. 1.0",3 "version": "7.2.0", 4 4 "license": "GPL-2.0-or-later", 5 5 "description": "WordPress is open source software you can use to create a beautiful website, blog, or app.", -
trunk/package-lock.json
r62861 r63167 1 1 { 2 2 "name": "WordPress", 3 "version": "7. 1.0",3 "version": "7.2.0", 4 4 "lockfileVersion": 3, 5 5 "requires": true, … … 7 7 "": { 8 8 "name": "WordPress", 9 "version": "7. 1.0",9 "version": "7.2.0", 10 10 "license": "GPL-2.0-or-later", 11 11 "dependencies": { -
trunk/package.json
r63066 r63167 1 1 { 2 2 "name": "WordPress", 3 "version": "7. 1.0",3 "version": "7.2.0", 4 4 "description": "WordPress is open source software you can use to create a beautiful website, blog, or app.", 5 5 "repository": { -
trunk/src/wp-includes/version.php
r63095 r63167 17 17 * @global string $wp_version 18 18 */ 19 $wp_version = '7. 1-RC2-63095-src';19 $wp_version = '7.2-alpha-63166-src'; 20 20 21 21 /**
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)