Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions projects/packages/forms/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ 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).

## [6.1.0] - 2025-09-02
### Added
- Release rating and slider fields on WP.com (not Jetpack yet). [#44998]

### Changed
- Tooling: Generate i18n function variants programmatically. [#45020]

### Fixed
- Switch to v3 and fix v2 encoding. [#44927]

## [6.0.0] - 2025-09-01
### Added
- Add default values when border radius style is missing. [#44978]
Expand Down Expand Up @@ -1507,6 +1517,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added a new jetpack/forms package [#28409]
- Added a public load_contact_form method for initializing the contact form module. [#28416]

[6.1.0]: https://github.com/automattic/jetpack-forms/compare/v6.0.0...v6.1.0
[6.0.0]: https://github.com/automattic/jetpack-forms/compare/v5.5.0...v6.0.0
[5.5.0]: https://github.com/automattic/jetpack-forms/compare/v5.4.0...v5.5.0
[5.4.0]: https://github.com/automattic/jetpack-forms/compare/v5.3.0...v5.4.0
Expand Down
4 changes: 0 additions & 4 deletions projects/packages/forms/changelog/fix-decoding-issue

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion projects/packages/forms/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"link-template": "https://github.com/automattic/jetpack-forms/compare/v${old}...v${new}"
},
"branch-alias": {
"dev-trunk": "6.0.x-dev"
"dev-trunk": "6.1.x-dev"
},
"textdomain": "jetpack-forms",
"version-constants": {
Expand Down
2 changes: 1 addition & 1 deletion projects/packages/forms/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@automattic/jetpack-forms",
"version": "6.0.0",
"version": "6.1.0",
"private": true,
"description": "Jetpack Forms",
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/forms/#readme",
Expand Down
2 changes: 1 addition & 1 deletion projects/packages/forms/src/class-jetpack-forms.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*/
class Jetpack_Forms {

const PACKAGE_VERSION = '6.0.0';
const PACKAGE_VERSION = '6.1.0';

/**
* Load the contact form module.
Expand Down
5 changes: 5 additions & 0 deletions projects/packages/my-jetpack/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ 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).

## [5.25.1] - 2025-09-02
### Changed
- Update dependencies. [#45044]

## [5.25.0] - 2025-09-01
### Added
- Add product interstitials state management. [#44772]
Expand Down Expand Up @@ -2322,6 +2326,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Created package

[5.25.1]: https://github.com/Automattic/jetpack-my-jetpack/compare/5.25.0...5.25.1
[5.25.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/5.24.0...5.25.0
[5.24.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/5.23.2...5.24.0
[5.23.2]: https://github.com/Automattic/jetpack-my-jetpack/compare/5.23.1...5.23.2
Expand Down
4 changes: 0 additions & 4 deletions projects/packages/my-jetpack/changelog/force-a-release

This file was deleted.

2 changes: 1 addition & 1 deletion projects/packages/my-jetpack/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@automattic/jetpack-my-jetpack",
"version": "5.25.0",
"version": "5.25.1",
"private": true,
"description": "WP Admin page with information and configuration shared among all Jetpack stand-alone plugins",
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/my-jetpack/#readme",
Expand Down
2 changes: 1 addition & 1 deletion projects/packages/my-jetpack/src/class-initializer.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class Initializer {
*
* @var string
*/
const PACKAGE_VERSION = '5.25.0';
const PACKAGE_VERSION = '5.25.1';

/**
* HTML container ID for the IDC screen on My Jetpack page.
Expand Down
5 changes: 5 additions & 0 deletions projects/packages/sync/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ 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).

## [4.21.1] - 2025-09-02
### Changed
- Remove unnecessary filter for deleted WooCommerce products in the WooCommerce_Products module. [#45011]

## [4.21.0] - 2025-09-01
### Changed
- Add product sync checksum support and include trash/auto-draft post statuses in queries. [#44951]
Expand Down Expand Up @@ -1540,6 +1544,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Packages: Move sync to a classmapped package

[4.21.1]: https://github.com/Automattic/jetpack-sync/compare/v4.21.0...v4.21.1
[4.21.0]: https://github.com/Automattic/jetpack-sync/compare/v4.20.0...v4.21.0
[4.20.0]: https://github.com/Automattic/jetpack-sync/compare/v4.19.0...v4.20.0
[4.19.0]: https://github.com/Automattic/jetpack-sync/compare/v4.18.2...v4.19.0
Expand Down
4 changes: 0 additions & 4 deletions projects/packages/sync/changelog/update-wc-product-deleted

This file was deleted.

2 changes: 1 addition & 1 deletion projects/packages/sync/src/class-package-version.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
class Package_Version {

const PACKAGE_VERSION = '4.21.0';
const PACKAGE_VERSION = '4.21.1';

const PACKAGE_SLUG = 'sync';

Expand Down
5 changes: 5 additions & 0 deletions projects/plugins/jetpack/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

### This is a list detailing changes for all Jetpack releases.

## 15.0-beta.2 - 2025-09-02
### Other changes <!-- Non-user-facing changes go here. This section will not be copied to readme.txt. -->
- Add MCP settings to settings endpoint. [#44921]
- Prevent PHP error when checking for available Gutenberg extensions. [#45046]

## 15.0-beta - 2025-09-01
### Enhancements
- Remove CRM installation nudge for Complete plan users [#45026]
Expand Down
4 changes: 0 additions & 4 deletions projects/plugins/jetpack/changelog/add-mcp-settings

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion projects/plugins/jetpack/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
"platform": {
"ext-intl": "0.0.0"
},
"autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_0_beta",
"autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_0_beta_2",
"allow-plugins": {
"automattic/jetpack-autoloader": true,
"automattic/jetpack-composer-plugin": true
Expand Down
4 changes: 2 additions & 2 deletions projects/plugins/jetpack/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions projects/plugins/jetpack/jetpack.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Plugin URI: https://jetpack.com
* Description: Security, performance, and marketing tools made by WordPress experts. Jetpack keeps your site protected so you can focus on more important things.
* Author: Automattic
* Version: 15.0-beta
* Version: 15.0-beta.2
* Author URI: https://jetpack.com
* License: GPL2+
* Text Domain: jetpack
Expand Down Expand Up @@ -38,7 +38,7 @@

if ( ! defined( 'JETPACK__VERSION' ) ) {
// This breaks the project version checks when a one-liner.
define( 'JETPACK__VERSION', '15.0-beta' );
define( 'JETPACK__VERSION', '15.0-beta.2' );
}
defined( 'JETPACK__MINIMUM_WP_VERSION' ) || define( 'JETPACK__MINIMUM_WP_VERSION', '6.7' );
defined( 'JETPACK__MINIMUM_PHP_VERSION' ) || define( 'JETPACK__MINIMUM_PHP_VERSION', '7.2' );
Expand Down
44 changes: 1 addition & 43 deletions projects/plugins/jetpack/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -326,49 +326,7 @@ Jetpack Backup can do a full website migration to a new host, migrate theme file


== Changelog ==
### 15.0-beta - 2025-09-01
#### Enhancements
- Add LaTeX block (Beta) to render mathematical formula.
- Blocks: Update JavaScript to be non-render blocking.
- Carousel: Fix crashes on large galleries and reduce server requests by preloading only adjacent images instead of all at once.
- Disallow inserting Simple Payments block via inserter.
- Enable Settings > Sharing WP Admin page and ensure all relevant links point to this page.
- Forms: Add MailPoet integration.
- Forms: Add new Time field.
- Forms: Add `has_field_type` method to Feedback.
- Forms: Defer JavaScript loading for more responsive page loading.
- Forms: Improve the checkbox style.
- Forms: Preserve HTML IDs when processing feedback.
- Forms: Save feedback entries in a new format.
- Forms: Show trash action alongside view action in inbox.
- Related Posts block: Update placeholder text for the site editor, and update the demo date.
- Remove CRM installation nudge for Complete plan users
- Shortcodes: Update embed reversal code to only run when content is inserted in the admin.
- Site Accelerator: Ignore images from openlibrary.org.
- Sitemaps: Add filter to allow suspending object cache addition during generation.
- Social: Add font option for Social Image Generator.
- Subscription block: Defer JavaScript loading.

#### Improved compatibility
- Open Graph Meta tags: Add new filter allowing one to define a custom site representative image.

#### Bug fixes
- Carousel: Improve image size processing to return higher quality images in additional situations.
- Forms: Fix default checkboxes styles, and allow for "browser" styles as a choice.
- Forms: Fix error wrapper when placing button inside a group block.
- Forms: Fix phone validation for responses.
- Forms: Improve checkbox validation for older checkboxes.
- Forms: Show the form variation picker if you only have the submit button.
- Image CDN: Prevent errors attempting to filter null.
- Infinite Scroll: Prevent PHP warnings in various edge cases.
- My Jetpack: Fix multisite availability check for restricted products and modules.
- Prevent PHP fatals when handling unexpected data types.
- Search: Ensure images are loaded efficiently when on https sites.
- SEO settings: Update the default Open Graph image tag to match the one in use on the site.
- Sitemaps: Fix PHP warning during generation if there are no posts or pages on the website.
- Social: Allow default image to be cleared.
- Social: Fix image generator token reset on save resulting in font not being saved.

### 15.0-beta.2 - 2025-09-02
--------

[See the previous changelogs here](https://github.com/Automattic/jetpack/blob/trunk/projects/plugins/jetpack/CHANGELOG.md#changelog)
Loading