Skip to content

Commit

Permalink
Update query parameter for JITM requests (#41542)
Browse files Browse the repository at this point in the history
* Update query parameter for JITM requests

* changelog

* Use null coalescing operator

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

Upstream-Ref: Automattic/jetpack@821e82b
  • Loading branch information
gcsecsey authored and matticbot committed Feb 11, 2025
1 parent 240a11b commit ac5b6ef
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 13 deletions.
9 changes: 3 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,9 @@ 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.37.1-alpha] - unreleased

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

## [0.37.1] - 2025-02-11
### Fixed
- Forms: fix missing translations
- Forms: fix missing translations [#41671]

## [0.37.0] - 2025-02-10
### Added
Expand Down Expand Up @@ -839,7 +836,7 @@ 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.37.1-alpha]: https://github.com/automattic/jetpack-forms/compare/v0.37.0...v0.37.1-alpha
[0.37.1]: https://github.com/automattic/jetpack-forms/compare/v0.37.0...v0.37.1
[0.37.0]: https://github.com/automattic/jetpack-forms/compare/v0.36.0...v0.37.0
[0.36.0]: https://github.com/automattic/jetpack-forms/compare/v0.35.1...v0.36.0
[0.35.1]: https://github.com/automattic/jetpack-forms/compare/v0.35.0...v0.35.1
Expand Down
6 changes: 3 additions & 3 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.2",
"automattic/jetpack-assets": "^4.0.5",
"automattic/jetpack-connection": "^6.4.0",
"automattic/jetpack-assets": "^4.0.6",
"automattic/jetpack-connection": "^6.4.1",
"automattic/jetpack-logo": "^3.0.0",
"automattic/jetpack-status": "^5.0.3",
"automattic/jetpack-sync": "^4.7.0"
},
"require-dev": {
"yoast/phpunit-polyfills": "^1.1.1",
"automattic/jetpack-changelogger": "^5.1.0",
"automattic/jetpack-connection": "^6.4.0",
"automattic/jetpack-connection": "^6.4.1",
"automattic/jetpack-test-environment": "@dev"
},
"suggest": {
Expand Down
6 changes: 3 additions & 3 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.37.1-alpha",
"version": "0.37.1",
"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.35",
"@automattic/jetpack-components": "^0.66.1-alpha",
"@automattic/jetpack-shared-extension-utils": "^0.17.0",
"@automattic/jetpack-components": "^0.66.1",
"@automattic/jetpack-shared-extension-utils": "^0.17.1",
"@wordpress/block-editor": "14.12.0",
"@wordpress/blocks": "14.6.0",
"@wordpress/compose": "7.17.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.37.1-alpha';
const PACKAGE_VERSION = '0.37.1';

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

0 comments on commit ac5b6ef

Please sign in to comment.