Skip to content

Commit edcde50

Browse files
donnchawpmatticbot
authored andcommitted
Updated package versions for automattic/wp-super-cache
Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/9698088322 Upstream-Ref: Automattic/jetpack@981643a
1 parent b97e5e3 commit edcde50

File tree

12 files changed

+98
-104
lines changed

12 files changed

+98
-104
lines changed

CHANGELOG.md

Lines changed: 16 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,26 @@
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-
## [1.13.0-alpha] - unreleased
9-
10-
This is an alpha version! The changes listed here are not final.
11-
8+
## [1.12.2] - 2024-06-27
129
### Added
13-
- Super Cache: add an admin notice to encourage migration to Jetpack Boost
14-
- Super Cache: modify boost install code so it can be used by multiple buttons
15-
- Super Cache: notify Boost of migration to that plugin
10+
- add an admin notice to encourage migration to Jetpack Boost [#37933]
11+
- modify boost install code so it can be used by multiple buttons [#37824]
12+
- notify Boost of migration to that plugin [#37797]
1613

1714
### Changed
18-
- General: indicate compatibility with the upcoming version of WordPress - 6.6.
19-
- Super Cache: tell user that Cache module of Boost must be deactivated to use WPSC
20-
- Updated package dependencies.
21-
- WP Super Cache: Updated banner designs, added auto-install Jetpack Boost buttons
15+
- General: indicate compatibility with the upcoming version of WordPress - 6.6. [#37962]
16+
- tell user that Cache module of Boost must be deactivated to use WPSC [#37265]
17+
- WP Updated banner designs, added auto-install Jetpack Boost buttons [#37963]
2218

2319
### Fixed
24-
- Detect when WP_CACHE is defined with "const" in wp-config.php
25-
- Super Cache: Align detection of Boost installs with activation of that plugin
26-
- Super Cache: create the cache directory before creating the config file
27-
- Super Cache: do not show migration notice if already using Boost Cache
28-
- Super Cache: fixed a PHP warning when deactivating the plugin.
29-
- Super Cache: make sure plugins links is an array before using it.
30-
- Super Cache: remove the preload interval based on the post count. Preload as often as you want.
31-
- Super Cache: renamed WPSC_VERSION because it conflicted with other plugins
20+
- Detect when WP_CACHE is defined with "const" in wp-config.php [#38022]
21+
- Align detection of Boost installs with activation of that plugin [#37896]
22+
- create the cache directory before creating the config file [#38028]
23+
- do not show migration notice if already using Boost Cache [#38005]
24+
- fixed a PHP warning when deactivating the plugin. [#37968]
25+
- make sure plugins links is an array before using it. [#37604]
26+
- remove the preload interval based on the post count. Preload as often as you want. [#37618]
27+
- renamed WPSC_VERSION because it conflicted with other plugins [#38007]
3228

3329
## [1.12.1] - 2024-05-09
3430
### Changed
@@ -756,7 +752,7 @@ This is an alpha version! The changes listed here are not final.
756752

757753
Misc fixes
758754

759-
[1.13.0-alpha]: https://github.com/Automattic/wp-super-cache/compare/v1.12.1...v1.13.0-alpha
755+
[1.12.2]: https://github.com/Automattic/wp-super-cache/compare/v1.12.1...v1.12.2
760756
[1.12.1]: https://github.com/Automattic/wp-super-cache/compare/v1.12.0...v1.12.1
761757
[1.12.0]: https://github.com/Automattic/wp-super-cache/compare/v1.11.0...v1.12.0
762758
[1.11.0]: https://github.com/Automattic/wp-super-cache/compare/v1.10.0...v1.11.0

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"require-dev": {
1010
"yoast/phpunit-polyfills": "1.1.0",
11-
"automattic/jetpack-changelogger": "^4.2.5-alpha"
11+
"automattic/jetpack-changelogger": "^4.2.5"
1212
},
1313
"autoload": {
1414
"classmap": [
@@ -28,6 +28,7 @@
2828
"build-production": "echo 'Add your build step to composer.json, please!'",
2929
"build-development": "echo 'Add your build step to composer.json, please!'"
3030
},
31+
"repositories": [],
3132
"minimum-stability": "dev",
3233
"prefer-stable": true,
3334
"extra": {
@@ -42,6 +43,6 @@
4243
"wp-svn-autopublish": true
4344
},
4445
"config": {
45-
"autoloader-suffix": "6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_13_0_alpha"
46+
"autoloader-suffix": "6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_12_2"
4647
}
4748
}

composer.lock

Lines changed: 35 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

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

readme.txt

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -268,14 +268,26 @@ Your theme is probably responsive which means it resizes the page to suit whatev
268268

269269

270270
== Changelog ==
271-
### 1.12.1 - 2024-05-09
271+
### 1.12.2 - 2024-06-27
272+
#### Added
273+
- add an admin notice to encourage migration to Jetpack Boost
274+
- modify boost install code so it can be used by multiple buttons
275+
- notify Boost of migration to that plugin
276+
272277
#### Changed
273-
- General: update WordPress version requirements to WordPress 6.4.
274-
- General: use wp_admin_notice function introduced in WP 6.4 to display notices.
278+
- General: indicate compatibility with the upcoming version of WordPress - 6.6.
279+
- tell user that Cache module of Boost must be deactivated to use WPSC
280+
- WP Updated banner designs, added auto-install Jetpack Boost buttons
275281

276282
#### Fixed
277-
- Fix the CDN functionality when cache is disabled
278-
- Do not define DONOTCACHEPAGE if it is already defined
283+
- Detect when WP_CACHE is defined with "const" in wp-config.php
284+
- Align detection of Boost installs with activation of that plugin
285+
- create the cache directory before creating the config file
286+
- do not show migration notice if already using Boost Cache
287+
- fixed a PHP warning when deactivating the plugin.
288+
- make sure plugins links is an array before using it.
289+
- remove the preload interval based on the post count. Preload as often as you want.
290+
- renamed WPSC_VERSION because it conflicted with other plugins
279291

280292
--------
281293

vendor/autoload.php

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

2323
require_once __DIR__ . '/composer/autoload_real.php';
2424

25-
return ComposerAutoloaderInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_13_0_alpha::getLoader();
25+
return ComposerAutoloaderInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_12_2::getLoader();

vendor/automattic/jetpack-device-detection/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"require-dev": {
1010
"yoast/phpunit-polyfills": "1.1.0",
11-
"automattic/jetpack-changelogger": "^4.2.5-alpha"
11+
"automattic/jetpack-changelogger": "^4.1.2"
1212
},
1313
"suggest": {
1414
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."

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ⓥ1_13_0_alpha
5+
class ComposerAutoloaderInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_12_2
66
{
77
private static $loader;
88

@@ -24,12 +24,12 @@ public static function getLoader()
2424

2525
require __DIR__ . '/platform_check.php';
2626

27-
spl_autoload_register(array('ComposerAutoloaderInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_13_0_alpha', 'loadClassLoader'), true, true);
27+
spl_autoload_register(array('ComposerAutoloaderInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_12_2', 'loadClassLoader'), true, true);
2828
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
29-
spl_autoload_unregister(array('ComposerAutoloaderInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_13_0_alpha', 'loadClassLoader'));
29+
spl_autoload_unregister(array('ComposerAutoloaderInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_12_2', 'loadClassLoader'));
3030

3131
require __DIR__ . '/autoload_static.php';
32-
call_user_func(\Composer\Autoload\ComposerStaticInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_13_0_alpha::getInitializer($loader));
32+
call_user_func(\Composer\Autoload\ComposerStaticInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_12_2::getInitializer($loader));
3333

3434
$loader->setClassMapAuthoritative(true);
3535
$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ⓥ1_13_0_alpha
7+
class ComposerStaticInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_12_2
88
{
99
public static $classMap = array (
1010
'Automattic\\Jetpack\\Device_Detection' => __DIR__ . '/..' . '/automattic/jetpack-device-detection/src/class-device-detection.php',
@@ -15,7 +15,7 @@ class ComposerStaticInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_13_0_al
1515
public static function getInitializer(ClassLoader $loader)
1616
{
1717
return \Closure::bind(function () use ($loader) {
18-
$loader->classMap = ComposerStaticInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_13_0_alpha::$classMap;
18+
$loader->classMap = ComposerStaticInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_12_2::$classMap;
1919

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

vendor/composer/installed.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,30 @@
22
"packages": [
33
{
44
"name": "automattic/jetpack-device-detection",
5-
"version": "2.1.3",
5+
"version": "v2.1.3",
66
"version_normalized": "2.1.3.0",
7+
"source": {
8+
"type": "git",
9+
"url": "https://github.com/Automattic/jetpack-device-detection.git",
10+
"reference": "178cb2d0215d7446743a1654b0964a1d4ddfca8a"
11+
},
712
"dist": {
8-
"type": "path",
9-
"url": "/tmp/jetpack-build/Automattic/jetpack-device-detection",
10-
"reference": "917579bb98dccfb0440c8c4db8119d1cb4c24035"
13+
"type": "zip",
14+
"url": "https://api.github.com/repos/Automattic/jetpack-device-detection/zipball/178cb2d0215d7446743a1654b0964a1d4ddfca8a",
15+
"reference": "178cb2d0215d7446743a1654b0964a1d4ddfca8a",
16+
"shasum": ""
1117
},
1218
"require": {
1319
"php": ">=7.0"
1420
},
1521
"require-dev": {
16-
"automattic/jetpack-changelogger": "^4.2.5-alpha",
22+
"automattic/jetpack-changelogger": "^4.1.2",
1723
"yoast/phpunit-polyfills": "1.1.0"
1824
},
1925
"suggest": {
2026
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
2127
},
28+
"time": "2024-04-08T18:32:53+00:00",
2229
"type": "jetpack-library",
2330
"extra": {
2431
"autotagger": true,
@@ -36,20 +43,13 @@
3643
"src/"
3744
]
3845
},
39-
"scripts": {
40-
"phpunit": [
41-
"./vendor/phpunit/phpunit/phpunit --colors=always"
42-
],
43-
"test-php": [
44-
"@composer phpunit"
45-
]
46-
},
46+
"notification-url": "https://packagist.org/downloads/",
4747
"license": [
4848
"GPL-2.0-or-later"
4949
],
5050
"description": "A way to detect device types based on User-Agent header.",
51-
"transport-options": {
52-
"relative": false
51+
"support": {
52+
"source": "https://github.com/Automattic/jetpack-device-detection/tree/v2.1.3"
5353
},
5454
"install-path": "../automattic/jetpack-device-detection"
5555
}

0 commit comments

Comments
 (0)