Skip to content

Commit 8494130

Browse files
vianaswmatticbot
authored andcommitted
Forms: fix 'Learn more' link in notification settings (#46385)
* Update learn more link in form settings For Dotcom sites it should be updated to: https://wordpress.com/support/wordpress-editor/blocks/form-block/view-contact-form-messages/#receive-push-notifications (and it should open in the Help Center, not a new tab) * changelog Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/20432466462 Upstream-Ref: Automattic/jetpack@bbc6c64
1 parent 6b59daf commit 8494130

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ 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.1-alpha] - unreleased
9+
10+
This is an alpha version! The changes listed here are not final.
11+
12+
### Fixed
13+
- Forms: update 'Learn more' link in form notification settings.
14+
815
## [7.1.0] - 2025-12-22
916
### Added
1017
- Add wp-build based form responses route for DataViews integration. [#46206]
@@ -2000,6 +2007,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
20002007
- Added a new jetpack/forms package [#28409]
20012008
- Added a public load_contact_form method for initializing the contact form module. [#28416]
20022009

2010+
[7.1.1-alpha]: https://github.com/automattic/jetpack-forms/compare/v7.1.0...v7.1.1-alpha
20032011
[7.1.0]: https://github.com/automattic/jetpack-forms/compare/v7.0.0...v7.1.0
20042012
[7.0.0]: https://github.com/automattic/jetpack-forms/compare/v6.22.0...v7.0.0
20052013
[6.22.0]: https://github.com/automattic/jetpack-forms/compare/v6.21.2...v6.22.0

dist/blocks/editor.asset.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<?php return array('dependencies' => array('jetpack-connection', 'jetpack-script-data', 'lodash', 'react', 'react-jsx-runtime', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-dom-ready', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-jp-i18n-loader', 'wp-notices', 'wp-plugins', 'wp-polyfill', 'wp-primitives', 'wp-url'), 'version' => '094f773093052a9bf92d');
1+
<?php return array('dependencies' => array('jetpack-connection', 'jetpack-script-data', 'lodash', 'react', 'react-jsx-runtime', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-dom-ready', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-jp-i18n-loader', 'wp-notices', 'wp-plugins', 'wp-polyfill', 'wp-primitives', 'wp-url'), 'version' => '652df5ed5c8b23148326');

dist/blocks/editor.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@automattic/jetpack-forms",
3-
"version": "7.1.0",
3+
"version": "7.1.1-alpha",
44
"private": true,
55
"description": "Jetpack Forms",
66
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/forms/#readme",

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';
17+
const PACKAGE_VERSION = '7.1.1-alpha';
1818

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

0 commit comments

Comments
 (0)