Skip to content

Commit

Permalink
Update wordpress monorepo (#32803)
Browse files Browse the repository at this point in the history
* Update wordpress monorepo
* Skip `@wordpress/eslint-plugin` for now, will do that separately to
  more clearly coordinate updating other deps.
* Cleanup StaticSiteGeneratorPlugin globals in webpack.config.extensions.js
  Having `navigator: {}` was breaking framer-motion, and it turns out
  that and most of the rest are no longer needed.
* Work around typo in y-webrtc and y-protocols package.json
  They had `peerDependenies` rather than `peerDependencies`. Aready
  fixed upstream, but unreleased.
* Clean up no-longer-needed pnpmfile overrides
* Work around missing `@babel/runtime` dep in `@wordpress/patterns`
* Update serialization in jetpack mailchimp block test
  Looks like some GB change ([#53521]?) got better at omitting default values
* Update button test for changed popover container
  Probably [#53889]

[#53521]: https://href.li?https://github.com/wordpress/gutenberg/pull/53521
[#53889]: https://href.li?https://github.com/wordpress/gutenberg/pull/53889

---------

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/6052363633
  • Loading branch information
anomiex authored and matticbot committed Sep 1, 2023
1 parent 78e4fc3 commit a484a0c
Show file tree
Hide file tree
Showing 21 changed files with 210 additions and 170 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"require": {
"automattic/jetpack-assets": "^1.18.9",
"automattic/jetpack-assets": "^1.18.10-alpha",
"automattic/jetpack-admin-ui": "^0.2.21",
"automattic/jetpack-autoloader": "^2.11.22",
"automattic/jetpack-composer-plugin": "^1.1.13",
"automattic/jetpack-config": "^1.15.3",
"automattic/jetpack-identity-crisis": "^0.10.2",
"automattic/jetpack-my-jetpack": "^3.4.2",
"automattic/jetpack-identity-crisis": "^0.10.3-alpha",
"automattic/jetpack-my-jetpack": "^3.4.3-alpha",
"automattic/jetpack-plugins-installer": "^0.2.5",
"automattic/jetpack-sync": "^1.56.0-alpha"
},
Expand Down
8 changes: 8 additions & 0 deletions jetpack_vendor/automattic/jetpack-assets/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).

## [1.18.10-alpha] - unreleased

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

### Changed
- Updated package dependencies.

## [1.18.9] - 2023-08-23
### Changed
- Updated package dependencies. [#32605]
Expand Down Expand Up @@ -353,6 +360,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Statically access asset tools

[1.18.10-alpha]: https://github.com/Automattic/jetpack-assets/compare/v1.18.9...v1.18.10-alpha
[1.18.9]: https://github.com/Automattic/jetpack-assets/compare/v1.18.8...v1.18.9
[1.18.8]: https://github.com/Automattic/jetpack-assets/compare/v1.18.7...v1.18.8
[1.18.7]: https://github.com/Automattic/jetpack-assets/compare/v1.18.6...v1.18.7
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).

## [1.57.2-alpha] - unreleased

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

### Changed
- Updated package dependencies.

## [1.57.1] - 2023-08-23
### Changed
- Updated package dependencies. [#32605]
Expand Down Expand Up @@ -868,6 +875,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Separate the connection library into its own package.

[1.57.2-alpha]: https://github.com/Automattic/jetpack-connection/compare/v1.57.1...v1.57.2-alpha
[1.57.1]: https://github.com/Automattic/jetpack-connection/compare/v1.57.0...v1.57.1
[1.57.0]: https://github.com/Automattic/jetpack-connection/compare/v1.56.1...v1.57.0
[1.56.1]: https://github.com/Automattic/jetpack-connection/compare/v1.56.0...v1.56.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
class Package_Version {

const PACKAGE_VERSION = '1.57.1';
const PACKAGE_VERSION = '1.57.2-alpha';

const PACKAGE_SLUG = 'connection';

Expand Down
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.10.3-alpha] - unreleased

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

### Changed
- Updated package dependencies.

## [0.10.2] - 2023-08-23
### Changed
- Updated package dependencies. [#32605]
Expand Down Expand Up @@ -400,6 +407,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Updated package dependencies.
- Use Connection/Urls for home_url and site_url functions migrated from Sync.

[0.10.3-alpha]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.10.2...v0.10.3-alpha
[0.10.2]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.10.1...v0.10.2
[0.10.1]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.10.0...v0.10.1
[0.10.0]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.9.0...v0.10.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"type": "jetpack-library",
"license": "GPL-2.0-or-later",
"require": {
"automattic/jetpack-connection": "^1.57.1",
"automattic/jetpack-connection": "^1.57.2-alpha",
"automattic/jetpack-constants": "^1.6.23",
"automattic/jetpack-status": "^1.18.2-alpha",
"automattic/jetpack-logo": "^1.6.2",
"automattic/jetpack-assets": "^1.18.9"
"automattic/jetpack-assets": "^1.18.10-alpha"
},
"require-dev": {
"automattic/jetpack-changelogger": "^3.3.8",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Identity_Crisis {
/**
* Package Version
*/
const PACKAGE_VERSION = '0.10.2';
const PACKAGE_VERSION = '0.10.3-alpha';

/**
* Instance of the object.
Expand Down
8 changes: 8 additions & 0 deletions jetpack_vendor/automattic/jetpack-jitm/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).

## [2.3.18-alpha] - unreleased

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

### Changed
- Updated package dependencies.

## [2.3.17] - 2023-08-23
### Changed
- Updated package dependencies. [#32605]
Expand Down Expand Up @@ -617,6 +624,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Update Jetpack to use new JITM package

[2.3.18-alpha]: https://github.com/Automattic/jetpack-jitm/compare/v2.3.17...v2.3.18-alpha
[2.3.17]: https://github.com/Automattic/jetpack-jitm/compare/v2.3.16...v2.3.17
[2.3.16]: https://github.com/Automattic/jetpack-jitm/compare/v2.3.15...v2.3.16
[2.3.15]: https://github.com/Automattic/jetpack-jitm/compare/v2.3.14...v2.3.15
Expand Down
4 changes: 2 additions & 2 deletions jetpack_vendor/automattic/jetpack-jitm/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"license": "GPL-2.0-or-later",
"require": {
"automattic/jetpack-a8c-mc-stats": "^1.4.21",
"automattic/jetpack-assets": "^1.18.9",
"automattic/jetpack-connection": "^1.57.1",
"automattic/jetpack-assets": "^1.18.10-alpha",
"automattic/jetpack-connection": "^1.57.2-alpha",
"automattic/jetpack-device-detection": "^1.4.27",
"automattic/jetpack-logo": "^1.6.2",
"automattic/jetpack-partner": "^1.7.24",
Expand Down
2 changes: 1 addition & 1 deletion jetpack_vendor/automattic/jetpack-jitm/src/class-jitm.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/
class JITM {

const PACKAGE_VERSION = '2.3.17';
const PACKAGE_VERSION = '2.3.18-alpha';

/**
* The configuration method that is called from the jetpack-config package.
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 @@ -4,7 +4,7 @@
"type": "jetpack-library",
"license": "GPL-2.0-or-later",
"require": {
"automattic/jetpack-connection": "^1.57.1"
"automattic/jetpack-connection": "^1.57.2-alpha"
},
"require-dev": {
"automattic/wordbless": "@dev",
Expand Down
8 changes: 8 additions & 0 deletions jetpack_vendor/automattic/jetpack-my-jetpack/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).

## [3.4.3-alpha] - unreleased

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

### Changed
- Updated package dependencies.

## [3.4.2] - 2023-08-23
### Changed
- Updated package dependencies. [#32605]
Expand Down Expand Up @@ -1002,6 +1009,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Created package

[3.4.3-alpha]: https://github.com/Automattic/jetpack-my-jetpack/compare/3.4.2...3.4.3-alpha
[3.4.2]: https://github.com/Automattic/jetpack-my-jetpack/compare/3.4.1...3.4.2
[3.4.1]: https://github.com/Automattic/jetpack-my-jetpack/compare/3.4.0...3.4.1
[3.4.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/3.3.3...3.4.0
Expand Down
8 changes: 4 additions & 4 deletions jetpack_vendor/automattic/jetpack-my-jetpack/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
"license": "GPL-2.0-or-later",
"require": {
"automattic/jetpack-admin-ui": "^0.2.21",
"automattic/jetpack-assets": "^1.18.9",
"automattic/jetpack-connection": "^1.57.1",
"automattic/jetpack-jitm": "^2.3.17",
"automattic/jetpack-assets": "^1.18.10-alpha",
"automattic/jetpack-connection": "^1.57.2-alpha",
"automattic/jetpack-jitm": "^2.3.18-alpha",
"automattic/jetpack-licensing": "^1.8.3",
"automattic/jetpack-plugins-installer": "^0.2.5",
"automattic/jetpack-redirect": "^1.7.26",
Expand All @@ -17,7 +17,7 @@
"yoast/phpunit-polyfills": "1.1.0",
"automattic/jetpack-changelogger": "^3.3.8",
"automattic/wordbless": "@dev",
"automattic/jetpack-videopress": "^0.15.1"
"automattic/jetpack-videopress": "^0.15.2-alpha"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class Initializer {
*
* @var string
*/
const PACKAGE_VERSION = '3.4.2';
const PACKAGE_VERSION = '3.4.3-alpha';

/**
* HTML container ID for the IDC screen on My Jetpack page.
Expand Down
2 changes: 1 addition & 1 deletion jetpack_vendor/automattic/jetpack-partner/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "jetpack-library",
"license": "GPL-2.0-or-later",
"require": {
"automattic/jetpack-connection": "^1.57.1",
"automattic/jetpack-connection": "^1.57.2-alpha",
"automattic/jetpack-status": "^1.18.2-alpha"
},
"require-dev": {
Expand Down
4 changes: 2 additions & 2 deletions jetpack_vendor/automattic/jetpack-sync/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"type": "jetpack-library",
"license": "GPL-2.0-or-later",
"require": {
"automattic/jetpack-connection": "^1.57.1",
"automattic/jetpack-connection": "^1.57.2-alpha",
"automattic/jetpack-constants": "^1.6.23",
"automattic/jetpack-identity-crisis": "^0.10.2",
"automattic/jetpack-identity-crisis": "^0.10.3-alpha",
"automattic/jetpack-password-checker": "^0.2.14",
"automattic/jetpack-ip": "^0.1.5",
"automattic/jetpack-roles": "^1.4.24",
Expand Down
10 changes: 5 additions & 5 deletions jetpack_vendor/i18n-map.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,35 +10,35 @@
),
'jetpack-assets' => array(
'path' => 'jetpack_vendor/automattic/jetpack-assets',
'ver' => '1.18.9',
'ver' => '1.18.10-alpha1693589610',
),
'jetpack-config' => array(
'path' => 'jetpack_vendor/automattic/jetpack-config',
'ver' => '1.15.3',
),
'jetpack-connection' => array(
'path' => 'jetpack_vendor/automattic/jetpack-connection',
'ver' => '1.57.1',
'ver' => '1.57.2-alpha1693589610',
),
'jetpack-idc' => array(
'path' => 'jetpack_vendor/automattic/jetpack-identity-crisis',
'ver' => '0.10.2',
'ver' => '0.10.3-alpha1693589610',
),
'jetpack-ip' => array(
'path' => 'jetpack_vendor/automattic/jetpack-ip',
'ver' => '0.1.5',
),
'jetpack-jitm' => array(
'path' => 'jetpack_vendor/automattic/jetpack-jitm',
'ver' => '2.3.17',
'ver' => '2.3.18-alpha1693589610',
),
'jetpack-licensing' => array(
'path' => 'jetpack_vendor/automattic/jetpack-licensing',
'ver' => '1.8.3',
),
'jetpack-my-jetpack' => array(
'path' => 'jetpack_vendor/automattic/jetpack-my-jetpack',
'ver' => '3.4.2',
'ver' => '3.4.3-alpha1693589610',
),
'jetpack-password-checker' => array(
'path' => 'jetpack_vendor/automattic/jetpack-password-checker',
Expand Down
Loading

0 comments on commit a484a0c

Please sign in to comment.