From f0b8f63bf74c4c2110f0f2e6a304e7365712ff93 Mon Sep 17 00:00:00 2001 From: Fellyph Cintra Date: Fri, 29 Aug 2025 23:09:40 +0200 Subject: [PATCH 1/2] Adding new supported wp versions --- packages/docs/site/docs/blueprints/03-data-format.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/docs/site/docs/blueprints/03-data-format.md b/packages/docs/site/docs/blueprints/03-data-format.md index 9e264330ac..ab7bbc0c69 100644 --- a/packages/docs/site/docs/blueprints/03-data-format.md +++ b/packages/docs/site/docs/blueprints/03-data-format.md @@ -56,13 +56,13 @@ The `landingPage` property tells Playground which URL to navigate to after the B The `preferredVersions` property declares your preferred PHP and WordPress versions. It can contain the following properties: - `php` (string): Loads the specified PHP version. Accepts `7.0`, `7.1`, `7.2`, `7.3`, `7.4`, `8.0`, `8.1`, `8.2`, `8.3`, `8.4`, or `latest`. Minor versions like `7.4.1` are not supported. -- `wp` (string): Loads the specified WordPress version. Accepts the last four major WordPress versions. As of June 1, 2024, that's `6.2`, `6.3`, `6.4`, or `6.5`. You can also use the generic values `latest`, `nightly`, or `beta`. To use a pre-release version of WordPress, `beta` will load the latest beta or release candidate versions of a release cycle (Beta or RC). +- `wp` (string): Loads the specified WordPress version. Accepts the last six major WordPress versions. As of June 1, 2024, that's `6.3`, `6.4`, `6.5`, `6.6`, `6.7` or `6.8`. You can also use the generic values `latest`, `nightly`, or `beta`. To use a pre-release version of WordPress, `beta` will load the latest beta or release candidate versions of a release cycle (Beta or RC). ```js { "preferredVersions": { - "php": "8.0", - "wp": "6.5" + "php": "8.3", + "wp": "6.7" }, } ``` From 13437e55169ccb124d4d1004c7a4556fa955d0cf Mon Sep 17 00:00:00 2001 From: Fellyph Cintra Date: Fri, 29 Aug 2025 23:10:33 +0200 Subject: [PATCH 2/2] updating last check time --- packages/docs/site/docs/blueprints/03-data-format.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/site/docs/blueprints/03-data-format.md b/packages/docs/site/docs/blueprints/03-data-format.md index ab7bbc0c69..dd18fcd13e 100644 --- a/packages/docs/site/docs/blueprints/03-data-format.md +++ b/packages/docs/site/docs/blueprints/03-data-format.md @@ -56,7 +56,7 @@ The `landingPage` property tells Playground which URL to navigate to after the B The `preferredVersions` property declares your preferred PHP and WordPress versions. It can contain the following properties: - `php` (string): Loads the specified PHP version. Accepts `7.0`, `7.1`, `7.2`, `7.3`, `7.4`, `8.0`, `8.1`, `8.2`, `8.3`, `8.4`, or `latest`. Minor versions like `7.4.1` are not supported. -- `wp` (string): Loads the specified WordPress version. Accepts the last six major WordPress versions. As of June 1, 2024, that's `6.3`, `6.4`, `6.5`, `6.6`, `6.7` or `6.8`. You can also use the generic values `latest`, `nightly`, or `beta`. To use a pre-release version of WordPress, `beta` will load the latest beta or release candidate versions of a release cycle (Beta or RC). +- `wp` (string): Loads the specified WordPress version. Accepts the last six major WordPress versions. As of September 1, 2025, that's `6.3`, `6.4`, `6.5`, `6.6`, `6.7` or `6.8`. You can also use the generic values `latest`, `nightly`, or `beta`. To use a pre-release version of WordPress, `beta` will load the latest beta or release candidate versions of a release cycle (Beta or RC). ```js {