Skip to content

Commit

Permalink
Update wordpress monorepo (#30375)
Browse files Browse the repository at this point in the history
* Update wordpress monorepo
* Remove `@types/wordpress__components`

  GB switched to including types in the package instead of using a
  `@types/` package.

  This also necessitated some code changes, since they're not publishing
  the component props (see WordPress/gutenberg#50157).

  Also of note is that their types for `ClipboardButton` are broken, in
  that they didn't declare that it also accepts all `Button`'s props.
  Since that component is deprecated anyway, we just replace use of it
  with the designated replacement.

---------

Co-authored-by: Renovate Bot <[email protected]>
Co-authored-by: Brad Jorsch <[email protected]>

Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/4861850947
  • Loading branch information
anomiex authored and matticbot committed May 2, 2023
1 parent 30f54a6 commit e56cf50
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions 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.7-alpha] - unreleased

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

### Changed
- Updated package dependencies.

## [2.3.6] - 2023-04-10
### Added
- Add Jetpack Autoloader package suggestion. [#29988]
Expand Down Expand Up @@ -573,6 +580,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Update Jetpack to use new JITM package

[2.3.7-alpha]: https://github.com/Automattic/jetpack-jitm/compare/v2.3.6...v2.3.7-alpha
[2.3.6]: https://github.com/Automattic/jetpack-jitm/compare/v2.3.5...v2.3.6
[2.3.5]: https://github.com/Automattic/jetpack-jitm/compare/v2.3.4...v2.3.5
[2.3.4]: https://github.com/Automattic/jetpack-jitm/compare/v2.3.3...v2.3.4
Expand Down
4 changes: 2 additions & 2 deletions 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.20",
"automattic/jetpack-assets": "^1.18.1",
"automattic/jetpack-connection": "^1.51.7",
"automattic/jetpack-assets": "^1.18.2-alpha",
"automattic/jetpack-connection": "^1.51.8-alpha",
"automattic/jetpack-device-detection": "^1.4.25",
"automattic/jetpack-logo": "^1.6.1",
"automattic/jetpack-partner": "^1.7.23",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"browserslist": "extends @wordpress/browserslist-config",
"devDependencies": {
"@automattic/jetpack-webpack-config": "workspace:*",
"@wordpress/browserslist-config": "5.13.0",
"@wordpress/browserslist-config": "5.15.0",
"sass": "1.43.3",
"sass-loader": "12.4.0",
"webpack": "5.76.0",
Expand Down
2 changes: 1 addition & 1 deletion 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.6';
const PACKAGE_VERSION = '2.3.7-alpha';

/**
* The configuration method that is called from the jetpack-config package.
Expand Down

0 comments on commit e56cf50

Please sign in to comment.