Skip to content

Commit 6b59daf

Browse files
manzoorwanijkmatticbot
authored andcommitted
Backport jetpack 15.4-a.5 changes (#46383)
* Changelog and readme.txt edits. * Update stable tag in readme.txt * Fix typo Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/20429384995 Upstream-Ref: Automattic/jetpack@d30c7fd
1 parent e095a31 commit 6b59daf

File tree

4 files changed

+19
-22
lines changed

4 files changed

+19
-22
lines changed

CHANGELOG.md

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,21 @@ 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-
## [7.1.0-alpha] - unreleased
9-
10-
This is an alpha version! The changes listed here are not final.
11-
8+
## [7.1.0] - 2025-12-22
129
### Added
13-
- Add wp-build based form responses route for DataViews integration
10+
- Add wp-build based form responses route for DataViews integration. [#46206]
1411

1512
### Changed
16-
- Allow CSV files to be uploaded via contact forms
17-
- Update package dependencies.
13+
- Allow CSV files to be uploaded via contact forms. [#46308]
14+
- Update package dependencies. [#46352]
1815

1916
### Removed
20-
- Forms: remove admin class files
17+
- Remove admin class files. [#46255]
2118

2219
### Fixed
23-
- Fixed textarea placeholders to match input placeholder styling
24-
- Forms: Fix button padding
25-
- Forms: strip HTML from styled labels in error summary
20+
- Fix textarea placeholders to match input placeholder styling. [#46310]
21+
- Fix button padding. [#46331]
22+
- Strip HTML from styled labels in error summary. [#46319]
2623

2724
## [7.0.0] - 2025-12-15
2825
### Added
@@ -2003,7 +2000,7 @@ This is an alpha version! The changes listed here are not final.
20032000
- Added a new jetpack/forms package [#28409]
20042001
- Added a public load_contact_form method for initializing the contact form module. [#28416]
20052002

2006-
[7.1.0-alpha]: https://github.com/automattic/jetpack-forms/compare/v7.0.0...v7.1.0-alpha
2003+
[7.1.0]: https://github.com/automattic/jetpack-forms/compare/v7.0.0...v7.1.0
20072004
[7.0.0]: https://github.com/automattic/jetpack-forms/compare/v6.22.0...v7.0.0
20082005
[6.22.0]: https://github.com/automattic/jetpack-forms/compare/v6.21.2...v6.22.0
20092006
[6.21.2]: https://github.com/automattic/jetpack-forms/compare/v6.21.1...v6.21.2

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,21 @@
66
"require": {
77
"php": ">=7.2",
88
"automattic/jetpack-blocks": "^3.1.1",
9-
"automattic/jetpack-assets": "^4.3.18-alpha",
10-
"automattic/jetpack-connection": "^6.19.13-alpha",
9+
"automattic/jetpack-assets": "^4.3.18",
10+
"automattic/jetpack-connection": "^6.19.13",
1111
"automattic/jetpack-device-detection": "^3.3.0",
12-
"automattic/jetpack-external-connections": "^0.1.10-alpha",
12+
"automattic/jetpack-external-connections": "^0.1.10",
1313
"automattic/jetpack-jwt": "^0.2.2",
1414
"automattic/jetpack-logo": "^3.0.5",
1515
"automattic/jetpack-plans": "^0.11.1",
1616
"automattic/jetpack-status": "^6.1.2",
17-
"automattic/jetpack-sync": "^4.24.2-alpha",
17+
"automattic/jetpack-sync": "^4.24.2",
1818
"automattic/jetpack-admin-ui": "^0.5.11"
1919
},
2020
"require-dev": {
2121
"yoast/phpunit-polyfills": "^4.0.0",
2222
"automattic/jetpack-changelogger": "^6.0.12",
23-
"automattic/jetpack-connection": "^6.19.13-alpha",
23+
"automattic/jetpack-connection": "^6.19.13",
2424
"automattic/jetpack-test-environment": "@dev",
2525
"automattic/phpunit-select-config": "^1.0.3",
2626
"automattic/wp-feature-api": "@dev"

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@automattic/jetpack-forms",
3-
"version": "7.1.0-alpha",
3+
"version": "7.1.0",
44
"private": true,
55
"description": "Jetpack Forms",
66
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/forms/#readme",
@@ -38,10 +38,10 @@
3838
"dependencies": {
3939
"@automattic/babel-plugin-replace-textdomain": "^1.0.53",
4040
"@automattic/jetpack-analytics": "^1.0.6",
41-
"@automattic/jetpack-components": "^1.4.3-alpha",
42-
"@automattic/jetpack-connection": "^1.4.24-alpha",
41+
"@automattic/jetpack-components": "^1.4.3",
42+
"@automattic/jetpack-connection": "^1.4.24",
4343
"@automattic/jetpack-script-data": "^0.5.4",
44-
"@automattic/jetpack-shared-extension-utils": "^1.4.3-alpha",
44+
"@automattic/jetpack-shared-extension-utils": "^1.4.3",
4545
"@automattic/number-formatters": "^1.0.15",
4646
"@automattic/request-external-access": "1.0.1",
4747
"@automattic/ui": "1.0.2",

src/class-jetpack-forms.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515
class Jetpack_Forms {
1616

17-
const PACKAGE_VERSION = '7.1.0-alpha';
17+
const PACKAGE_VERSION = '7.1.0';
1818

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

0 commit comments

Comments
 (0)