Changeset 61217
- Timestamp:
- 11/11/2025 04:48:36 PM (2 months ago)
- Location:
- trunk
- Files:
-
- 9 edited
-
.github/workflows/test-old-branches.yml (modified) (4 diffs)
-
.github/workflows/upgrade-develop-testing.yml (modified) (1 diff)
-
.version-support-mysql.json (modified) (1 diff)
-
.version-support-php.json (modified) (2 diffs)
-
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/test-old-branches.yml
r61216 r61217 46 46 ] 47 47 branch: [ 48 '6. 9', '6.8', '6.7', '6.6', '6.5', '6.4', '6.3', '6.2', '6.1','6.0',48 '6.8', '6.7', '6.6', '6.5', '6.4', '6.3', '6.2', '6.1','6.0', 49 49 '5.9', '5.8', '5.7', '5.6', '5.5', '5.4', '5.3', '5.2', '5.1', '5.0', 50 50 '4.9', '4.8', '4.7' … … 52 52 include: 53 53 # PHP Compatibility testing was introduced in 5.5. 54 - branch: '6.9'55 workflow: 'php-compatibility.yml'56 54 - branch: '6.8' 57 55 workflow: 'php-compatibility.yml' … … 86 84 # Starting in 5.8 with #52905, some additional tests with real assertions were introduced. 87 85 # Branches 5.8 and newer should be tested to confirm no regressions are introduced. 88 - branch: '6.9'89 workflow: 'end-to-end-tests.yml'90 86 - branch: '6.8' 91 87 workflow: 'end-to-end-tests.yml' … … 114 110 # Since the workflow frequently failed for 6.2 and 6.3 due to the flaky nature of the Puppeteer tests, 115 111 # the workflow was removed from those two branches. 116 - branch: '6.9'117 workflow: 'performance.yml'118 112 - branch: '6.8' 119 113 workflow: 'performance.yml' -
trunk/.github/workflows/upgrade-develop-testing.yml
r61216 r61217 68 68 db-version: [ '5.7', '8.4' ] 69 69 # WordPress 4.9 is the oldest version that supports PHP 7.2. 70 wp: [ '4.9', '6. 7', '6.8', '6.9-RC1' ]70 wp: [ '4.9', '6.6', '6.7', '6.8' ] 71 71 multisite: [ false, true ] 72 72 -
trunk/.version-support-mysql.json
r61216 r61217 1 1 { 2 "7-0": [3 "9.4",4 "9.3",5 "9.2",6 "9.1",7 "9.0",8 "8.4",9 "8.0",10 "5.7",11 "5.6",12 "5.5"13 ],14 2 "6-9": [ 15 3 "9.4", -
trunk/.version-support-php.json
r61216 r61217 1 1 { 2 " 7-0": [2 "6-9": [ 3 3 "7.2", 4 4 "7.3", … … 11 11 "8.5" 12 12 ], 13 "6-9": [14 "7.2",15 "7.3",16 "7.4",17 "8.0",18 "8.1",19 "8.2",20 "8.3",21 "8.4",22 "8.5"23 ],24 13 "6-8": [ 25 14 "7.2", -
trunk/SECURITY.md
r61216 r61217 11 11 | Version | Supported | 12 12 |---------| --------- | 13 | 6.9.x | Yes |14 13 | 6.8.x | Yes | 15 14 | 6.7.x | Yes | -
trunk/composer.json
r61216 r61217 1 1 { 2 2 "name": "wordpress/wordpress", 3 "version": " 7.0.0",3 "version": "6.9.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
r61216 r61217 1 1 { 2 2 "name": "WordPress", 3 "version": " 7.0.0",3 "version": "6.9.0", 4 4 "lockfileVersion": 3, 5 5 "requires": true, … … 7 7 "": { 8 8 "name": "WordPress", 9 "version": " 7.0.0",9 "version": "6.9.0", 10 10 "license": "GPL-2.0-or-later", 11 11 "dependencies": { -
trunk/package.json
r61216 r61217 1 1 { 2 2 "name": "WordPress", 3 "version": " 7.0.0",3 "version": "6.9.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
r61216 r61217 17 17 * @global string $wp_version 18 18 */ 19 $wp_version = ' 7.0-alpha-61215-src';19 $wp_version = '6.9-RC1-61214-src'; 20 20 21 21 /**
Note: See TracChangeset
for help on using the changeset viewer.