Changeset 56267
- Timestamp:
- 07/19/2023 05:52:06 AM (19 months ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/test-old-branches.yml
r55717 r56267 35 35 ] 36 36 branch: [ 37 '6. 2', '6.1','6.0',37 '6.3', '6.2', '6.1','6.0', 38 38 '5.9', '5.8', '5.7', '5.6', '5.5', '5.4', '5.3', '5.2', '5.1', '5.0', 39 39 '4.9', '4.8', '4.7', '4.6', '4.5', '4.4', '4.3', '4.2', '4.1' … … 41 41 include: 42 42 # PHP Compatibility testing was introduced in 5.5. 43 - branch: '6.3' 44 workflow: 'php-compatibility.yml' 43 45 - branch: '6.2' 44 46 workflow: 'php-compatibility.yml' … … 61 63 # Starting in 5.8 with #52905, some additional tests with real assertions were introduced. 62 64 # Branches 5.8 and newer should be tested to confirm no regressions are introduced. 65 - branch: '6.3' 66 workflow: 'end-to-end-tests.yml' 63 67 - branch: '6.2' 64 68 workflow: 'end-to-end-tests.yml' … … 73 77 74 78 # Performance testing was introduced in 6.2. 79 - branch: '6.3' 80 workflow: 'performance.yml' 75 81 - branch: '6.2' 76 82 workflow: 'performance.yml' … … 80 86 - name: Dispatch workflow run 81 87 uses: actions/github-script@98814c53be79b1d30f795b907e553d8679345975 # v6.4.0 82 if: ${{ github.event_name == 'push' || github.event.schedule == '0 0 15 * *' || matrix.branch == '6. 2' }}88 if: ${{ github.event_name == 'push' || github.event.schedule == '0 0 15 * *' || matrix.branch == '6.3' }} 83 89 with: 84 90 retries: 2 -
trunk/SECURITY.md
r55670 r56267 11 11 | Version | Supported | 12 12 | ------- | --------- | 13 | 6.3.x | Yes | 13 14 | 6.2.x | Yes | 14 15 | 6.1.x | Yes | -
trunk/package-lock.json
r56255 r56267 1 1 { 2 2 "name": "WordPress", 3 "version": "6. 3.0",3 "version": "6.4.0", 4 4 "lockfileVersion": 1, 5 5 "requires": true, -
trunk/package.json
r56255 r56267 1 1 { 2 2 "name": "WordPress", 3 "version": "6. 3.0",3 "version": "6.4.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
r56265 r56267 17 17 * @global string $wp_version 18 18 */ 19 $wp_version = '6. 3-RC1-56265-src';19 $wp_version = '6.4-alpha-56267-src'; 20 20 21 21 /**
Note: See TracChangeset
for help on using the changeset viewer.