Skip to content

Commit 81a318d

Browse files
kraftbjmatticbot
authored andcommitted
Updated package versions for automattic/jetpack-boost
Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/20141343542 Upstream-Ref: Automattic/jetpack@fe7283c
1 parent 0102a81 commit 81a318d

File tree

70 files changed

+1127
-1316
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+1127
-1316
lines changed

CHANGELOG.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,13 @@ All notable changes to this project will be documented in this file.
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-
## [4.5.4-alpha] - unreleased
9-
10-
This is an alpha version! The changes listed here are not final.
11-
8+
## [4.5.4-beta] - 2025-12-11
129
### Changed
13-
- Image CDN: cache image quality settings per format to reduce repeated processing.
14-
- Update package dependencies.
10+
- Image CDN: cache image quality settings per format to reduce repeated processing. [#46205]
11+
- Update package dependencies. [#46143]
1512

1613
### Fixed
17-
- Ensure proper flags are used with `json_encode()`.
14+
- Ensure proper flags are used with `json_encode()`. [#46117]
1815

1916
## [4.5.3] - 2025-11-27
2017
### Added
@@ -873,7 +870,7 @@ This is an alpha version! The changes listed here are not final.
873870

874871
- First public alpha release
875872

876-
[4.5.4-alpha]: https://github.com/Automattic/jetpack-boost-production/compare/4.5.3...4.5.4-alpha
873+
[4.5.4-beta]: https://github.com/Automattic/jetpack-boost-production/compare/4.5.3...4.5.4-beta
877874
[4.5.3]: https://github.com/Automattic/jetpack-boost-production/compare/4.5.2...4.5.3
878875
[4.5.2]: https://github.com/Automattic/jetpack-boost-production/compare/4.5.1...4.5.2
879876
[4.5.1]: https://github.com/Automattic/jetpack-boost-production/compare/4.5.0...4.5.1

composer.json

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Boost your WordPress site's performance, from the creators of Jetpack",
44
"type": "library",
55
"license": "GPL-2.0-or-later",
6-
"version": "4.5.4-alpha",
6+
"version": "4.5.4-beta",
77
"authors": [
88
{
99
"name": "Automattic, Inc.",
@@ -15,26 +15,25 @@
1515
"require": {
1616
"ext-json": "*",
1717
"automattic/jetpack-admin-ui": "^0.5.11",
18-
"automattic/jetpack-assets": "^4.3.15",
18+
"automattic/jetpack-assets": "^4.3.16",
1919
"automattic/jetpack-autoloader": "^5.0.14",
2020
"automattic/jetpack-boost-core": "^0.4.1",
2121
"automattic/jetpack-boost-speed-score": "^0.4.12",
2222
"automattic/jetpack-composer-plugin": "^4.0.5",
2323
"automattic/jetpack-config": "^3.1.1",
24-
"automattic/jetpack-connection": "^6.19.11-alpha",
24+
"automattic/jetpack-connection": "^6.19.11",
2525
"automattic/jetpack-device-detection": "^3.3.0",
2626
"automattic/jetpack-image-cdn": "^0.7.24",
27-
"automattic/jetpack-my-jetpack": "^5.28.10-alpha",
28-
"automattic/jetpack-plugin-deactivation": "^0.3.21-alpha",
29-
"automattic/jetpack-schema": "^0.2.7-alpha",
27+
"automattic/jetpack-my-jetpack": "^5.28.10",
28+
"automattic/jetpack-plugin-deactivation": "^0.3.21",
29+
"automattic/jetpack-schema": "^0.2.7",
3030
"automattic/jetpack-status": "^6.1.1",
31-
"automattic/jetpack-sync": "^4.24.0-alpha",
31+
"automattic/jetpack-sync": "^4.24.0",
3232
"automattic/jetpack-wp-js-data-sync": "^0.6.8",
3333
"matthiasmullie/minify": "^1.3"
3434
},
3535
"require-dev": {
3636
"automattic/jetpack-changelogger": "^6.0.11",
37-
"automattic/jetpack-test-environment": "@dev",
3837
"automattic/phpunit-select-config": "^1.0.3",
3938
"brain/monkey": "^2.6.2",
4039
"yoast/phpunit-polyfills": "^4.0.0"
@@ -77,12 +76,13 @@
7776
"platform": {
7877
"ext-intl": "0.0.0"
7978
},
80-
"autoloader-suffix": "b1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ4_5_4_alpha",
79+
"autoloader-suffix": "b1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ4_5_4_beta",
8180
"allow-plugins": {
8281
"automattic/jetpack-autoloader": true,
8382
"automattic/jetpack-composer-plugin": true
8483
}
8584
},
85+
"repositories": [],
8686
"extra": {
8787
"mirror-repo": "Automattic/jetpack-boost-production",
8888
"autorelease": true,
@@ -97,6 +97,9 @@
9797
"wp-svn-autopublish": true,
9898
"changelogger": {
9999
"link-template": "https://github.com/Automattic/jetpack-boost-production/compare/${old}...${new}"
100-
}
100+
},
101+
"non-mirrored-require-dev": [
102+
"automattic/jetpack-test-environment"
103+
]
101104
}
102105
}

jetpack-boost.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Plugin Name: Jetpack Boost
1010
* Plugin URI: https://jetpack.com/boost
1111
* Description: Boost your WordPress site's performance, from the creators of Jetpack
12-
* Version: 4.5.4-alpha
12+
* Version: 4.5.4-beta
1313
* Author: Automattic - Jetpack Site Speed team
1414
* Author URI: https://jetpack.com/boost/
1515
* License: GPL-2.0+
@@ -29,7 +29,7 @@
2929
die( 0 );
3030
}
3131

32-
define( 'JETPACK_BOOST_VERSION', '4.5.4-alpha' );
32+
define( 'JETPACK_BOOST_VERSION', '4.5.4-beta' );
3333
define( 'JETPACK_BOOST_SLUG', 'jetpack-boost' );
3434

3535
if ( ! defined( 'JETPACK_BOOST_CLIENT_NAME' ) ) {

jetpack_vendor/automattic/jetpack-a8c-mc-stats/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"require-dev": {
1010
"yoast/phpunit-polyfills": "^4.0.0",
11-
"automattic/jetpack-changelogger": "^6.0.11",
11+
"automattic/jetpack-changelogger": "^6.0.5",
1212
"automattic/phpunit-select-config": "^1.0.3"
1313
},
1414
"suggest": {

jetpack_vendor/automattic/jetpack-admin-ui/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"require-dev": {
1010
"yoast/phpunit-polyfills": "^4.0.0",
11-
"automattic/jetpack-changelogger": "^6.0.11",
11+
"automattic/jetpack-changelogger": "^6.0.5",
1212
"automattic/jetpack-logo": "^3.0.5",
1313
"automattic/jetpack-test-environment": "@dev",
1414
"automattic/phpunit-select-config": "^1.0.3"

jetpack_vendor/automattic/jetpack-assets/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
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+
## [4.3.16] - 2025-12-11
9+
### Changed
10+
- Update dependencies. [#42554]
11+
812
## [4.3.15] - 2025-12-08
913
### Fixed
1014
- Ensure proper flags are used with `json_encode()`. [#46092]
@@ -748,6 +752,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
748752

749753
- Statically access asset tools
750754

755+
[4.3.16]: https://github.com/Automattic/jetpack-assets/compare/v4.3.15...v4.3.16
751756
[4.3.15]: https://github.com/Automattic/jetpack-assets/compare/v4.3.14...v4.3.15
752757
[4.3.14]: https://github.com/Automattic/jetpack-assets/compare/v4.3.13...v4.3.14
753758
[4.3.13]: https://github.com/Automattic/jetpack-assets/compare/v4.3.12...v4.3.13

jetpack_vendor/automattic/jetpack-boost-core/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"license": "GPL-2.0-or-later",
66
"require": {
77
"php": ">=7.2",
8-
"automattic/jetpack-connection": "^6.19.11-alpha"
8+
"automattic/jetpack-connection": "^6.19.10"
99
},
1010
"require-dev": {
1111
"yoast/phpunit-polyfills": "^4.0.0",

jetpack_vendor/automattic/jetpack-boost-speed-score/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"license": "GPL-2.0-or-later",
66
"require-dev": {
77
"yoast/phpunit-polyfills": "^4.0.0",
8-
"automattic/jetpack-changelogger": "^6.0.11",
8+
"automattic/jetpack-changelogger": "^6.0.9",
99
"brain/monkey": "^2.6",
1010
"automattic/phpunit-select-config": "^1.0.3"
1111
},
@@ -16,7 +16,7 @@
1616
},
1717
"require": {
1818
"php": ">=7.2",
19-
"automattic/jetpack-boost-core": "^0.4.1"
19+
"automattic/jetpack-boost-core": "^0.4.0"
2020
},
2121
"autoload": {
2222
"classmap": [

jetpack_vendor/automattic/jetpack-config/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"php": ">=7.2"
88
},
99
"require-dev": {
10-
"automattic/jetpack-changelogger": "^6.0.11",
10+
"automattic/jetpack-changelogger": "^6.0.5",
1111
"automattic/jetpack-connection": "@dev",
1212
"automattic/jetpack-import": "@dev",
1313
"automattic/jetpack-jitm": "@dev",

jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,9 @@ All notable changes to this project will be documented in this file.
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-
## [6.19.11-alpha] - unreleased
9-
10-
This is an alpha version! The changes listed here are not final.
11-
8+
## [6.19.11] - 2025-12-11
129
### Removed
13-
- Development Mode: removed references to previously removed code
10+
- Development Mode: removed references to previously removed code [#46231]
1411

1512
## [6.19.10] - 2025-12-08
1613
### Fixed
@@ -1667,7 +1664,7 @@ This is an alpha version! The changes listed here are not final.
16671664

16681665
- Separate the connection library into its own package.
16691666

1670-
[6.19.11-alpha]: https://github.com/Automattic/jetpack-connection/compare/v6.19.10...v6.19.11-alpha
1667+
[6.19.11]: https://github.com/Automattic/jetpack-connection/compare/v6.19.10...v6.19.11
16711668
[6.19.10]: https://github.com/Automattic/jetpack-connection/compare/v6.19.9...v6.19.10
16721669
[6.19.9]: https://github.com/Automattic/jetpack-connection/compare/v6.19.8...v6.19.9
16731670
[6.19.8]: https://github.com/Automattic/jetpack-connection/compare/v6.19.7...v6.19.8

0 commit comments

Comments
 (0)