Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Boost] Prepare for 1.7.0 #28407

Merged
merged 2 commits into from
Jan 17, 2023
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
8 changes: 8 additions & 0 deletions projects/js-packages/image-guide/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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.1.2] - 2023-01-17
### Added
- Fixed an issue that would break the release process [#28186]

### Fixed
- Adding prepare script back to package.json, was needed for an ESlint test [#28103]

## [0.1.1] - 2022-12-26
### Added
- Turn on auto-publish [#28032]
Expand All @@ -19,4 +26,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Removed
- Minor package.json change - removing private entry.

[0.1.2]: https://github.com/Automattic/jetpack-image-guide/compare/v0.1.1...v0.1.2
[0.1.1]: https://github.com/Automattic/jetpack-image-guide/compare/v0.1.0...v0.1.1

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion projects/js-packages/image-guide/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@automattic/jetpack-image-guide",
"version": "0.1.2-alpha",
"version": "0.1.2",
"description": "Go through the dom to analyze image size on screen vs actual file size.",
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/image-guide/#readme",
"type": "module",
Expand Down
8 changes: 8 additions & 0 deletions projects/packages/plugin-deactivation/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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.1.2] - 2023-01-17
### Changed
- Updated package dependencies.

### Fixed
- Updating package to fix boost beta release [#27550]

## [0.1.1] - 2022-11-22
### Fixed
- Fixing plugin-deactivation package
Expand All @@ -13,4 +20,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Added package to intercept plugin deactivation [#27081]

[0.1.2]: https://github.com/Automattic/jetpack-plugin-deactivation/compare/v0.1.1...v0.1.2
[0.1.1]: https://github.com/Automattic/jetpack-plugin-deactivation/compare/v0.1.0...v0.1.1

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion projects/packages/plugin-deactivation/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@automattic/jetpack-plugin-deactivation",
"version": "0.1.2-alpha",
"version": "0.1.2",
"description": "Intercept plugin deactivation with a dialog",
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/plugin-deactivation/#readme",
"bugs": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Deactivation_Handler {
*
* @var string
*/
const PACKAGE_VERSION = '0.1.2-alpha';
const PACKAGE_VERSION = '0.1.2';

/**
* Slug of the plugin to intercept deactivation for.
Expand Down
15 changes: 15 additions & 0 deletions projects/plugins/boost/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ 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).

## [1.7.0] - 2023-01-17
### Added
- New Feature: Jetpack Boost Image Guide.
- General: Add a notification bubble next to Boost in the WP-admin sidebar.
- General: Added new tracks events.
- User Experience: Add redirect to Boost dashboard after activating Boost plugin.

### Fixed
- Admin notices: only display regeneration notice to admins.
- Compatibility: Improve critical CSS compatibility with older Safari browsers.
- General: Don't let analytics failures prevent features from functioning.
- Critical CSS: Fixed an issue where notices to regenerate critical CSS were showing unnecessarily.
- General: Fix woocommerce deprecation warning.

## [1.6.0] - 2022-12-05
### Added
- General: New deactivation survey.
Expand Down Expand Up @@ -192,6 +206,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[1.3.0-beta]: https://github.com/Automattic/jetpack-boost-production/compare/v1.2.0...v1.3.0-beta
[1.2.0]: https://github.com/Automattic/jetpack-boost-production/compare/v1.1.0...v1.2.0-beta
[1.4.3-beta]: https://github.com/Automattic/jetpack-boost-production/compare/v1.4.2...v1.4.3-beta
[1.7.0]: https://github.com/Automattic/jetpack-boost-production/compare/v1.6.0...v1.7.0
[1.6.0]: https://github.com/Automattic/jetpack-boost-production/compare/v1.5.4...v1.6.0
[1.5.4]: https://github.com/Automattic/jetpack-boost-production/compare/v1.5.3...v1.5.4
[1.5.3]: https://github.com/Automattic/jetpack-boost-production/compare/v1.5.1...v1.5.3
Expand Down

This file was deleted.

4 changes: 0 additions & 4 deletions projects/plugins/boost/changelog/add-error-tracks

This file was deleted.

5 changes: 0 additions & 5 deletions projects/plugins/boost/changelog/add-image-guide-package

This file was deleted.

4 changes: 0 additions & 4 deletions projects/plugins/boost/changelog/add-image-guide-tracks

This file was deleted.

5 changes: 0 additions & 5 deletions projects/plugins/boost/changelog/add-license-key-selector

This file was deleted.

This file was deleted.

5 changes: 0 additions & 5 deletions projects/plugins/boost/changelog/add-shared-get-blog-id

This file was deleted.

This file was deleted.

This file was deleted.

4 changes: 0 additions & 4 deletions projects/plugins/boost/changelog/add-tracks

This file was deleted.

This file was deleted.

4 changes: 0 additions & 4 deletions projects/plugins/boost/changelog/boost-enable-image-guide

This file was deleted.

5 changes: 0 additions & 5 deletions projects/plugins/boost/changelog/boost-fix-ig-ff-position

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

5 changes: 0 additions & 5 deletions projects/plugins/boost/changelog/changelogger-merge

This file was deleted.

5 changes: 0 additions & 5 deletions projects/plugins/boost/changelog/fix-boost-e2e

This file was deleted.

4 changes: 0 additions & 4 deletions projects/plugins/boost/changelog/fix-boost-regenerate-notice

This file was deleted.

This file was deleted.

4 changes: 0 additions & 4 deletions projects/plugins/boost/changelog/fix-image-guide-1x

This file was deleted.

This file was deleted.

4 changes: 0 additions & 4 deletions projects/plugins/boost/changelog/fix-regenerate-notice

This file was deleted.

4 changes: 0 additions & 4 deletions projects/plugins/boost/changelog/fix-safari

This file was deleted.

4 changes: 0 additions & 4 deletions projects/plugins/boost/changelog/fix-woo-deprecation-warnings

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

4 changes: 0 additions & 4 deletions projects/plugins/boost/changelog/renovate-babel-monorepo

This file was deleted.

4 changes: 0 additions & 4 deletions projects/plugins/boost/changelog/renovate-babel-monorepo#2

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

4 changes: 0 additions & 4 deletions projects/plugins/boost/changelog/renovate-postcss-8.x

This file was deleted.

4 changes: 0 additions & 4 deletions projects/plugins/boost/changelog/renovate-postcss-8.x#2

This file was deleted.

4 changes: 0 additions & 4 deletions projects/plugins/boost/changelog/renovate-wordpress-monorepo

This file was deleted.

This file was deleted.

5 changes: 0 additions & 5 deletions projects/plugins/boost/changelog/update-blaze-package-todos

This file was deleted.

This file was deleted.

This file was deleted.

4 changes: 0 additions & 4 deletions projects/plugins/boost/changelog/update-boost-version-1.7.0

This file was deleted.

5 changes: 0 additions & 5 deletions projects/plugins/boost/changelog/update-boost-version-1.7.0#2

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading