Skip to content

Commit

Permalink
Update wordpress monorepo (#39176)
Browse files Browse the repository at this point in the history
* Update wordpress monorepo
* js-packages/components: ToggleControl: Update styles for WordPress/gutenberg#63490
  That change started setting a height on the control itself (versus
  just the stuff inside it), so update our styles to override that too.
* Add `__nextHasNoMarginBottom` all over the place
  The vast majority are inside a `PanelBody`, which already overrides
  margins. Had to fix one margin on the simple-payments block.

---------

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/10684158857

Upstream-Ref: Automattic/jetpack@fe2a3d1
  • Loading branch information
anomiex authored and matticbot committed Sep 3, 2024
1 parent 70d15d7 commit 85dde7b
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 16 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).

## [0.45.1-alpha] - unreleased

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

### Changed
- Updated package dependencies.

## [0.45.0] - 2024-09-02
### Added
- Search: allow customizing highlighted fields [#39053]
Expand Down Expand Up @@ -1022,6 +1029,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Updated package dependencies.
- Update PHPUnit configs to include just what needs coverage rather than include everything then try to exclude stuff that doesn't.

[0.45.1-alpha]: https://github.com/Automattic/jetpack-search/compare/v0.45.0...v0.45.1-alpha
[0.45.0]: https://github.com/Automattic/jetpack-search/compare/v0.44.17...v0.45.0
[0.44.17]: https://github.com/Automattic/jetpack-search/compare/v0.44.16...v0.44.17
[0.44.16]: https://github.com/Automattic/jetpack-search/compare/v0.44.15...v0.44.16
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"require": {
"php": ">=7.0",
"automattic/jetpack-connection": "^3.0.0-alpha",
"automattic/jetpack-assets": "^2.3.5",
"automattic/jetpack-assets": "^2.3.6-alpha",
"automattic/jetpack-constants": "^2.0.4",
"automattic/jetpack-status": "^3.3.4",
"automattic/jetpack-config": "^2.0.4",
Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jetpack-search",
"version": "0.45.0",
"version": "0.45.1-alpha",
"description": "Package for Jetpack Search products",
"main": "main.js",
"directories": {
Expand Down Expand Up @@ -36,16 +36,16 @@
"@automattic/color-studio": "2.6.0",
"@automattic/format-currency": "1.0.1",
"@automattic/jetpack-analytics": "^0.1.31",
"@automattic/jetpack-api": "^0.17.11",
"@automattic/jetpack-base-styles": "^0.6.30",
"@automattic/jetpack-components": "^0.55.11",
"@automattic/jetpack-connection": "^0.35.3",
"@wordpress/base-styles": "5.5.0",
"@wordpress/block-editor": "14.0.0",
"@wordpress/data": "10.5.0",
"@wordpress/element": "6.5.0",
"@wordpress/i18n": "5.5.0",
"@wordpress/icons": "10.5.0",
"@automattic/jetpack-api": "^0.17.12-alpha",
"@automattic/jetpack-base-styles": "^0.6.31-alpha",
"@automattic/jetpack-components": "^0.55.12-alpha",
"@automattic/jetpack-connection": "^0.35.4-alpha",
"@wordpress/base-styles": "5.6.0",
"@wordpress/block-editor": "14.1.0",
"@wordpress/data": "10.6.0",
"@wordpress/element": "6.6.0",
"@wordpress/i18n": "5.6.0",
"@wordpress/icons": "10.6.0",
"clsx": "2.1.1",
"fast-json-stable-stringify": "2.1.0",
"lodash": "4.17.21",
Expand Down Expand Up @@ -75,9 +75,9 @@
"@testing-library/dom": "10.1.0",
"@testing-library/preact": "3.2.4",
"@testing-library/react": "15.0.7",
"@wordpress/babel-plugin-import-jsx-pragma": "5.5.0",
"@wordpress/browserslist-config": "6.5.0",
"@wordpress/dependency-extraction-webpack-plugin": "6.5.0",
"@wordpress/babel-plugin-import-jsx-pragma": "5.6.0",
"@wordpress/browserslist-config": "6.6.0",
"@wordpress/dependency-extraction-webpack-plugin": "6.6.0",
"autoprefixer": "10.4.14",
"babel-jest": "29.4.3",
"concurrently": "7.6.0",
Expand Down
2 changes: 1 addition & 1 deletion src/class-package.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Search package general information
*/
class Package {
const VERSION = '0.45.0';
const VERSION = '0.45.1-alpha';
const SLUG = 'search';

/**
Expand Down

0 comments on commit 85dde7b

Please sign in to comment.