Skip to content

Commit

Permalink
Update changelog and readme for release
Browse files Browse the repository at this point in the history
  • Loading branch information
anomiex authored and matticbot committed Sep 3, 2024
1 parent 725f6e0 commit 365b78d
Show file tree
Hide file tree
Showing 28 changed files with 185 additions and 185 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ 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.9] - 2024-09-03
### Fixed
- Update `automattic/jetpack-image-cdn` package to resolve a PHP fatal error.

## [3.4.8] - 2024-09-02
### Changed
- Admin menu: change order of Jetpack sub-menu items [#39095]
Expand Down Expand Up @@ -494,6 +498,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- First public alpha release

[3.4.9]: https://github.com/Automattic/jetpack-boost-production/compare/3.4.8...3.4.9
[3.4.8]: https://github.com/Automattic/jetpack-boost-production/compare/3.4.7...3.4.8
[3.4.7]: https://github.com/Automattic/jetpack-boost-production/compare/3.4.6...3.4.7
[3.4.6]: https://github.com/Automattic/jetpack-boost-production/compare/3.4.4...3.4.6
Expand Down
6 changes: 3 additions & 3 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.8",
"version": "3.4.9",
"authors": [
{
"name": "Automattic, Inc.",
Expand All @@ -23,7 +23,7 @@
"automattic/jetpack-config": "^2.0.4",
"automattic/jetpack-connection": "^2.12.5",
"automattic/jetpack-device-detection": "^2.1.4",
"automattic/jetpack-image-cdn": "^0.4.7",
"automattic/jetpack-image-cdn": "^0.4.8",
"automattic/jetpack-my-jetpack": "^4.33.1",
"automattic/jetpack-plugin-deactivation": "^0.2.2",
"automattic/jetpack-schema": "^0.1.1",
Expand Down Expand Up @@ -74,7 +74,7 @@
"platform": {
"ext-intl": "0.0.0"
},
"autoloader-suffix": "b1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_4_8",
"autoloader-suffix": "b1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_4_9",
"allow-plugins": {
"roots/wordpress-core-installer": true,
"automattic/jetpack-autoloader": 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.8
* Version: 3.4.9
* 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.8' );
define( 'JETPACK_BOOST_VERSION', '3.4.9' );
define( 'JETPACK_BOOST_SLUG', 'jetpack-boost' );

if ( ! defined( 'JETPACK_BOOST_CLIENT_NAME' ) ) {
Expand Down
5 changes: 5 additions & 0 deletions jetpack_vendor/automattic/jetpack-image-cdn/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ 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.4.8] - 2024-09-03
### Fixed
- Avoid a fatal error if an `<img>` tag has width or height that's not an integer or percentage.

## [0.4.7] - 2024-08-29
### Changed
- Rely on WordPress HTML API to parse HTML instead of Regex [#32700]
Expand Down Expand Up @@ -118,6 +122,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Add image CDN package. [#29561]

[0.4.8]: https://github.com/Automattic/jetpack-image-cdn/compare/v0.4.7...v0.4.8
[0.4.7]: https://github.com/Automattic/jetpack-image-cdn/compare/v0.4.6...v0.4.7
[0.4.6]: https://github.com/Automattic/jetpack-image-cdn/compare/v0.4.5...v0.4.6
[0.4.5]: https://github.com/Automattic/jetpack-image-cdn/compare/v0.4.4...v0.4.5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
final class Image_CDN {

const PACKAGE_VERSION = '0.4.7';
const PACKAGE_VERSION = '0.4.8';

/**
* Singleton.
Expand Down Expand Up @@ -449,11 +449,11 @@ public static function filter_the_content( $content ) {

// First, check the image tag. Note we only check for pixel sizes now; HTML4 percentages have never been correctly
// supported, so we stopped pretending to support them in JP 9.1.0.
if ( ! is_string( $width ) || str_contains( $width, '%' ) ) {
if ( ! is_string( $width ) || ! ctype_digit( $width ) ) {
$width = false;
}

if ( ! is_string( $height ) || str_contains( $height, '%' ) ) {
if ( ! is_string( $height ) || ! ctype_digit( $height ) ) {
$height = false;
}

Expand Down
2 changes: 1 addition & 1 deletion jetpack_vendor/i18n-map.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
),
'jetpack-image-cdn' => array(
'path' => 'jetpack_vendor/automattic/jetpack-image-cdn',
'ver' => '0.4.7',
'ver' => '0.4.8',
),
'jetpack-ip' => array(
'path' => 'jetpack_vendor/automattic/jetpack-ip',
Expand Down
16 changes: 3 additions & 13 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: performance, speed, web vitals, critical css, cache
Requires at least: 5.5
Tested up to: 6.6
Requires PHP: 7.0
Stable tag: 3.4.7
Stable tag: 3.4.8
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -183,19 +183,9 @@ If you run into compatibility issues, please do let us know. You can drop us a l
2. Jetpack Boost Speed Improvement

== Changelog ==
### 3.4.8 - 2024-09-02
#### Changed
- Admin menu: change order of Jetpack sub-menu items
- Page Cache: Update notice for WP Cloud clients.
- React: Changing global JSX namespace to React.JSX

### 3.4.9 - 2024-09-03
#### Fixed
- Cloud CSS: Fixed not properly storing CSS returned from the cloud after a theme switch.
- Lossless image optimization for images (should improve performance with no visible changes).
- Misc: Fix PHP warning when generating critical css for some taxonomy pages.
- Revert recent SVG image optimizations.
- UI: Fix inconsistencies.
- Updated package dependencies.
- Update `automattic/jetpack-image-cdn` package to resolve a PHP fatal error.

--------

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_boost3_4_8::getLoader();
return ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boost3_4_9::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_4_8\al3_0_10;
namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_4_9\al3_0_10;

// 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_boost3_4_8
class ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boost3_4_9
{
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_4_8', 'loadClassLoader'), true, true);
spl_autoload_register(array('ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_4_9', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
spl_autoload_unregister(array('ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_4_8', 'loadClassLoader'));
spl_autoload_unregister(array('ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_4_9', 'loadClassLoader'));

require __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boost3_4_8::getInitializer($loader));
call_user_func(\Composer\Autoload\ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boost3_4_9::getInitializer($loader));

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

$filesToLoad = \Composer\Autoload\ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boost3_4_8::$files;
$filesToLoad = \Composer\Autoload\ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boost3_4_9::$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_boost3_4_8
class ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boost3_4_9
{
public static $files = array (
'3773ef3f09c37da5478d578e32b03a4b' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-assets/actions.php',
Expand Down Expand Up @@ -418,9 +418,9 @@ class ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_4_8
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boost3_4_8::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boost3_4_8::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boost3_4_8::$classMap;
$loader->prefixLengthsPsr4 = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boost3_4_9::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boost3_4_9::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boost3_4_9::$classMap;

}, null, ClassLoader::class);
}
Expand Down
14 changes: 7 additions & 7 deletions vendor/composer/installed.json
Original file line number Diff line number Diff line change
Expand Up @@ -739,17 +739,17 @@
},
{
"name": "automattic/jetpack-image-cdn",
"version": "v0.4.7",
"version_normalized": "0.4.7.0",
"version": "v0.4.8",
"version_normalized": "0.4.8.0",
"source": {
"type": "git",
"url": "https://github.com/Automattic/jetpack-image-cdn.git",
"reference": "2429348941db0cafcf018e77a1694831568f1b1d"
"reference": "a25e26b882d6470246ced49efa46991cdf3ee668"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/Automattic/jetpack-image-cdn/zipball/2429348941db0cafcf018e77a1694831568f1b1d",
"reference": "2429348941db0cafcf018e77a1694831568f1b1d",
"url": "https://api.github.com/repos/Automattic/jetpack-image-cdn/zipball/a25e26b882d6470246ced49efa46991cdf3ee668",
"reference": "a25e26b882d6470246ced49efa46991cdf3ee668",
"shasum": ""
},
"require": {
Expand All @@ -765,7 +765,7 @@
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
},
"time": "2024-08-29T08:39:39+00:00",
"time": "2024-09-03T17:05:37+00:00",
"type": "jetpack-library",
"extra": {
"mirror-repo": "Automattic/jetpack-image-cdn",
Expand Down Expand Up @@ -793,7 +793,7 @@
],
"description": "Serve images through Jetpack's powerful CDN",
"support": {
"source": "https://github.com/Automattic/jetpack-image-cdn/tree/v0.4.7"
"source": "https://github.com/Automattic/jetpack-image-cdn/tree/v0.4.8"
},
"install-path": "../../jetpack_vendor/automattic/jetpack-image-cdn"
},
Expand Down
14 changes: 7 additions & 7 deletions vendor/composer/installed.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php return array(
'root' => array(
'name' => 'automattic/jetpack-boost',
'pretty_version' => '3.4.8',
'version' => '3.4.8.0',
'pretty_version' => '3.4.9',
'version' => '3.4.9.0',
'reference' => null,
'type' => 'library',
'install_path' => __DIR__ . '/../../',
Expand Down Expand Up @@ -47,8 +47,8 @@
'dev_requirement' => false,
),
'automattic/jetpack-boost' => array(
'pretty_version' => '3.4.8',
'version' => '3.4.8.0',
'pretty_version' => '3.4.9',
'version' => '3.4.9.0',
'reference' => null,
'type' => 'library',
'install_path' => __DIR__ . '/../../',
Expand Down Expand Up @@ -128,9 +128,9 @@
'dev_requirement' => false,
),
'automattic/jetpack-image-cdn' => array(
'pretty_version' => 'v0.4.7',
'version' => '0.4.7.0',
'reference' => '2429348941db0cafcf018e77a1694831568f1b1d',
'pretty_version' => 'v0.4.8',
'version' => '0.4.8.0',
'reference' => 'a25e26b882d6470246ced49efa46991cdf3ee668',
'type' => 'jetpack-library',
'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-image-cdn',
'aliases' => array(),
Expand Down
Loading

0 comments on commit 365b78d

Please sign in to comment.