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
dilirity authored and matticbot committed Nov 4, 2024
1 parent 4b9890d commit 58bd5c8
Show file tree
Hide file tree
Showing 35 changed files with 728 additions and 1,018 deletions.
26 changes: 10 additions & 16 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,22 @@ 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.6.0-alpha] - unreleased

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

## [3.6.0-beta] - 2024-11-04
### Added
- Cornerstone Pages: Added cornerstone pages functionality
- Enable test coverage.
- Cornerstone Pages: Added feature to allow selecting important pages. [#39863]

### Changed
- Components: Add __nextHasNoMarginBottom to BaseControl-based components, preventing deprecation notices.
- Critical CSS: Make the list of critical CSS URLs more efficient.
- General: indicate compatibility with the upcoming version of WordPress - 6.7.
- Only include `wp-polyfill` as a script dependency when needed.
- UI: Update badges used to show state of features.
- Updated package dependencies.
- Critical CSS: Improve logic that generates URLs for critical CSS generation. [#39862]
- Page Speed: Update speed scores to be based on first cornerstone page. [#39863]
- General: Improve compatibility with WordPress 6.7. [#39877] [#39786]
- General: Update badges used to show state of features. [#40031]

### Removed
- Image Guide: Remove URL parameter based override.
- Image Guide: Remove URL parameter based override. [#39874]

### Fixed
- Performance History: Fixed tooltip behavior
- UI: fix typo in Overall Score tooltip
- Page Speed: Fix typo in Overall Score tooltip. [#39974]
- Performance History: Fixed tooltip behavior. [#39879]

## [3.5.2] - 2024-10-15
### Changed
Expand Down Expand Up @@ -547,7 +541,7 @@ This is an alpha version! The changes listed here are not final.

- First public alpha release

[3.6.0-alpha]: https://github.com/Automattic/jetpack-boost-production/compare/3.5.2...3.6.0-alpha
[3.6.0-beta]: https://github.com/Automattic/jetpack-boost-production/compare/3.5.2...3.6.0-beta
[3.5.2]: https://github.com/Automattic/jetpack-boost-production/compare/3.5.1...3.5.2
[3.5.1]: https://github.com/Automattic/jetpack-boost-production/compare/3.5.0...3.5.1
[3.5.0]: https://github.com/Automattic/jetpack-boost-production/compare/3.4.9...3.5.0
Expand Down
2 changes: 1 addition & 1 deletion app/lib/critical-css/source-providers/Source_Providers.php
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ public function get_provider_sources( $context_posts = array() ) {
* Filters the list of Critical CSS source providers.
*
* @param array $sources The list of Critical CSS source providers.
* @since 3.6.0-alpha
* @since 3.6.0
*/
return apply_filters( 'jetpack_boost_critical_css_providers', $sources );
}
Expand Down
11 changes: 6 additions & 5 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.6.0-alpha",
"version": "3.6.0-beta",
"authors": [
{
"name": "Automattic, Inc.",
Expand All @@ -25,11 +25,11 @@
"automattic/jetpack-device-detection": "^2.1.6",
"automattic/jetpack-image-cdn": "^0.5.3",
"automattic/jetpack-my-jetpack": "^4.36.0",
"automattic/jetpack-plugin-deactivation": "^0.2.4-alpha",
"automattic/jetpack-schema": "^0.1.3-alpha",
"automattic/jetpack-plugin-deactivation": "^0.2.4",
"automattic/jetpack-schema": "^0.1.3",
"automattic/jetpack-status": "^4.0.3",
"automattic/jetpack-sync": "^3.14.4",
"automattic/jetpack-wp-js-data-sync": "^0.5.2-alpha",
"automattic/jetpack-wp-js-data-sync": "^0.5.2",
"matthiasmullie/minify": "^1.3",
"tubalmartin/cssmin": "^4.1"
},
Expand Down Expand Up @@ -81,13 +81,14 @@
"platform": {
"ext-intl": "0.0.0"
},
"autoloader-suffix": "b1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_6_0_alpha",
"autoloader-suffix": "b1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_6_0_beta",
"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.6.0-alpha
* Version: 3.6.0-beta
* 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.6.0-alpha' );
define( 'JETPACK_BOOST_VERSION', '3.6.0-beta' );
define( 'JETPACK_BOOST_SLUG', 'jetpack-boost' );

if ( ! defined( 'JETPACK_BOOST_CLIENT_NAME' ) ) {
Expand Down
2 changes: 1 addition & 1 deletion jetpack_vendor/automattic/jetpack-config/composer.json
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.8",
"automattic/jetpack-changelogger": "^4.2.4",
"automattic/jetpack-connection": "@dev",
"automattic/jetpack-import": "@dev",
"automattic/jetpack-jitm": "@dev",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,9 @@ 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).

## [0.2.4-alpha] - unreleased

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

## [0.2.4] - 2024-11-04
### Added
- Enable test coverage.
- Enable test coverage. [#39961]

## [0.2.3] - 2024-10-29
### Changed
Expand Down Expand Up @@ -63,7 +60,7 @@ This is an alpha version! The changes listed here are not final.
### Added
- Added package to intercept plugin deactivation [#27081]

[0.2.4-alpha]: https://github.com/Automattic/jetpack-plugin-deactivation/compare/v0.2.3...v0.2.4-alpha
[0.2.4]: https://github.com/Automattic/jetpack-plugin-deactivation/compare/v0.2.3...v0.2.4
[0.2.3]: https://github.com/Automattic/jetpack-plugin-deactivation/compare/v0.2.2...v0.2.3
[0.2.2]: https://github.com/Automattic/jetpack-plugin-deactivation/compare/v0.2.1...v0.2.2
[0.2.1]: https://github.com/Automattic/jetpack-plugin-deactivation/compare/v0.2.0...v0.2.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Deactivation_Handler {
*
* @var string
*/
const PACKAGE_VERSION = '0.2.4-alpha';
const PACKAGE_VERSION = '0.2.4';

/**
* Slug of the plugin to intercept deactivation for.
Expand Down
9 changes: 3 additions & 6 deletions jetpack_vendor/automattic/jetpack-schema/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,9 @@ 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).

## [0.1.3-alpha] - unreleased

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

## [0.1.3] - 2024-11-04
### Added
- Enable test coverage.
- Enable test coverage. [#39961]

## [0.1.2] - 2024-10-10
### Fixed
Expand All @@ -27,6 +24,6 @@ This is an alpha version! The changes listed here are not final.
### Changed
- Updated package dependencies. [#39004]

[0.1.3-alpha]: https://github.com/Automattic/jetpack-schema/compare/v0.1.2...v0.1.3-alpha
[0.1.3]: https://github.com/Automattic/jetpack-schema/compare/v0.1.2...v0.1.3
[0.1.2]: https://github.com/Automattic/jetpack-schema/compare/v0.1.1...v0.1.2
[0.1.1]: https://github.com/Automattic/jetpack-schema/compare/v0.1.0...v0.1.1
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
* $parsed_data = $my_schema->parse($input_data);
*/
class Schema {
const PACKAGE_VERSION = '0.1.3-alpha';
const PACKAGE_VERSION = '0.1.3';

public static function as_string() {
return new Schema_Parser( new Type_String() );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,9 @@ 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).

## [0.5.2-alpha] - unreleased

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

## [0.5.2] - 2024-11-04
### Added
- Enable test coverage.
- Enable test coverage. [#39961]

## [0.5.1] - 2024-10-10
### Fixed
Expand Down Expand Up @@ -96,7 +93,7 @@ This is an alpha version! The changes listed here are not final.
### Fixed
- Jetpack Boost: Fix assoc_array schema validation. [#29611]

[0.5.2-alpha]: https://github.com/Automattic/jetpack-wp-js-data-sync/compare/v0.5.1...v0.5.2-alpha
[0.5.2]: https://github.com/Automattic/jetpack-wp-js-data-sync/compare/v0.5.1...v0.5.2
[0.5.1]: https://github.com/Automattic/jetpack-wp-js-data-sync/compare/v0.5.0...v0.5.1
[0.5.0]: https://github.com/Automattic/jetpack-wp-js-data-sync/compare/v0.4.5...v0.5.0
[0.4.5]: https://github.com/Automattic/jetpack-wp-js-data-sync/compare/v0.4.4...v0.4.5
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": {
"php": ">=7.0",
"automattic/jetpack-schema": "^0.1.3-alpha"
"automattic/jetpack-schema": "^0.1.3"
},
"require-dev": {
"yoast/phpunit-polyfills": "^1.1.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@

final class Data_Sync {

const PACKAGE_VERSION = '0.5.2-alpha';
const PACKAGE_VERSION = '0.5.2';

/**
* @var Registry
Expand Down
6 changes: 3 additions & 3 deletions jetpack_vendor/i18n-map.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
),
'jetpack-plugin-deactivation' => array(
'path' => 'jetpack_vendor/automattic/jetpack-plugin-deactivation',
'ver' => '0.2.4-alpha1730548010',
'ver' => '0.2.4',
),
'jetpack-plugins-installer' => array(
'path' => 'jetpack_vendor/automattic/jetpack-plugins-installer',
Expand All @@ -74,15 +74,15 @@
),
'jetpack-schema' => array(
'path' => 'jetpack_vendor/automattic/jetpack-schema',
'ver' => '0.1.3-alpha1730548010',
'ver' => '0.1.3',
),
'jetpack-sync' => array(
'path' => 'jetpack_vendor/automattic/jetpack-sync',
'ver' => '3.14.4',
),
'jetpack-wp-js-data-sync' => array(
'path' => 'jetpack_vendor/automattic/jetpack-wp-js-data-sync',
'ver' => '0.5.2-alpha1730548010',
'ver' => '0.5.2',
),
),
);
19 changes: 13 additions & 6 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -183,15 +183,22 @@ If you run into compatibility issues, please do let us know. You can drop us a l
2. Jetpack Boost Speed Improvement

== Changelog ==
### 3.5.2 - 2024-10-15
### 3.6.0-beta - 2024-11-04
#### Added
- Cornerstone Pages: Added feature to allow selecting important pages.

#### Changed
- Deferred JS: Exclude all scripts produced by a shortcode.
- General: Sync Boost's Getting Started page with My Jetpack's version.
- General: Update minimum required WordPress version to 6.5 in main plugin file. Previous release only changed plugin readme.
- Critical CSS: Improve logic that generates URLs for critical CSS generation.
- Page Speed: Update speed scores to be based on first cornerstone page.
- General: Improve compatibility with WordPress 6.7.
- General: Update badges used to show state of features.

#### Removed
- Image Guide: Remove URL parameter based override.

#### Fixed
- Image CDN: URL encode image path parts for RSS feed compatibility
- Image Guide: Improve check for Jetpack Image CDN URLs
- Page Speed: Fix typo in Overall Score tooltip.
- Performance History: Fixed tooltip behavior.

--------

Expand Down
2 changes: 1 addition & 1 deletion vendor/autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@

require_once __DIR__ . '/composer/autoload_real.php';

return ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_6_0_alpha::getLoader();
return ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_6_0_beta::getLoader();
2 changes: 1 addition & 1 deletion vendor/autoload_packages.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package automattic/jetpack-autoloader
*/

namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_6_0_alpha\al3_1_3;
namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_6_0_beta\al3_1_3;

// phpcs:ignore

Expand Down
10 changes: 5 additions & 5 deletions vendor/composer/autoload_real.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

// autoload_real.php @generated by Composer

class ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_6_0_alpha
class ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_6_0_beta
{
private static $loader;

Expand All @@ -24,17 +24,17 @@ public static function getLoader()

require __DIR__ . '/platform_check.php';

spl_autoload_register(array('ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_6_0_alpha', 'loadClassLoader'), true, true);
spl_autoload_register(array('ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_6_0_beta', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
spl_autoload_unregister(array('ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_6_0_alpha', 'loadClassLoader'));
spl_autoload_unregister(array('ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_6_0_beta', 'loadClassLoader'));

require __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_6_0_alpha::getInitializer($loader));
call_user_func(\Composer\Autoload\ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_6_0_beta::getInitializer($loader));

$loader->setClassMapAuthoritative(true);
$loader->register(true);

$filesToLoad = \Composer\Autoload\ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_6_0_alpha::$files;
$filesToLoad = \Composer\Autoload\ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_6_0_beta::$files;
$requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
Expand Down
8 changes: 4 additions & 4 deletions vendor/composer/autoload_static.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Composer\Autoload;

class ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_6_0_alpha
class ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_6_0_beta
{
public static $files = array (
'3773ef3f09c37da5478d578e32b03a4b' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-assets/actions.php',
Expand Down Expand Up @@ -423,9 +423,9 @@ class ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_6_0_a
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_6_0_alpha::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_6_0_alpha::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_6_0_alpha::$classMap;
$loader->prefixLengthsPsr4 = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_6_0_beta::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_6_0_beta::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_6_0_beta::$classMap;

}, null, ClassLoader::class);
}
Expand Down
Loading

0 comments on commit 58bd5c8

Please sign in to comment.