Skip to content

Commit 38674dc

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/9018968524 Upstream-Ref: Automattic/jetpack@379816c
1 parent f96b63e commit 38674dc

File tree

12 files changed

+75
-112
lines changed

12 files changed

+75
-112
lines changed

CHANGELOG.md

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,14 @@
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.1-alpha] - unreleased
9-
10-
This is an alpha version! The changes listed here are not final.
11-
8+
## [1.12.1] - 2024-05-09
129
### Changed
13-
- General: update WordPress version requirements to WordPress 6.4.
14-
- General: use wp_admin_notice function introduced in WP 6.4 to display notices.
15-
- Updated package dependencies.
10+
- General: update WordPress version requirements to WordPress 6.4. [#37047]
11+
- General: use wp_admin_notice function introduced in WP 6.4 to display notices. [#37051]
1612

1713
### Fixed
18-
- Super-cache: Fix the CDN functionality when cache is disabled
19-
- WP Super Cache: do not define DONOTCACHEPAGE if it is already defined
14+
- Fix the CDN functionality when cache is disabled [#37112]
15+
- Do not define DONOTCACHEPAGE if it is already defined [#36423]
2016

2117
## [1.12.0] - 2024-03-11
2218
### Added
@@ -735,7 +731,7 @@ This is an alpha version! The changes listed here are not final.
735731

736732
Misc fixes
737733

738-
[1.12.1-alpha]: https://github.com/Automattic/wp-super-cache/compare/v1.12.0...v1.12.1-alpha
734+
[1.12.1]: https://github.com/Automattic/wp-super-cache/compare/v1.12.0...v1.12.1
739735
[1.12.0]: https://github.com/Automattic/wp-super-cache/compare/v1.11.0...v1.12.0
740736
[1.11.0]: https://github.com/Automattic/wp-super-cache/compare/v1.10.0...v1.11.0
741737
[1.10.0]: https://github.com/Automattic/wp-super-cache/compare/v1.9.4...v1.10.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_1_alpha"
46+
"autoloader-suffix": "6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_12_1"
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.1-alpha",
4+
"version": "1.12.1",
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: 5 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -268,33 +268,14 @@ Your theme is probably responsive which means it resizes the page to suit whatev
268268

269269

270270
== Changelog ==
271-
### 1.12.0 - 2024-03-11
272-
#### Added
273-
- Setup: Detect Jetpack Boost cache and suggest troubleshooting steps
274-
- WP Super Cache: added WPSC_PRELOAD_POST_INTERVAL and WPSC_PRELOAD_LOOP_INTERVAL to modify preload timings
275-
271+
### 1.12.1 - 2024-05-09
276272
#### Changed
277-
- Code Modernization: Replace usage of strpos() with str_contains()
278-
- Code Modernization: Replace usage of strpos() with str_starts_with().
279-
- Code Modernization: Replace usage of substr() with str_starts_with() and str_ends_with().
280-
- Fix blurry Automattic logo.
281-
- General: avoid deprecation warnings when trying to get URLs in PHP 8.2
282-
- General: indicate compatibility with the upcoming version of WordPress, 6.5.
283-
- General: updated PHP requirement to PHP 7.0+
284-
- General: update WordPress version requirements to WordPress 6.3.
285-
- WP Super Cache: check for Boost Cache when creating advanced-cache.php
286-
- WP Super Cache: fixed labels on advanced settings page
287-
- WP Super Cache: remove notifications that preload started working again.
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.
288275

289276
#### Fixed
290-
- Supercache: add "days" to "Next preload scheduled" message.
291-
- Super Cache: with rebuild enabled, apply that to subdirectories instead of deleting them.
292-
- WP Super Cache - fix the wp_super_cache_clear_post_cache filter so the homepage cache isn't deleted too.
293-
- WP Super Cache: bail if the request uri isn't set. It means the plugin isn't configured yet.
294-
- WP Super Cache: don't create an output buffer if there's already one active
295-
- WP Super Cache: fixed serving a cached page on POST with late init enabled.
296-
- WP Super Cache: fix the output buffer check, and make debug logs pre-formatted.
297-
- WP Super Cache: if the preload number of posts is not in the list, then add it
277+
- Fix the CDN functionality when cache is disabled
278+
- Do not define DONOTCACHEPAGE if it is already defined
298279

299280
--------
300281

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

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