Skip to content

Commit 9b69de5

Browse files
tbradshamatticbot
authored andcommitted
Changelog and readme.txt edits. (#42671)
Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/14039060226 Upstream-Ref: Automattic/jetpack@81a85ed
1 parent 1fe0f9c commit 9b69de5

File tree

4 files changed

+16
-19
lines changed

4 files changed

+16
-19
lines changed

CHANGELOG.md

+9-12
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,20 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [0.44.0-alpha] - unreleased
9-
10-
This is an alpha version! The changes listed here are not final.
11-
8+
## [0.44.0] - 2025-03-24
129
### Changed
13-
- Forms: update "submission settings" panel copy
14-
- Update dependencies
10+
- Update editor sidebar copy. [#42642]
11+
- Update dependencies. [#42564]
1512

1613
### Fixed
17-
- Components: Add __next40pxDefaultSize to controls, preventing deprecation notices.
18-
- Forms: Fix `source` filtering in classic view for responses management
19-
- Forms: Prevent custom label font sizes preventing animated label font size reduction
20-
- Placeholder should always display if it's a non-empty string
14+
- Components: Prevent deprecation notices by adding `__next40pxDefaultSize` to controls. [#42576]
15+
- Fix `source` filtering in classic view for responses management. [#42641]
16+
- Prevent custom label font sizes from breaking animated label font size reduction. [#42248]
17+
- Placeholder should always display if it's a non-empty string. [#42173]
2118

2219
## [0.43.0] - 2025-03-18
2320
### Added
24-
- Forms: Add a quick link to the admin bar to form entries [#42474]
21+
- Add a quick link to the admin bar to form entries. [#42474]
2522

2623
### Changed
2724
- Remove Google Drive beta badge. [#42481]
@@ -922,7 +919,7 @@ This is an alpha version! The changes listed here are not final.
922919
- Added a new jetpack/forms package [#28409]
923920
- Added a public load_contact_form method for initializing the contact form module. [#28416]
924921

925-
[0.44.0-alpha]: https://github.com/automattic/jetpack-forms/compare/v0.43.0...v0.44.0-alpha
922+
[0.44.0]: https://github.com/automattic/jetpack-forms/compare/v0.43.0...v0.44.0
926923
[0.43.0]: https://github.com/automattic/jetpack-forms/compare/v0.42.1...v0.43.0
927924
[0.42.1]: https://github.com/automattic/jetpack-forms/compare/v0.42.0...v0.42.1
928925
[0.42.0]: https://github.com/automattic/jetpack-forms/compare/v0.41.0...v0.42.0

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55
"license": "GPL-2.0-or-later",
66
"require": {
77
"php": ">=7.2",
8-
"automattic/jetpack-blocks": "^3.0.8-alpha",
8+
"automattic/jetpack-blocks": "^3.0.8",
99
"automattic/jetpack-assets": "^4.0.14",
10-
"automattic/jetpack-connection": "^6.8.0-alpha",
10+
"automattic/jetpack-connection": "^6.8.0",
1111
"automattic/jetpack-logo": "^3.0.4",
1212
"automattic/jetpack-status": "^5.0.10",
1313
"automattic/jetpack-sync": "^4.9.2"
1414
},
1515
"require-dev": {
1616
"yoast/phpunit-polyfills": "^3.0.0",
1717
"automattic/jetpack-changelogger": "^6.0.2",
18-
"automattic/jetpack-connection": "^6.8.0-alpha",
18+
"automattic/jetpack-connection": "^6.8.0",
1919
"automattic/jetpack-test-environment": "@dev",
2020
"automattic/phpunit-select-config": "^1.0.1"
2121
},

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "@automattic/jetpack-forms",
4-
"version": "0.44.0-alpha",
4+
"version": "0.44.0",
55
"description": "Jetpack Forms",
66
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/forms/#readme",
77
"bugs": {
@@ -33,8 +33,8 @@
3333
"dependencies": {
3434
"@automattic/babel-plugin-replace-textdomain": "^1.0.44",
3535
"@automattic/jetpack-analytics": "^0.1.36",
36-
"@automattic/jetpack-components": "^0.70.0-alpha",
37-
"@automattic/jetpack-shared-extension-utils": "^0.18.4",
36+
"@automattic/jetpack-components": "^0.70.0",
37+
"@automattic/jetpack-shared-extension-utils": "^0.18.5",
3838
"@wordpress/block-editor": "14.14.0",
3939
"@wordpress/blocks": "14.8.0",
4040
"@wordpress/components": "29.5.0",

src/class-jetpack-forms.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616
class Jetpack_Forms {
1717

18-
const PACKAGE_VERSION = '0.44.0-alpha';
18+
const PACKAGE_VERSION = '0.44.0';
1919

2020
/**
2121
* Load the contact form module.

0 commit comments

Comments
 (0)