Skip to content

Commit

Permalink
Update babel monorepo (#40060)
Browse files Browse the repository at this point in the history
* Update babel monorepo
* search: Exclude corejs `exnext.iterator.` polyfills to avoid bloating the bundle.

---------

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Brad Jorsch <brad.jorsch@automattic.com>

Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/11693139393

Upstream-Ref: Automattic/jetpack@41ee4b3
  • Loading branch information
anomiex authored and matticbot committed Nov 5, 2024
1 parent 64248eb commit b816b6f
Show file tree
Hide file tree
Showing 23 changed files with 199 additions and 179 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ This is an alpha version! The changes listed here are not final.
- Animated the "scan in progress" placeholder image
- Components: Add __nextHasNoMarginBottom to BaseControl-based components, preventing deprecation notices.
- General: indicate compatibility with the upcoming version of WordPress - 6.7.
- Updated package dependencies.

## 3.1.1 - 2024-10-17
### Changed
Expand Down
2 changes: 1 addition & 1 deletion jetpack_vendor/automattic/jetpack-boost-core/composer.json
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-connection": "^5.1.6"
"automattic/jetpack-connection": "^5.1.7-alpha"
},
"require-dev": {
"yoast/phpunit-polyfills": "^1.1.1",
Expand Down
8 changes: 8 additions & 0 deletions jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +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).

## [5.1.7-alpha] - unreleased

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

### Changed
- Updated package dependencies.

## [5.1.6] - 2024-11-04
### Added
- Enable test coverage. [#39961]
Expand Down Expand Up @@ -1238,6 +1245,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Separate the connection library into its own package.

[5.1.7-alpha]: https://github.com/Automattic/jetpack-connection/compare/v5.1.6...v5.1.7-alpha
[5.1.6]: https://github.com/Automattic/jetpack-connection/compare/v5.1.5...v5.1.6
[5.1.5]: https://github.com/Automattic/jetpack-connection/compare/v5.1.4...v5.1.5
[5.1.4]: https://github.com/Automattic/jetpack-connection/compare/v5.1.3...v5.1.4
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array(), 'version' => '23c6f4ddf46d1b3fba3c');
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '23c6f4ddf46d1b3fba3c');
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
class Package_Version {

const PACKAGE_VERSION = '5.1.6';
const PACKAGE_VERSION = '5.1.7-alpha';

const PACKAGE_SLUG = 'connection';

Expand Down
8 changes: 8 additions & 0 deletions jetpack_vendor/automattic/jetpack-explat/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +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).

## [0.1.15-alpha] - unreleased

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

### Changed
- Updated package dependencies.

