Skip to content

Commit 44730bf

Browse files
vianaswmatticbot
authored andcommitted
Forms: make webhooks generally available (#46422)
* Enable Forms webhooks by default * changelog * Fix test Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/20932299239 Upstream-Ref: Automattic/jetpack@c9f52d7
1 parent f62efea commit 44730bf

File tree

7 files changed

+141
-137
lines changed

7 files changed

+141
-137
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66

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

9+
### Enhancements
10+
- Forms: make form webhooks generally available.
11+
912
### Bug fixes
1013
- Slideshow: Ensure slideshows do not stretch to parent container width on mobile if no list height is set.
1114

jetpack_vendor/automattic/jetpack-forms/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ This is an alpha version! The changes listed here are not final.
1111

1212
### Added
1313
- Forms: add centralized dashboard tabs.
14+
- Forms: make form webhooks generally available.
1415

1516
### Changed
1617
- Update package dependencies.

jetpack_vendor/automattic/jetpack-forms/src/class-jetpack-forms.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,9 @@ public static function is_webhooks_enabled() {
134134
/**
135135
* Whether to enable webhooks for Jetpack Forms.
136136
*
137-
* @param bool false Whether webhooks should be enabled. Default false.
137+
* @param bool true Whether webhooks should be enabled. Default true.
138138
*/
139-
return apply_filters( 'jetpack_forms_webhooks_enabled', false );
139+
return apply_filters( 'jetpack_forms_webhooks_enabled', true );
140140
}
141141

142142
/**

jetpack_vendor/i18n-map.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
),
6767
'jetpack-forms' => array(
6868
'path' => 'jetpack_vendor/automattic/jetpack-forms',
69-
'ver' => '7.4.0-alpha1768246030',
69+
'ver' => '7.4.0-alpha1768246179',
7070
),
7171
'jetpack-image-cdn' => array(
7272
'path' => 'jetpack_vendor/automattic/jetpack-image-cdn',

0 commit comments

Comments
 (0)