Skip to content

Commit

Permalink
Changelog and readme.txt edits.
Browse files Browse the repository at this point in the history
  • Loading branch information
donnchawp committed Jun 27, 2024
1 parent 28249a7 commit 14a41db
Show file tree
Hide file tree
Showing 29 changed files with 48 additions and 102 deletions.
5 changes: 5 additions & 0 deletions projects/packages/changelogger/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [4.2.5] - 2024-06-27
### Changed
- Skip querying `git` in `changelogger version` command. We don't need the timestamp or PR number for that operation. [#38074]

## [4.2.4] - 2024-05-20
### Changed
- Internal updates.
Expand Down Expand Up @@ -236,6 +240,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
### Added
- Initial version.

[4.2.5]: https://github.com/Automattic/jetpack-changelogger/compare/4.2.4...4.2.5
[4.2.4]: https://github.com/Automattic/jetpack-changelogger/compare/4.2.3...4.2.4
[4.2.3]: https://github.com/Automattic/jetpack-changelogger/compare/4.2.2...4.2.3
[4.2.2]: https://github.com/Automattic/jetpack-changelogger/compare/4.2.1...4.2.2
Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion projects/packages/changelogger/src/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/
class Application extends SymfonyApplication {

const VERSION = '4.2.5-alpha';
const VERSION = '4.2.5';

/**
* Constructor.
Expand Down
22 changes: 22 additions & 0 deletions projects/plugins/super-cache/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,27 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.12.2] - 2024-06-27
### Added
- add an admin notice to encourage migration to Jetpack Boost [#37933]
- modify boost install code so it can be used by multiple buttons [#37824]
- notify Boost of migration to that plugin [#37797]

### Changed
- General: indicate compatibility with the upcoming version of WordPress - 6.6. [#37962]
- tell user that Cache module of Boost must be deactivated to use WPSC [#37265]
- WP Updated banner designs, added auto-install Jetpack Boost buttons [#37963]

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

## [1.12.1] - 2024-05-09
### Changed
- General: update WordPress version requirements to WordPress 6.4. [#37047]
Expand Down Expand Up @@ -731,6 +752,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Misc fixes

[1.12.2]: https://github.com/Automattic/wp-super-cache/compare/v1.12.1...v1.12.2
[1.12.1]: https://github.com/Automattic/wp-super-cache/compare/v1.12.0...v1.12.1
[1.12.0]: https://github.com/Automattic/wp-super-cache/compare/v1.11.0...v1.12.0
[1.11.0]: https://github.com/Automattic/wp-super-cache/compare/v1.10.0...v1.11.0
Expand Down

This file was deleted.

5 changes: 0 additions & 5 deletions projects/plugins/super-cache/changelog/cast_to_int

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

5 changes: 0 additions & 5 deletions projects/plugins/super-cache/changelog/init-release-cycle

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

4 changes: 0 additions & 4 deletions projects/plugins/super-cache/changelog/update-tested-to-6-6

This file was deleted.

2 changes: 1 addition & 1 deletion projects/plugins/super-cache/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@
"wp-svn-autopublish": true
},
"config": {
"autoloader-suffix": "6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_13_0_alpha"
"autoloader-suffix": "6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ1_12_2"
}
}
2 changes: 1 addition & 1 deletion projects/plugins/super-cache/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@automattic/jetpack-super-cache",
"version": "1.13.0-alpha",
"version": "1.12.2",
"description": "A very fast caching engine for WordPress that produces static html files.",
"homepage": "https://jetpack.com",
"bugs": {
Expand Down
22 changes: 17 additions & 5 deletions projects/plugins/super-cache/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -268,14 +268,26 @@ Your theme is probably responsive which means it resizes the page to suit whatev


== Changelog ==
### 1.12.1 - 2024-05-09
### 1.12.2 - 2024-06-27
#### Added
- add an admin notice to encourage migration to Jetpack Boost
- modify boost install code so it can be used by multiple buttons
- notify Boost of migration to that plugin

#### Changed
- General: update WordPress version requirements to WordPress 6.4.
- General: use wp_admin_notice function introduced in WP 6.4 to display notices.
- General: indicate compatibility with the upcoming version of WordPress - 6.6.
- tell user that Cache module of Boost must be deactivated to use WPSC
- WP Updated banner designs, added auto-install Jetpack Boost buttons

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

--------

Expand Down
2 changes: 1 addition & 1 deletion projects/plugins/super-cache/wp-cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: WP Super Cache
* Plugin URI: https://wordpress.org/plugins/wp-super-cache/
* Description: Very fast caching plugin for WordPress.
* Version: 1.13.0-alpha
* Version: 1.12.2
* Author: Automattic
* Author URI: https://automattic.com/
* License: GPL2+
Expand Down

0 comments on commit 14a41db

Please sign in to comment.