## [0.1.14] - 2024-11-04
### Added
- Enable test coverage. [#39961]
Expand Down Expand Up @@ -72,6 +79,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- ExPlat: add condition to prevent fetching the experiment assignment if there's not anon id (meaning that Tracks is likely disabled) [#38327]
- Updated package dependencies. [#38132]

[0.1.15-alpha]: https://github.com/Automattic/jetpack-explat/compare/v0.1.14...v0.1.15-alpha
[0.1.14]: https://github.com/Automattic/jetpack-explat/compare/v0.1.13...v0.1.14
[0.1.13]: https://github.com/Automattic/jetpack-explat/compare/v0.1.12...v0.1.13
[0.1.12]: https://github.com/Automattic/jetpack-explat/compare/v0.1.11...v0.1.12
Expand Down
2 changes: 1 addition & 1 deletion jetpack_vendor/automattic/jetpack-explat/composer.json
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-connection": "^5.1.6"
"automattic/jetpack-connection": "^5.1.7-alpha"
},
"require-dev": {
"yoast/phpunit-polyfills": "^1.1.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class ExPlat {
*
* @var string
*/
const PACKAGE_VERSION = '0.1.14';
const PACKAGE_VERSION = '0.1.15-alpha';

/**
* Initializer.
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('jquery'), 'version' => 'a41583033504a4ed0b13');
<?php return array('dependencies' => array('jquery', 'wp-polyfill'), 'version' => 'a41583033504a4ed0b13');
2 changes: 1 addition & 1 deletion jetpack_vendor/automattic/jetpack-jitm/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"php": ">=7.0",
"automattic/jetpack-a8c-mc-stats": "^2.0.4",
"automattic/jetpack-assets": "^2.3.13",
"automattic/jetpack-connection": "^5.1.6",
"automattic/jetpack-connection": "^5.1.7-alpha",
"automattic/jetpack-device-detection": "^2.1.6",
"automattic/jetpack-logo": "^2.0.5",
"automattic/jetpack-redirect": "^2.0.5",
Expand Down
2 changes: 1 addition & 1 deletion jetpack_vendor/automattic/jetpack-licensing/composer.json
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-connection": "^5.1.6"
"automattic/jetpack-connection": "^5.1.7-alpha"
},
"require-dev": {
"automattic/wordbless": "@dev",
Expand Down
3 changes: 3 additions & 0 deletions jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ This is an alpha version! The changes listed here are not final.
### Added
- My Jetpack: update the recommendations section in My Jetpack to include a slider interaction for the cards.

### Changed
- Updated package dependencies.

## [4.36.0] - 2024-11-04
### Added
- Enable test coverage. [#39961]
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,8 +8,8 @@
"automattic/jetpack-admin-ui": "^0.4.6",
"automattic/jetpack-assets": "^2.3.13",
"automattic/jetpack-boost-speed-score": "^0.3.14",
"automattic/jetpack-connection": "^5.1.6",
"automattic/jetpack-explat": "^0.1.14",
"automattic/jetpack-connection": "^5.1.7-alpha",
"automattic/jetpack-explat": "^0.1.15-alpha",
"automattic/jetpack-jitm": "^3.1.28",
"automattic/jetpack-licensing": "^2.0.12",
"automattic/jetpack-plugins-installer": "^0.4.4",
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-connection": "^5.1.6",
"automattic/jetpack-connection": "^5.1.7-alpha",
"automattic/jetpack-plugins-installer": "^0.4.4",
"automattic/jetpack-sync": "^3.14.5-alpha",
"automattic/jetpack-protect-models": "^0.3.1",
Expand Down
2 changes: 1 addition & 1 deletion jetpack_vendor/automattic/jetpack-sync/composer.json
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-connection": "^5.1.6",
"automattic/jetpack-connection": "^5.1.7-alpha",
"automattic/jetpack-constants": "^2.0.5",
"automattic/jetpack-password-checker": "^0.3.3",
"automattic/jetpack-ip": "^0.3.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"require": {
"php": ">=7.0",
"automattic/jetpack-backup-helper-script-manager": "^0.2.8",
"automattic/jetpack-connection": "^5.1.6"
"automattic/jetpack-connection": "^5.1.7-alpha"
},
"require-dev": {
"yoast/phpunit-polyfills": "^1.1.1",
Expand Down
2 changes: 1 addition & 1 deletion jetpack_vendor/automattic/jetpack-waf/composer.json
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-connection": "^5.1.6",
"automattic/jetpack-connection": "^5.1.7-alpha",
"automattic/jetpack-constants": "^2.0.5",
"automattic/jetpack-ip": "^0.3.1",
"automattic/jetpack-status": "^4.0.3",
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 @@ -26,11 +26,11 @@
),
'jetpack-connection' => array(
'path' => 'jetpack_vendor/automattic/jetpack-connection',
'ver' => '5.1.6',
'ver' => '5.1.7-alpha1730843657',
),
'jetpack-explat' => array(
'path' => 'jetpack_vendor/automattic/jetpack-explat',
'ver' => '0.1.14',
'ver' => '0.1.15-alpha1730843657',
),
'jetpack-ip' => array(
'path' => 'jetpack_vendor/automattic/jetpack-ip',
Expand All @@ -46,7 +46,7 @@
),
'jetpack-my-jetpack' => array(
'path' => 'jetpack_vendor/automattic/jetpack-my-jetpack',
'ver' => '4.37.0-alpha1730770790',
'ver' => '4.37.0-alpha1730843657',
),
'jetpack-password-checker' => array(
'path' => 'jetpack_vendor/automattic/jetpack-password-checker',
Expand Down
2 changes: 1 addition & 1 deletion vendor/automattic/jetpack-plans/composer.json
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-connection": "^5.1.6"
"automattic/jetpack-connection": "^5.1.7-alpha"
},
"require-dev": {
"yoast/phpunit-polyfills": "^1.1.1",
Expand Down
Loading

0 comments on commit b816b6f

Please sign in to comment.