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 6e2b687 commit ac90ef4
Show file tree
Hide file tree
Showing 29 changed files with 231 additions and 210 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"automattic/jetpack-autoloader": "^3.1.3",
"automattic/jetpack-composer-plugin": "^2.0.4",
"automattic/jetpack-config": "^2.0.4",
"automattic/jetpack-connection": "^5.1.6",
"automattic/jetpack-connection": "^5.1.7-alpha",
"automattic/jetpack-my-jetpack": "^4.37.0-alpha",
"automattic/jetpack-search": "^0.45.13-alpha",
"automattic/jetpack-stats": "^0.13.5",
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: 2 additions & 0 deletions jetpack_vendor/automattic/jetpack-search/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ This is an alpha version! The changes listed here are not final.

### Changed
- Classic Widget: update assets' enqueuing strategy to ensure compatibility with the Elementor plugin.
- Exclude corejs `exnext.iterator.` polyfills to avoid bloating the bundle.
- Updated package dependencies.

## [0.45.12] - 2024-11-04
### Added
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('lodash', 'react', 'react-dom', 'react-jsx-runtime', 'wp-block-editor', 'wp-components', 'wp-core-data', 'wp-data', 'wp-element', 'wp-i18n', 'wp-polyfill', 'wp-primitives', 'wp-url', 'wp-viewport'), 'version' => '06d4feec6d9a90cb8928');
<?php return array('dependencies' => array('lodash', 'react', 'react-dom', 'react-jsx-runtime', 'wp-block-editor', 'wp-components', 'wp-core-data', 'wp-data', 'wp-element', 'wp-i18n', 'wp-polyfill', 'wp-primitives', 'wp-url', 'wp-viewport'), 'version' => 'ec6d3fd0019325dff2b4');

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('wp-i18n', 'wp-jp-i18n-loader', 'wp-polyfill', 'wp-url'), 'version' => '2b91c6a8150537fa6728');
<?php return array('dependencies' => array('wp-i18n', 'wp-jp-i18n-loader', 'wp-polyfill', 'wp-url'), 'version' => 'e48b373aa99fdd3dbe9f');

Large diffs are not rendered by default.

Loading

0 comments on commit ac90ef4

Please sign in to comment.