Skip to content

Commit 8d81701

Browse files
robertsreberskimatticbot
authored andcommitted
Merge remote-tracking branch 'origin/trunk' into prerelease
Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/27545777422 Upstream-Ref: Automattic/jetpack@5ff1039
1 parent 7a263c6 commit 8d81701

5 files changed

Lines changed: 33 additions & 25 deletions

File tree

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+
## [0.9.2-alpha] - unreleased
9+
10+
This is an alpha version! The changes listed here are not final.
11+
12+
### Fixed
13+
- Newsletter: close the subscriber detail panel when its subscriber is removed instead of leaving it open with stale data
14+
815
## [0.9.1] - 2026-06-15
916
### Added
1017
- Add a setting for the Subscribe modal heading shown by Subscribe blocks using the Button-only style. [#49171]
@@ -237,6 +244,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
237244
### Changed
238245
- Update package dependencies. [#46143]
239246

247+
[0.9.2-alpha]: https://github.com/Automattic/jetpack-newsletter/compare/v0.9.1...v0.9.2-alpha
240248
[0.9.1]: https://github.com/Automattic/jetpack-newsletter/compare/v0.9.0...v0.9.1
241249
[0.9.0]: https://github.com/Automattic/jetpack-newsletter/compare/v0.8.10...v0.9.0
242250
[0.8.10]: https://github.com/Automattic/jetpack-newsletter/compare/v0.8.9...v0.8.10

build/constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
*/
1010

1111
return array(
12-
'version' => '0.9.1',
12+
'version' => '0.9.2-alpha',
1313
'build_url' => plugin_dir_url( __FILE__ ),
1414
);
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<?php return array('dependencies' => array('react', 'react-dom', 'react-jsx-runtime', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-data', 'wp-date', 'wp-deprecated', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-primitives', 'wp-private-apis', 'wp-theme', 'wp-url', 'wp-warning'), 'module_dependencies' => array(array('id' => '@wordpress/a11y', 'import' => 'static'), array('id' => '@wordpress/route', 'import' => 'static')), 'version' => '59ccaf0f8f3a7c272d30');
1+
<?php return array('dependencies' => array('react', 'react-dom', 'react-jsx-runtime', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-data', 'wp-date', 'wp-deprecated', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-primitives', 'wp-private-apis', 'wp-theme', 'wp-url', 'wp-warning'), 'module_dependencies' => array(array('id' => '@wordpress/a11y', 'import' => 'static'), array('id' => '@wordpress/route', 'import' => 'static')), 'version' => '3f84545d61c938930031');

build/routes/dashboard/content.min.js

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

src/class-settings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*/
2222
class Settings {
2323

24-
const PACKAGE_VERSION = '0.9.1';
24+
const PACKAGE_VERSION = '0.9.2-alpha';
2525

2626
const ADMIN_PAGE_SLUG = 'jetpack-newsletter';
2727

0 commit comments

Comments
 (0)