Changeset 59275
- Timestamp:
- 10/22/2024 05:00:25 PM (9 months ago)
- Location:
- trunk
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/test-old-branches.yml
r59254 r59275 19 19 20 20 env: 21 CURRENTLY_SUPPORTED_BRANCH: '6. 6'21 CURRENTLY_SUPPORTED_BRANCH: '6.7' 22 22 23 23 jobs: … … 39 39 ] 40 40 branch: [ 41 '6. 6', '6.5', '6.4', '6.3', '6.2', '6.1','6.0',41 '6.7', '6.6', '6.5', '6.4', '6.3', '6.2', '6.1','6.0', 42 42 '5.9', '5.8', '5.7', '5.6', '5.5', '5.4', '5.3', '5.2', '5.1', '5.0', 43 43 '4.9', '4.8', '4.7', '4.6', '4.5', '4.4', '4.3', '4.2', '4.1' … … 45 45 include: 46 46 # PHP Compatibility testing was introduced in 5.5. 47 - branch: '6.7' 48 workflow: 'php-compatibility.yml' 47 49 - branch: '6.6' 48 50 workflow: 'php-compatibility.yml' … … 73 75 # Starting in 5.8 with #52905, some additional tests with real assertions were introduced. 74 76 # Branches 5.8 and newer should be tested to confirm no regressions are introduced. 77 - branch: '6.7' 78 workflow: 'end-to-end-tests.yml' 75 79 - branch: '6.6' 76 80 workflow: 'end-to-end-tests.yml' … … 95 99 # Since the workflow frequently failed for 6.2 and 6.3 due to the flaky nature of the Puppeteer tests, 96 100 # the workflow was removed from those two branches. 101 - branch: '6.7' 102 workflow: 'performance.yml' 97 103 - branch: '6.6' 98 104 workflow: 'performance.yml' -
trunk/.github/workflows/upgrade-testing.yml
r59168 r59275 47 47 db-type: [ 'mysql' ] 48 48 db-version: [ '5.7', '8.0' ] 49 wp: [ '6.0', '6.1', '6.2', '6.3', '6.4', '6.5', '6.6' ]49 wp: [ '6.0', '6.1', '6.2', '6.3', '6.4', '6.5', '6.6', '6.7' ] 50 50 multisite: [ false, true ] 51 51 with: -
trunk/.version-support-mysql.json
r58575 r59275 1 1 { 2 "6-8": [ 3 "8.3", 4 "8.2", 5 "8.1", 6 "8.0", 7 "5.7", 8 "5.6", 9 "5.5" 10 ], 2 11 "6-7": [ 3 12 "8.3", -
trunk/.version-support-php.json
r59168 r59275 1 1 { 2 "6-8": [ 3 "7.2", 4 "7.3", 5 "7.4", 6 "8.0", 7 "8.1", 8 "8.2", 9 "8.3", 10 "8.4" 11 ], 2 12 "6-7": [ 3 13 "7.2", -
trunk/SECURITY.md
r58575 r59275 11 11 | Version | Supported | 12 12 |---------| --------- | 13 | 6.7.x | Yes | 13 14 | 6.6.x | Yes | 14 15 | 6.5.x | Yes | -
trunk/package-lock.json
r59268 r59275 1 1 { 2 2 "name": "WordPress", 3 "version": "6. 7.0",3 "version": "6.8.0", 4 4 "lockfileVersion": 3, 5 5 "requires": true, … … 7 7 "": { 8 8 "name": "WordPress", 9 "version": "6. 7.0",9 "version": "6.8.0", 10 10 "license": "GPL-2.0-or-later", 11 11 "dependencies": { -
trunk/package.json
r59268 r59275 1 1 { 2 2 "name": "WordPress", 3 "version": "6. 7.0",3 "version": "6.8.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
r59273 r59275 17 17 * @global string $wp_version 18 18 */ 19 $wp_version = '6. 7-RC1-59273-src';19 $wp_version = '6.8-alpha-59274-src'; 20 20 21 21 /**
Note: See TracChangeset
for help on using the changeset viewer.