Make WordPress Core

Changeset 61216


Ignore:
Timestamp:
11/11/2025 04:39:44 PM (2 months ago)
Author:
davidbaumwald
Message:

Post 6.9 branching version update.

Trunk is now 7.0-alpha.

Props jorbin, ella.
Fixes #63134.

Location:
trunk
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/.github/workflows/test-old-branches.yml

    r61209 r61216  
    4646        ]
    4747        branch: [
    48             '6.8', '6.7', '6.6', '6.5', '6.4', '6.3', '6.2', '6.1','6.0',
     48            '6.9', '6.8', '6.7', '6.6', '6.5', '6.4', '6.3', '6.2', '6.1','6.0',
    4949            '5.9', '5.8', '5.7', '5.6', '5.5', '5.4', '5.3', '5.2', '5.1', '5.0',
    5050            '4.9', '4.8', '4.7'
     
    5252        include:
    5353          # PHP Compatibility testing was introduced in 5.5.
     54          - branch: '6.9'
     55            workflow: 'php-compatibility.yml'
    5456          - branch: '6.8'
    5557            workflow: 'php-compatibility.yml'
     
    8486          # Starting in 5.8 with #52905, some additional tests with real assertions were introduced.
    8587          # 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'
    8690          - branch: '6.8'
    8791            workflow: 'end-to-end-tests.yml'
     
    110114          # Since the workflow frequently failed for 6.2 and 6.3 due to the flaky nature of the Puppeteer tests,
    111115          # the workflow was removed from those two branches.
     116          - branch: '6.9'
     117            workflow: 'performance.yml'
    112118          - branch: '6.8'
    113119            workflow: 'performance.yml'
  • trunk/.github/workflows/upgrade-develop-testing.yml

    r61209 r61216  
    6868        db-version: [ '5.7', '8.4' ]
    6969        # WordPress 4.9 is the oldest version that supports PHP 7.2.
    70         wp: [ '4.9', '6.6', '6.7', '6.8' ]
     70        wp: [ '4.9', '6.7', '6.8', '6.9-RC1' ]
    7171        multisite: [ false, true ]
    7272
  • trunk/.version-support-mysql.json

    r60532 r61216  
    11{
     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    ],
    214    "6-9": [
    315        "9.4",
  • trunk/.version-support-php.json

    r60952 r61216  
    11{
     2    "7-0": [
     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        "8.5"
     12    ],
    213    "6-9": [
    314        "7.2",
  • trunk/SECURITY.md

    r60341 r61216  
    1111| Version | Supported |
    1212|---------| --------- |
     13| 6.9.x   | Yes       |
    1314| 6.8.x   | Yes       |
    1415| 6.7.x   | Yes       |
  • trunk/composer.json

    r61146 r61216  
    11{
    22    "name": "wordpress/wordpress",
    3     "version": "6.9.0",
     3    "version": "7.0.0",
    44    "license": "GPL-2.0-or-later",
    55    "description": "WordPress is open source software you can use to create a beautiful website, blog, or app.",
  • trunk/package-lock.json

    r61211 r61216  
    11{
    22    "name": "WordPress",
    3     "version": "6.9.0",
     3    "version": "7.0.0",
    44    "lockfileVersion": 3,
    55    "requires": true,
     
    77        "": {
    88            "name": "WordPress",
    9             "version": "6.9.0",
     9            "version": "7.0.0",
    1010            "license": "GPL-2.0-or-later",
    1111            "dependencies": {
  • trunk/package.json

    r61211 r61216  
    11{
    22    "name": "WordPress",
    3     "version": "6.9.0",
     3    "version": "7.0.0",
    44    "description": "WordPress is open source software you can use to create a beautiful website, blog, or app.",
    55    "repository": {
  • trunk/src/wp-includes/version.php

    r61214 r61216  
    1717 * @global string $wp_version
    1818 */
    19 $wp_version = '6.9-RC1-61214-src';
     19$wp_version = '7.0-alpha-61215-src';
    2020
    2121/**
Note: See TracChangeset for help on using the changeset viewer.