Skip to content

Commit 1ff1dd5

Browse files
robertsreberskimatticbot
authored andcommitted
Further refine verbosity of logs
Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/26404289892 Upstream-Ref: Automattic/jetpack@fb5b09d
1 parent 2354ed3 commit 1ff1dd5

4 files changed

Lines changed: 10 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,14 @@ 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.8.9-alpha] - unreleased
9-
10-
This is an alpha version! The changes listed here are not final.
11-
8+
## [0.8.9] - 2026-05-25
129
### Changed
13-
- Newsletter: Normalize page tabs onto shared minimal variant + jp-admin-page-tabs--minimal wrapper modifier; drop bespoke jetpack-newsletter-page__tabs-row class. Bump @wordpress/ui to 0.13.0.
14-
- Update package dependencies.
10+
- Normalize page tabs onto the shared minimal variant and `jp-admin-page-tabs--minimal` wrapper modifier. [#48964]
11+
- Update package dependencies. [#48405] [#49012]
1512

1613
### Fixed
17-
- Drop dead @wordpress/admin-ui build-style import that no longer exists in 2.x; bump the package's admin-ui pin to 2.1.0.
18-
- Fixed Settings tab toggles that controlled the wrong setting due to duplicate element IDs.
14+
- Drop dead `@wordpress/admin-ui` build-style import that no longer exists in 2.x. [#49007]
15+
- Fix Settings tab toggles that controlled the wrong setting due to duplicate element IDs. [#49102]
1916

2017
## [0.8.8] - 2026-05-19
2118
### Changed
@@ -199,7 +196,7 @@ This is an alpha version! The changes listed here are not final.
199196
### Changed
200197
- Update package dependencies. [#46143]
201198

202-
[0.8.9-alpha]: https://github.com/Automattic/jetpack-newsletter/compare/v0.8.8...v0.8.9-alpha
199+
[0.8.9]: https://github.com/Automattic/jetpack-newsletter/compare/v0.8.8...v0.8.9
203200
[0.8.8]: https://github.com/Automattic/jetpack-newsletter/compare/v0.8.7...v0.8.8
204201
[0.8.7]: https://github.com/Automattic/jetpack-newsletter/compare/v0.8.6...v0.8.7
205202
[0.8.6]: https://github.com/Automattic/jetpack-newsletter/compare/v0.8.5...v0.8.6

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.8.9-alpha',
12+
'version' => '0.8.9',
1313
'build_url' => plugin_dir_url( __FILE__ ),
1414
);

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
"php": ">=7.2",
88
"automattic/jetpack-admin-ui": "^0.8.6",
99
"automattic/jetpack-assets": "^4.3.38",
10-
"automattic/jetpack-connection": "^8.4.0-alpha",
10+
"automattic/jetpack-connection": "^8.4.0",
1111
"automattic/jetpack-plans": "^0.11.6",
1212
"automattic/jetpack-redirect": "^3.0.12",
1313
"automattic/jetpack-status": "^6.1.5",
14-
"automattic/jetpack-wp-build-polyfills": "^0.1.10-alpha"
14+
"automattic/jetpack-wp-build-polyfills": "^0.1.10"
1515
},
1616
"require-dev": {
1717
"yoast/phpunit-polyfills": "^4.0.0",

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.8.9-alpha';
24+
const PACKAGE_VERSION = '0.8.9';
2525

2626
const ADMIN_PAGE_SLUG = 'jetpack-newsletter';
2727

0 commit comments

Comments
 (0)