Skip to content

Commit

Permalink
Backport jetpack 14.4-beta Changes (#42188)
Browse files Browse the repository at this point in the history
* Changelog and readme.txt edits.

* Amend readme.txt

Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/13637674210

Upstream-Ref: Automattic/jetpack@aa012ab
  • Loading branch information
zinigor authored and matticbot committed Mar 3, 2025
1 parent fafd8dc commit 6a23f03
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 22 deletions.
28 changes: 15 additions & 13 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,27 @@ 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.40.0-alpha] - unreleased
## [0.40.1-alpha] - unreleased

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

## [0.40.0] - 2025-03-03
### Added
- Forms: add min/max options to number field
- Forms: Add min/max options to number field. [#41783]

### Changed
- Contact Form: Updated editor styles for improved UI consistency and better alignment of form elements.
- Forms: add accessible name field to advanced settings
- Forms: simplify placeholder block
- Forms: use placeholder attribute in editor instead of value
- Update package dependencies.
- Contact Form: Updated editor styles for improved UI consistency and better alignment of form elements. [#42112]
- Forms: Add accessible name field to advanced settings. [#42101]
- Forms: Simplify placeholder block. [#42141]
- Forms: Use placeholder attribute in editor instead of value. [#41712]
- Update package dependencies. [#42163]

### Fixed
- Fix warnings when post author is not available.
- Forms: Ensure fields that skip rendering (like empty options fields) do not trigger validation or show value in form submission response.
- Forms: Fix 404 error when a user submits an invalid form with JavaScript disabled.
- Forms: fix field name set as label when trying to empty label
- Forms: Show plugin integrations on Atomic.
- Fix warnings when post author is not available. [#42115]
- Forms: Ensure fields that skip rendering (like empty options fields) do not trigger validation or show value in form submission response. [#41979]
- Forms: Fix 404 error when a user submits an invalid form with JavaScript disabled. [#41947]
- Forms: Fix field name set as label when trying to empty label. [#42125]
- Forms: Show plugin integrations on Atomic. [#42073]

## [0.39.0] - 2025-02-24
### Changed
Expand Down Expand Up @@ -878,7 +879,8 @@ This is an alpha version! The changes listed here are not final.
- Added a new jetpack/forms package [#28409]
- Added a public load_contact_form method for initializing the contact form module. [#28416]

[0.40.0-alpha]: https://github.com/automattic/jetpack-forms/compare/v0.39.0...v0.40.0-alpha
[0.40.1-alpha]: https://github.com/automattic/jetpack-forms/compare/v0.40.0...v0.40.1-alpha
[0.40.0]: https://github.com/automattic/jetpack-forms/compare/v0.39.0...v0.40.0
[0.39.0]: https://github.com/automattic/jetpack-forms/compare/v0.38.0...v0.39.0
[0.38.0]: https://github.com/automattic/jetpack-forms/compare/v0.37.1...v0.38.0
[0.37.1]: https://github.com/automattic/jetpack-forms/compare/v0.37.0...v0.37.1
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
"require": {
"php": ">=7.2",
"automattic/jetpack-blocks": "^3.0.4-alpha",
"automattic/jetpack-assets": "^4.0.9-alpha",
"automattic/jetpack-connection": "^6.7.0-alpha",
"automattic/jetpack-assets": "^4.0.10-alpha",
"automattic/jetpack-connection": "^6.7.1-alpha",
"automattic/jetpack-logo": "^3.0.2-alpha",
"automattic/jetpack-status": "^5.0.5-alpha",
"automattic/jetpack-status": "^5.0.6-alpha",
"automattic/jetpack-sync": "^4.8.3-alpha"
},
"require-dev": {
"yoast/phpunit-polyfills": "^1.1.1",
"automattic/jetpack-changelogger": "^6.0.0",
"automattic/jetpack-connection": "^6.7.0-alpha",
"automattic/jetpack-connection": "^6.7.1-alpha",
"automattic/jetpack-test-environment": "@dev"
},
"suggest": {
Expand Down
8 changes: 4 additions & 4 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.40.0-alpha",
"version": "0.40.1-alpha",
"description": "Jetpack Forms",
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/forms/#readme",
"bugs": {
Expand Down Expand Up @@ -32,8 +32,8 @@
],
"dependencies": {
"@automattic/jetpack-analytics": "^0.1.36",
"@automattic/jetpack-components": "^0.68.0-alpha",
"@automattic/jetpack-shared-extension-utils": "^0.17.4-alpha",
"@automattic/jetpack-components": "^0.68.0",
"@automattic/jetpack-shared-extension-utils": "^0.17.4",
"@wordpress/block-editor": "14.14.0",
"@wordpress/blocks": "14.8.0",
"@wordpress/compose": "7.19.0",
Expand All @@ -60,7 +60,7 @@
},
"devDependencies": {
"@automattic/color-studio": "4.0.0",
"@automattic/jetpack-base-styles": "^0.6.44-alpha",
"@automattic/jetpack-base-styles": "^0.6.44",
"@automattic/jetpack-webpack-config": "workspace:*",
"@automattic/remove-asset-webpack-plugin": "^1.0.27",
"@babel/core": "7.26.0",
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.40.0-alpha';
const PACKAGE_VERSION = '0.40.1-alpha';

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

0 comments on commit 6a23f03

Please sign in to comment.