Skip to content

Commit 69df0b8

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/9873234993 Upstream-Ref: Automattic/jetpack@6a76be4
1 parent 1ffe2b9 commit 69df0b8

File tree

12 files changed

+71
-107
lines changed

12 files changed

+71
-107
lines changed

CHANGELOG.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,10 @@
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.12.3-alpha] - unreleased
9-
10-
This is an alpha version! The changes listed here are not final.
11-
12-
### Changed
13-
- Updated package dependencies.
14-
8+
## [1.12.3] - 2024-07-10
159
### Fixed
16-
- WPSC: Don't delete the log viewer when doing garbage collection
17-
- WPSC: fix clearing the cache when scheduled posts are published
10+
- Don't delete the log viewer when doing garbage collection [#38276]
11+
- Fix clearing the cache when scheduled posts are published [#38263]
1812

1913
## [1.12.2] - 2024-06-27
2014
### Added
@@ -763,7 +757,7 @@ This is an alpha version! The changes listed here are not final.
763757

764758
Misc fixes
765759

766-
[1.12.3-alpha]: https://github.com/Automattic/wp-super-cache/compare/v1.12.2...v1.12.3-alpha
760+
[1.12.3]: https://github.com/Automattic/wp-super-cache/compare/v1.12.2...v1.12.3
767761
[1.12.2]: https://github.com/Automattic/wp-super-cache/compare/v1.12.1...v1.12.2
768762
[1.12.1]: https://github.com/Automattic/wp-super-cache/compare/v1.12.0...v1.12.1
769763
[1.12.0]: https://github.com/Automattic/wp-super-cache/compare/v1.11.0...v1.12.0

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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_12_3_alpha"
46+
"autoloader-suffix": "6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_12_3"
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.12.3-alpha",
4+
"version": "1.12.3",
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: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -268,26 +268,10 @@ Your theme is probably responsive which means it resizes the page to suit whatev
268268

269269

270270
== Changelog ==
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-
277-
#### Changed
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
281-
271+
### 1.12.3 - 2024-07-10
282272
#### Fixed
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
273+
- Don't delete the log viewer when doing garbage collection
274+
- Fix clearing the cache when scheduled posts are published
291275

292276
--------
293277

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_12_3_alpha::getLoader();
25+
return ComposerAutoloaderInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_12_3::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"
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_12_3_alpha
5+
class ComposerAutoloaderInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_12_3
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_12_3_alpha', 'loadClassLoader'), true, true);
27+
spl_autoload_register(array('ComposerAutoloaderInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_12_3', 'loadClassLoader'), true, true);
2828
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
29-
spl_autoload_unregister(array('ComposerAutoloaderInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_12_3_alpha', 'loadClassLoader'));
29+
spl_autoload_unregister(array('ComposerAutoloaderInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_12_3', 'loadClassLoader'));
3030

3131
require __DIR__ . '/autoload_static.php';
32-
call_user_func(\Composer\Autoload\ComposerStaticInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_12_3_alpha::getInitializer($loader));
32+
call_user_func(\Composer\Autoload\ComposerStaticInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_12_3::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_12_3_alpha
7+
class ComposerStaticInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_12_3
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_12_3_al
1515
public static function getInitializer(ClassLoader $loader)
1616
{
1717
return \Closure::bind(function () use ($loader) {
18-
$loader->classMap = ComposerStaticInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_12_3_alpha::$classMap;
18+
$loader->classMap = ComposerStaticInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_12_3::$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": "5b2dd9953d16c3edcdc614c521c530d787b0a7ed"
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",
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)