Skip to content

Commit

Permalink
Update wordpress monorepo (#34093)
Browse files Browse the repository at this point in the history
* Update wordpress monorepo
* Replace old hack for palette and gradient settings.
  They're replacing useSetting with useSettings. But now there's also a hook we can use.
* Add pnpmfile hack to avoid unnecessary `@ariakit/test` dep

---------

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/6855518021
  • Loading branch information
anomiex authored and matticbot committed Nov 13, 2023
1 parent 457939d commit 7543768
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 21 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.23.1-alpha] - unreleased

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

### Changed
- Updated package dependencies.

## [0.23.0] - 2023-11-13
### Changed
- Updated 'useModuleStatus' to use the new Jetpack modules store. [#33397]
Expand Down Expand Up @@ -358,6 +365,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added a new jetpack/forms package [#28409]
- Added a public load_contact_form method for initializing the contact form module. [#28416]

[0.23.1-alpha]: https://github.com/automattic/jetpack-forms/compare/v0.23.0...v0.23.1-alpha
[0.23.0]: https://github.com/automattic/jetpack-forms/compare/v0.22.6...v0.23.0
[0.22.6]: https://github.com/automattic/jetpack-forms/compare/v0.22.5...v0.22.6
[0.22.5]: https://github.com/automattic/jetpack-forms/compare/v0.22.4...v0.22.5
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
"license": "GPL-2.0-or-later",
"require": {
"automattic/jetpack-blocks": "^1.6.2",
"automattic/jetpack-assets": "^1.18.14",
"automattic/jetpack-connection": "^1.60.0",
"automattic/jetpack-assets": "^1.18.15-alpha",
"automattic/jetpack-connection": "^1.60.1-alpha",
"automattic/jetpack-status": "^1.19.0"
},
"require-dev": {
"yoast/phpunit-polyfills": "1.1.0",
"automattic/jetpack-changelogger": "^3.3.11",
"automattic/jetpack-connection": "^1.60.0",
"automattic/jetpack-connection": "^1.60.1-alpha",
"automattic/wordbless": "^0.4.1"
},
"suggest": {
Expand Down
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@automattic/jetpack-forms",
"version": "0.23.0",
"version": "0.23.1-alpha",
"description": "Jetpack Forms",
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/forms/#readme",
"bugs": {
Expand Down Expand Up @@ -30,16 +30,16 @@
],
"dependencies": {
"@automattic/jetpack-analytics": "^0.1.27",
"@automattic/jetpack-components": "^0.45.0",
"@automattic/jetpack-shared-extension-utils": "^0.13.0",
"@wordpress/block-editor": "12.12.0",
"@wordpress/blocks": "12.21.0",
"@wordpress/compose": "6.21.0",
"@wordpress/data": "9.14.0",
"@wordpress/element": "5.21.0",
"@wordpress/hooks": "3.44.0",
"@wordpress/i18n": "4.44.0",
"@wordpress/icons": "9.35.0",
"@automattic/jetpack-components": "^0.45.1-alpha",
"@automattic/jetpack-shared-extension-utils": "^0.13.1-alpha",
"@wordpress/block-editor": "12.13.0",
"@wordpress/blocks": "12.22.0",
"@wordpress/compose": "6.22.0",
"@wordpress/data": "9.15.0",
"@wordpress/element": "5.22.0",
"@wordpress/hooks": "3.45.0",
"@wordpress/i18n": "4.45.0",
"@wordpress/icons": "9.36.0",
"classnames": "2.3.2",
"copy-webpack-plugin": "11.0.0",
"email-validator": "2.0.4",
Expand All @@ -57,16 +57,16 @@
},
"devDependencies": {
"@automattic/color-studio": "2.5.0",
"@automattic/jetpack-base-styles": "^0.6.11",
"@automattic/jetpack-base-styles": "^0.6.12-alpha",
"@automattic/jetpack-webpack-config": "workspace:*",
"@automattic/remove-asset-webpack-plugin": "^1.0.19",
"@babel/core": "7.23.2",
"@babel/runtime": "7.23.2",
"@wordpress/api-fetch": "6.41.0",
"@wordpress/babel-plugin-import-jsx-pragma": "4.27.0",
"@wordpress/browserslist-config": "5.27.0",
"@wordpress/components": "25.10.0",
"@wordpress/date": "4.44.0",
"@wordpress/api-fetch": "6.42.0",
"@wordpress/babel-plugin-import-jsx-pragma": "4.28.0",
"@wordpress/browserslist-config": "5.28.0",
"@wordpress/components": "25.11.0",
"@wordpress/date": "4.45.0",
"autoprefixer": "10.4.14",
"concurrently": "7.6.0",
"glob": "7.1.6",
Expand Down
2 changes: 1 addition & 1 deletion src/class-jetpack-forms.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
class Jetpack_Forms {

const PACKAGE_VERSION = '0.23.0';
const PACKAGE_VERSION = '0.23.1-alpha';

/**
* Load the contact form module.
Expand Down

0 comments on commit 7543768

Please sign in to comment.