Skip to content

Commit 0f4519a

Browse files
tbradshamatticbot
authored andcommitted
Changelog and readme.txt edits. (#45468)
Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/18415002694 Upstream-Ref: Automattic/jetpack@061b9b1
1 parent cb48039 commit 0f4519a

File tree

8 files changed

+22
-21
lines changed

8 files changed

+22
-21
lines changed

CHANGELOG.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,16 @@
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.2-alpha] - unreleased
9-
10-
This is an alpha version! The changes listed here are not final.
11-
8+
## [3.0.2] - 2025-10-10
129
### Added
13-
- Added typecheck support for E2E tests.
10+
- Add typecheck support for E2E tests. [#44788]
1411

1512
### Changed
16-
- Update package dependencies.
17-
- Use wp_rand() instead of rand() and mt_rand().
13+
- Update package dependencies. [#44725] [#44873] [#44898] [#45096] [#45097] [#45159]
14+
- Use `wp_rand()` instead of `rand()` and `mt_rand()`. [#44964]
1815

1916
### Fixed
20-
- Code: Resolve PhanImpossibleCondition violations.
17+
- Code: Resolve PhanImpossibleCondition violations. [#44869]
2118

2219
## [3.0.1] - 2025-08-05
2320
### Added
@@ -823,7 +820,7 @@ This is an alpha version! The changes listed here are not final.
823820

824821
Misc fixes
825822

826-
[3.0.2-alpha]: https://github.com/Automattic/wp-super-cache/compare/v3.0.1...v3.0.2-alpha
823+
[3.0.2]: https://github.com/Automattic/wp-super-cache/compare/v3.0.1...v3.0.2
827824
[3.0.1]: https://github.com/Automattic/wp-super-cache/compare/v3.0.0...v3.0.1
828825
[3.0.0]: https://github.com/Automattic/wp-super-cache/compare/v2.0.1...v3.0.0
829826
[2.0.1]: https://github.com/Automattic/wp-super-cache/compare/v2.0.0...v2.0.1

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@
4646
"wp-svn-autopublish": true
4747
},
4848
"config": {
49-
"autoloader-suffix": "6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ3_0_2_alpha"
49+
"autoloader-suffix": "6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ3_0_2"
5050
}
5151
}

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.2-alpha",
3+
"version": "3.0.2",
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: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,12 +268,16 @@ Your theme is probably responsive which means it resizes the page to suit whatev
268268

269269

270270
== Changelog ==
271-
### 3.0.1 - 2025-08-05
271+
### 3.0.2 - 2025-10-10
272272
#### Added
273-
- Caching: Ignore Yandex parameters so those visitors are served from the cache.
273+
- Add typecheck support for E2E tests.
274274

275275
#### Changed
276276
- Update package dependencies.
277+
- Use `wp_rand()` instead of `rand()` and `mt_rand()`.
278+
279+
#### Fixed
280+
- Code: Resolve PhanImpossibleCondition violations.
277281

278282
--------
279283

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

3131
require __DIR__ . '/autoload_static.php';
32-
call_user_func(\Composer\Autoload\ComposerStaticInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ3_0_2_alpha::getInitializer($loader));
32+
call_user_func(\Composer\Autoload\ComposerStaticInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ3_0_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ⓥ3_0_2_alpha
7+
class ComposerStaticInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ3_0_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ⓥ3_0_2_alp
1515
public static function getInitializer(ClassLoader $loader)
1616
{
1717
return \Closure::bind(function () use ($loader) {
18-
$loader->classMap = ComposerStaticInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ3_0_2_alpha::$classMap;
18+
$loader->classMap = ComposerStaticInit6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ3_0_2::$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.2-alpha
6+
* Version: 3.0.2
77
* Author: Automattic
88
* Author URI: https://automattic.com/
99
* License: GPL2+

0 commit comments

Comments
 (0)