Skip to content

Commit

Permalink
Launchpad: New behaviour for navigator checklists (#33011)
Browse files Browse the repository at this point in the history
* add checklists behaviour

* changelog

* clearer code

* more defaults

* add more info to the checklists

* add title to response

* clearer code

---------

Co-authored-by: Andrés Blanco <email@gmail.com>

Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/6167756449
  • Loading branch information
haqadn authored and matticbot committed Sep 13, 2023
1 parent 88bfeb4 commit fafcdf6
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 27 deletions.
8 changes: 8 additions & 0 deletions 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).

## [3.4.5-alpha] - unreleased

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

### Changed
- Updated package dependencies.

## [3.4.4] - 2023-09-11
### Changed
- General: remove WP 6.1 backwards compatibility checks [#32772]
Expand Down Expand Up @@ -1014,6 +1021,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Created package

[3.4.5-alpha]: https://github.com/Automattic/jetpack-my-jetpack/compare/3.4.4...3.4.5-alpha
[3.4.4]: https://github.com/Automattic/jetpack-my-jetpack/compare/3.4.3...3.4.4
[3.4.3]: https://github.com/Automattic/jetpack-my-jetpack/compare/3.4.2...3.4.3
[3.4.2]: https://github.com/Automattic/jetpack-my-jetpack/compare/3.4.1...3.4.2
Expand Down
2 changes: 1 addition & 1 deletion build/index.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('react', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-data', 'wp-date', 'wp-element', 'wp-i18n', 'wp-polyfill', 'wp-primitives', 'wp-url'), 'version' => 'a7114d9b859b793c9b62');
<?php return array('dependencies' => array('react', 'wp-api-fetch', 'wp-components', 'wp-compose', 'wp-data', 'wp-date', 'wp-element', 'wp-i18n', 'wp-polyfill', 'wp-primitives', 'wp-url'), 'version' => 'a67c7452ff5b30375083');
36 changes: 18 additions & 18 deletions build/index.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"require": {
"automattic/jetpack-admin-ui": "^0.2.22",
"automattic/jetpack-assets": "^1.18.10",
"automattic/jetpack-connection": "^1.57.3",
"automattic/jetpack-connection": "^1.57.4-alpha",
"automattic/jetpack-jitm": "^2.3.18",
"automattic/jetpack-licensing": "^1.8.3",
"automattic/jetpack-plugins-installer": "^0.2.5",
Expand All @@ -17,7 +17,7 @@
"yoast/phpunit-polyfills": "1.1.0",
"automattic/jetpack-changelogger": "^3.3.8",
"automattic/wordbless": "@dev",
"automattic/jetpack-videopress": "^0.15.3"
"automattic/jetpack-videopress": "^0.16.0-alpha"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@automattic/jetpack-my-jetpack",
"version": "3.4.4",
"version": "3.4.5-alpha",
"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",
"bugs": {
Expand All @@ -26,8 +26,8 @@
"@automattic/jetpack-analytics": "^0.1.27",
"@automattic/jetpack-api": "^0.16.2",
"@automattic/jetpack-base-styles": "^0.6.9",
"@automattic/jetpack-components": "^0.42.2",
"@automattic/jetpack-connection": "^0.29.9",
"@automattic/jetpack-components": "^0.42.3-alpha",
"@automattic/jetpack-connection": "^0.29.10-alpha",
"@automattic/jetpack-licensing": "workspace:*",
"@wordpress/api-fetch": "6.38.0",
"@wordpress/components": "25.7.0",
Expand All @@ -46,8 +46,8 @@
],
"devDependencies": {
"@automattic/jetpack-webpack-config": "workspace:*",
"@babel/core": "7.22.11",
"@babel/preset-env": "7.22.14",
"@babel/core": "7.22.17",
"@babel/preset-env": "7.22.15",
"@storybook/react": "7.1.0",
"@testing-library/dom": "8.19.1",
"@testing-library/react": "13.4.0",
Expand Down
2 changes: 1 addition & 1 deletion src/class-initializer.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class Initializer {
*
* @var string
*/
const PACKAGE_VERSION = '3.4.4';
const PACKAGE_VERSION = '3.4.5-alpha';

/**
* HTML container ID for the IDC screen on My Jetpack page.
Expand Down

0 comments on commit fafcdf6

Please sign in to comment.