Skip to content

Commit

Permalink
Updated package versions for automattic/jetpack-boost
Browse files Browse the repository at this point in the history
  • Loading branch information
haqadn authored and matticbot committed Jun 10, 2024
1 parent bf0c47f commit 1442e73
Show file tree
Hide file tree
Showing 54 changed files with 839 additions and 981 deletions.
26 changes: 12 additions & 14 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,20 @@ All notable changes to this project will be documented in this file.
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).

## [3.4.0-alpha] - unreleased

This is an alpha version! The changes listed here are not final.

## [3.4.0] - 2024-06-10
### Added
- Boost: added cache rebuild functionality
- Boost: remove the advanced-cache.php when the Cache module is disabled
- Cache: Allow easy migration from WPSC to Boost Cache
- Critical CSS: Add a friendly error if css gen library is broken/missing.
- Page Cache: Added cache rebuild functionality. [#37151]
- Page Cache: Remove the advanced-cache.php when the Cache module is disabled. [#37643]
- Page Cache: Allow easy migration from WPSC to Boost Cache. [#36818]
- Critical CSS: Add a friendly error if css gen library is broken or missing. [#37283]

### Changed
- Critical CSS: Improve source providers collecting logic.
- Critical CSS: Improve UI when errors are present.
- Minification: Skip files ending in `.min.js` and `.min.css` from minification
- Remove the explicit Plugin Install dependency.
- Updated package dependencies.
- Critical CSS: Improve source providers collecting logic. [#37095]
- Critical CSS: Improve UI when errors are present. [#37658]
- Minification: Change minification library. [#37700]
- Minification: Skip files ending in `.min.js` and `.min.css` from minification. [#37700]
- Dependency: Remove the explicit Plugin Install dependency. [#37430]
- Dependency: Updated package dependencies. [#37348] [#37379] [#37380] [#37669]

## [3.3.1] - 2024-05-15
### Fixed
Expand Down Expand Up @@ -458,7 +456,7 @@ This is an alpha version! The changes listed here are not final.

- First public alpha release

[3.4.0-alpha]: https://github.com/Automattic/jetpack-boost-production/compare/3.3.1...3.4.0-alpha
[3.4.0]: https://github.com/Automattic/jetpack-boost-production/compare/3.3.1...3.4.0
[3.3.1]: https://github.com/Automattic/jetpack-boost-production/compare/3.3.0...3.3.1
[3.3.0]: https://github.com/Automattic/jetpack-boost-production/compare/3.2.2...3.3.0
[3.2.2]: https://github.com/Automattic/jetpack-boost-production/compare/3.2.0...3.2.2
Expand Down
13 changes: 7 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Boost your WordPress site's performance, from the creators of Jetpack",
"type": "library",
"license": "GPL-2.0-or-later",
"version": "3.4.0-alpha",
"version": "3.4.0",
"authors": [
{
"name": "Automattic, Inc.",
Expand All @@ -21,13 +21,13 @@
"automattic/jetpack-boost-speed-score": "^0.3.11",
"automattic/jetpack-composer-plugin": "^2.0.2",
"automattic/jetpack-config": "^2.0.3",
"automattic/jetpack-connection": "^2.10.0-alpha",
"automattic/jetpack-connection": "^2.10.0",
"automattic/jetpack-device-detection": "^2.1.3",
"automattic/jetpack-image-cdn": "^0.4.1",
"automattic/jetpack-my-jetpack": "^4.24.4-alpha",
"automattic/jetpack-my-jetpack": "^4.24.4",
"automattic/jetpack-plugin-deactivation": "^0.2.1",
"automattic/jetpack-status": "^3.3.0-alpha",
"automattic/jetpack-sync": "^3.1.0-alpha",
"automattic/jetpack-status": "^3.3.0",
"automattic/jetpack-sync": "^3.1.0",
"automattic/jetpack-wp-js-data-sync": "^0.4.5",
"matthiasmullie/minify": "^1.3",
"tubalmartin/cssmin": "^4.1"
Expand Down Expand Up @@ -73,13 +73,14 @@
"platform": {
"ext-intl": "0.0.0"
},
"autoloader-suffix": "b1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_4_0_alpha",
"autoloader-suffix": "b1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_4_0",
"allow-plugins": {
"roots/wordpress-core-installer": true,
"automattic/jetpack-autoloader": true,
"automattic/jetpack-composer-plugin": true
}
},
"repositories": [],
"extra": {
"mirror-repo": "Automattic/jetpack-boost-production",
"autorelease": true,
Expand Down
4 changes: 2 additions & 2 deletions jetpack-boost.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Plugin Name: Jetpack Boost
* Plugin URI: https://jetpack.com/boost
* Description: Boost your WordPress site's performance, from the creators of Jetpack
* Version: 3.4.0-alpha
* Version: 3.4.0
* Author: Automattic - Jetpack Site Speed team
* Author URI: https://jetpack.com/boost/
* License: GPL-2.0+
Expand All @@ -29,7 +29,7 @@
die;
}

define( 'JETPACK_BOOST_VERSION', '3.4.0-alpha' );
define( 'JETPACK_BOOST_VERSION', '3.4.0' );
define( 'JETPACK_BOOST_SLUG', 'jetpack-boost' );

if ( ! defined( 'JETPACK_BOOST_CLIENT_NAME' ) ) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"require-dev": {
"yoast/phpunit-polyfills": "1.1.0",
"automattic/jetpack-changelogger": "^4.2.4"
"automattic/jetpack-changelogger": "^4.1.1"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
Expand Down
4 changes: 2 additions & 2 deletions jetpack_vendor/automattic/jetpack-admin-ui/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
},
"require-dev": {
"yoast/phpunit-polyfills": "1.1.0",
"automattic/jetpack-changelogger": "^4.2.4",
"automattic/jetpack-logo": "^2.0.3",
"automattic/jetpack-changelogger": "^4.2.2",
"automattic/jetpack-logo": "^2.0.2",
"automattic/wordbless": "dev-master"
},
"suggest": {
Expand Down
4 changes: 2 additions & 2 deletions jetpack_vendor/automattic/jetpack-boost-core/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"license": "GPL-2.0-or-later",
"require": {
"php": ">=7.0",
"automattic/jetpack-connection": "^2.10.0-alpha"
"automattic/jetpack-connection": "^2.7.6"
},
"require-dev": {
"yoast/phpunit-polyfills": "1.1.0",
"automattic/jetpack-changelogger": "^4.2.4",
"automattic/jetpack-changelogger": "^4.2.3",
"automattic/wordbless": "dev-master"
},
"autoload": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "GPL-2.0-or-later",
"require-dev": {
"yoast/phpunit-polyfills": "1.1.0",
"automattic/jetpack-changelogger": "^4.2.4",
"automattic/jetpack-changelogger": "^4.2.2",
"brain/monkey": "^2.6"
},
"autoload-dev": {
Expand All @@ -15,7 +15,7 @@
},
"require": {
"php": ">=7.0",
"automattic/jetpack-boost-core": "^0.2.7"
"automattic/jetpack-boost-core": "^0.2.6"
},
"autoload": {
"classmap": [
Expand Down
11 changes: 4 additions & 7 deletions jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,12 @@ All notable changes to this project will be documented in this file.
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).

## [2.10.0-alpha] - unreleased

This is an alpha version! The changes listed here are not final.

## [2.10.0] - 2024-06-10
### Added
- Staging: deprecating staging mode and separating the logic into is_development_site and in_safe_mode
- Staging: deprecating staging mode and separating the logic into is_development_site and in_safe_mode [#37023]

### Fixed
- Jetpack Connection: Add stricter check before updating 'jetpack_connection_active_plugins' option
- Jetpack Connection: Add stricter check before updating 'jetpack_connection_active_plugins' option [#37755]

## [2.9.3] - 2024-06-06
### Added
Expand Down Expand Up @@ -1114,7 +1111,7 @@ This is an alpha version! The changes listed here are not final.

- Separate the connection library into its own package.

[2.10.0-alpha]: https://github.com/Automattic/jetpack-connection/compare/v2.9.3...v2.10.0-alpha
[2.10.0]: https://github.com/Automattic/jetpack-connection/compare/v2.9.3...v2.10.0
[2.9.3]: https://github.com/Automattic/jetpack-connection/compare/v2.9.2...v2.9.3
[2.9.2]: https://github.com/Automattic/jetpack-connection/compare/v2.9.1...v2.9.2
[2.9.1]: https://github.com/Automattic/jetpack-connection/compare/v2.9.0...v2.9.1
Expand Down
2 changes: 1 addition & 1 deletion jetpack_vendor/automattic/jetpack-connection/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"automattic/jetpack-assets": "^2.1.12",
"automattic/jetpack-constants": "^2.0.3",
"automattic/jetpack-roles": "^2.0.2",
"automattic/jetpack-status": "^3.3.0-alpha",
"automattic/jetpack-status": "^3.3.0",
"automattic/jetpack-redirect": "^2.0.2"
},
"require-dev": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
class Package_Version {

const PACKAGE_VERSION = '2.10.0-alpha';
const PACKAGE_VERSION = '2.10.0';

const PACKAGE_SLUG = 'connection';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,14 +214,14 @@ public static function cant_find_user( $message ) {
* Error message that is displayed when the current site is in an identity crisis and SSO can not be used.
*
* @since jetpack-4.4.0
* @deprecated since 2.10.0-alpha
* @deprecated since 2.10.0
*
* @param string $message Error message.
*
* @return string
*/
public static function sso_not_allowed_in_staging( $message ) {
_deprecated_function( __FUNCTION__, '2.10.0-alpha', 'sso_not_allowed_in_safe_mode' );
_deprecated_function( __FUNCTION__, '2.10.0', 'sso_not_allowed_in_safe_mode' );
$error = __(
'Logging in with WordPress.com is disabled for sites that are in staging mode.',
'jetpack-connection'
Expand All @@ -244,7 +244,7 @@ public static function sso_not_allowed_in_staging( $message ) {
/**
* Error message that is displayed when the current site is in an identity crisis and SSO can not be used.
*
* @since 2.10.0-alpha
* @since 2.10.0
*
* @param string $message Error message.
*
Expand All @@ -261,7 +261,7 @@ public static function sso_not_allowed_in_safe_mode( $message ) {
*
* @module sso
*
* @since 2.10.0-alpha
* @since 2.10.0
*
* @param string $error Error text.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"require-dev": {
"yoast/phpunit-polyfills": "1.1.0",
"automattic/jetpack-changelogger": "^4.2.4"
"automattic/jetpack-changelogger": "^4.1.2"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
Expand Down
4 changes: 2 additions & 2 deletions jetpack_vendor/automattic/jetpack-image-cdn/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"license": "GPL-2.0-or-later",
"require": {
"php": ">=7.0",
"automattic/jetpack-assets": "^2.1.12",
"automattic/jetpack-status": "^3.3.0-alpha"
"automattic/jetpack-assets": "^2.1.11",
"automattic/jetpack-status": "^3.1.0"
},
"require-dev": {
"automattic/wordbless": "dev-master",
Expand Down
2 changes: 1 addition & 1 deletion jetpack_vendor/automattic/jetpack-ip/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"require-dev": {
"brain/monkey": "2.6.1",
"yoast/phpunit-polyfills": "1.1.0",
"automattic/jetpack-changelogger": "^4.2.4"
"automattic/jetpack-changelogger": "^4.1.1"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
Expand Down
4 changes: 2 additions & 2 deletions jetpack_vendor/automattic/jetpack-jitm/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
"php": ">=7.0",
"automattic/jetpack-a8c-mc-stats": "^2.0.1",
"automattic/jetpack-assets": "^2.1.12",
"automattic/jetpack-connection": "^2.10.0-alpha",
"automattic/jetpack-connection": "^2.9.2",
"automattic/jetpack-device-detection": "^2.1.3",
"automattic/jetpack-logo": "^2.0.3",
"automattic/jetpack-redirect": "^2.0.2",
"automattic/jetpack-status": "^3.3.0-alpha"
"automattic/jetpack-status": "^3.2.3"
},
"require-dev": {
"brain/monkey": "2.6.1",
Expand Down
4 changes: 2 additions & 2 deletions jetpack_vendor/automattic/jetpack-licensing/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
"license": "GPL-2.0-or-later",
"require": {
"php": ">=7.0",
"automattic/jetpack-connection": "^2.10.0-alpha"
"automattic/jetpack-connection": "^2.7.2"
},
"require-dev": {
"automattic/wordbless": "@dev",
"yoast/phpunit-polyfills": "1.1.0",
"automattic/jetpack-changelogger": "^4.2.4"
"automattic/jetpack-changelogger": "^4.2.2"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
Expand Down
13 changes: 5 additions & 8 deletions jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,13 @@ All notable changes to this project will be documented in this file.
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).

## [4.24.4-alpha] - unreleased

This is an alpha version! The changes listed here are not final.

## [4.24.4] - 2024-06-10
### Added
- Add mechanism to track previously working plugins
- Add mechanism to track previously working plugins [#37537]

### Changed
- Move PRODUCT_STATUSES to constants file
- Send user to siteless pricing page if site is not connected
- Move PRODUCT_STATUSES to constants file [#37748]
- Send user to siteless pricing page if site is not connected [#37667]

## [4.24.3] - 2024-06-05
### Changed
Expand Down Expand Up @@ -1506,7 +1503,7 @@ This is an alpha version! The changes listed here are not final.
### Added
- Created package

[4.24.4-alpha]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.24.3...4.24.4-alpha
[4.24.4]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.24.3...4.24.4
[4.24.3]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.24.2...4.24.3
[4.24.2]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.24.1...4.24.2
[4.24.1]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.24.0...4.24.1
Expand Down
4 changes: 2 additions & 2 deletions jetpack_vendor/automattic/jetpack-my-jetpack/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
"automattic/jetpack-admin-ui": "^0.4.2",
"automattic/jetpack-assets": "^2.1.12",
"automattic/jetpack-boost-speed-score": "^0.3.11",
"automattic/jetpack-connection": "^2.10.0-alpha",
"automattic/jetpack-connection": "^2.10.0",
"automattic/jetpack-jitm": "^3.1.12",
"automattic/jetpack-licensing": "^2.0.5",
"automattic/jetpack-plugins-installer": "^0.4.0",
"automattic/jetpack-redirect": "^2.0.2",
"automattic/jetpack-constants": "^2.0.3",
"automattic/jetpack-plans": "^0.4.7",
"automattic/jetpack-status": "^3.3.0-alpha"
"automattic/jetpack-status": "^3.3.0"
},
"require-dev": {
"yoast/phpunit-polyfills": "1.1.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class Initializer {
*
* @var string
*/
const PACKAGE_VERSION = '4.24.4-alpha';
const PACKAGE_VERSION = '4.24.4';

/**
* HTML container ID for the IDC screen on My Jetpack page.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"php": ">=7.0"
},
"require-dev": {
"automattic/jetpack-changelogger": "^4.2.4",
"automattic/jetpack-changelogger": "^4.1.1",
"automattic/wordbless": "@dev",
"yoast/phpunit-polyfills": "1.1.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"license": "GPL-2.0-or-later",
"require": {
"php": ">=7.0",
"automattic/jetpack-assets": "^2.1.12"
"automattic/jetpack-assets": "^2.1.4"
},
"require-dev": {
"yoast/phpunit-polyfills": "1.1.0",
"automattic/jetpack-changelogger": "^4.2.4"
"automattic/jetpack-changelogger": "^4.1.1"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"require": {
"php": ">=7.0",
"automattic/jetpack-a8c-mc-stats": "^2.0.1",
"automattic/jetpack-status": "^3.3.0-alpha"
"automattic/jetpack-status": "^3.1.0"
},
"require-dev": {
"yoast/phpunit-polyfills": "1.1.0",
Expand Down
4 changes: 2 additions & 2 deletions jetpack_vendor/automattic/jetpack-redirect/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
"license": "GPL-2.0-or-later",
"require": {
"php": ">=7.0",
"automattic/jetpack-status": "^3.3.0-alpha"
"automattic/jetpack-status": "^3.0.0"
},
"require-dev": {
"brain/monkey": "2.6.1",
"yoast/phpunit-polyfills": "1.1.0",
"automattic/jetpack-changelogger": "^4.2.4"
"automattic/jetpack-changelogger": "^4.2.2"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
Expand Down
Loading

0 comments on commit 1442e73

Please sign in to comment.