Skip to content

Commit 9ca214c

Browse files
anomiexmatticbot
authored andcommitted
General: Update minimum WordPress version to 6.8 (#46801)
This updates the minimum WordPress version for our plugins (other than CRM and VaultPress) to 6.8, as we support only the current and previous versions. This is considered a "major change". TODOs and other compatibility code will be cleaned up in a subsequent PR. Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/21483736019 Upstream-Ref: Automattic/jetpack@364c1e0
1 parent b190123 commit 9ca214c

8 files changed

Lines changed: 16 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,17 @@
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [3.0.4-alpha] - unreleased
8+
## [4.0.0-alpha] - unreleased
99

1010
This is an alpha version! The changes listed here are not final.
1111

1212
### Changed
1313
- Device Detection: use an embedded version instead of the Composer dependency
1414
- Update package dependencies.
1515

16+
### Removed
17+
- General: Update minimum WordPress version to 6.8.
18+
1619
### Fixed
1720
- Ensure proper flags are used with `json_encode()`.
1821

@@ -842,7 +845,7 @@ This is an alpha version! The changes listed here are not final.
842845

843846
Misc fixes
844847

845-
[3.0.4-alpha]: https://github.com/Automattic/wp-super-cache/compare/v3.0.3...v3.0.4-alpha
848+
[4.0.0-alpha]: https://github.com/Automattic/wp-super-cache/compare/v3.0.3...v4.0.0-alpha
846849
[3.0.3]: https://github.com/Automattic/wp-super-cache/compare/v3.0.2...v3.0.3
847850
[3.0.2]: https://github.com/Automattic/wp-super-cache/compare/v3.0.1...v3.0.2
848851
[3.0.1]: https://github.com/Automattic/wp-super-cache/compare/v3.0.0...v3.0.1

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@
4343
"wp-svn-autopublish": true
4444
},
4545
"config": {
46-
"autoloader-suffix": "6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ3_0_4_alpha"
46+
"autoloader-suffix": "6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ4_0_0_alpha"
4747
}
4848
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@automattic/jetpack-super-cache",
3-
"version": "3.0.4-alpha",
3+
"version": "4.0.0-alpha",
44
"private": true,
55
"description": "A very fast caching engine for WordPress that produces static html files.",
66
"homepage": "https://jetpack.com",

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
=== WP Super Cache ===
22
Contributors: donncha, automattic, adnan007, dilirity, mikemayhem3030, pyronaur, thingalon
33
Tags: performance, caching, wp-cache, wp-super-cache, cache
4-
Requires at least: 6.7
4+
Requires at least: 6.8
55
Requires PHP: 7.2
66
Tested up to: 6.9
77
Stable tag: 3.0.3

vendor/autoload.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919

2020
require_once __DIR__ . '/composer/autoload_real.php';
2121

22-
return ComposerAutoloaderInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ3_0_4_alpha::getLoader();
22+
return ComposerAutoloaderInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ4_0_0_alpha::getLoader();

vendor/composer/autoload_real.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
// autoload_real.php @generated by Composer
44

5-
class ComposerAutoloaderInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ3_0_4_alpha
5+
class ComposerAutoloaderInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ4_0_0_alpha
66
{
77
private static $loader;
88

@@ -22,12 +22,12 @@ public static function getLoader()
2222
return self::$loader;
2323
}
2424

25-
spl_autoload_register(array('ComposerAutoloaderInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ3_0_4_alpha', 'loadClassLoader'), true, true);
25+
spl_autoload_register(array('ComposerAutoloaderInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ4_0_0_alpha', 'loadClassLoader'), true, true);
2626
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
27-
spl_autoload_unregister(array('ComposerAutoloaderInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ3_0_4_alpha', 'loadClassLoader'));
27+
spl_autoload_unregister(array('ComposerAutoloaderInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ4_0_0_alpha', 'loadClassLoader'));
2828

2929
require __DIR__ . '/autoload_static.php';
30-
call_user_func(\Composer\Autoload\ComposerStaticInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ3_0_4_alpha::getInitializer($loader));
30+
call_user_func(\Composer\Autoload\ComposerStaticInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ4_0_0_alpha::getInitializer($loader));
3131

3232
$loader->setClassMapAuthoritative(true);
3333
$loader->register(true);

vendor/composer/autoload_static.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace Composer\Autoload;
66

7-
class ComposerStaticInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ3_0_4_alpha
7+
class ComposerStaticInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ4_0_0_alpha
88
{
99
public static $classMap = array (
1010
'Automattic\\WPSC\\Device_Detection' => __DIR__ . '/../..' . '/src/device-detection/class-device-detection.php',
@@ -15,7 +15,7 @@ class ComposerStaticInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ3_0_4_alp
1515
public static function getInitializer(ClassLoader $loader)
1616
{
1717
return \Closure::bind(function () use ($loader) {
18-
$loader->classMap = ComposerStaticInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ3_0_4_alpha::$classMap;
18+
$loader->classMap = ComposerStaticInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ4_0_0_alpha::$classMap;
1919

2020
}, null, ClassLoader::class);
2121
}

wp-cache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: WP Super Cache
44
* Plugin URI: https://wordpress.org/plugins/wp-super-cache/
55
* Description: Very fast caching plugin for WordPress.
6-
* Version: 3.0.4-alpha
6+
* Version: 4.0.0-alpha
77
* Author: Automattic
88
* Author URI: https://automattic.com/
99
* License: GPL2+

0 commit comments

Comments
 (0)