Skip to content

Commit

Permalink
Hide the plugin banner on non-wpcom-connected users or agency-managed…
Browse files Browse the repository at this point in the history
… users (#38532)

Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10147229916

Upstream-Ref: Automattic/jetpack@aee710c
  • Loading branch information
lupus2k authored and matticbot committed Jul 29, 2024
1 parent 0b2b233 commit 59feeba
Show file tree
Hide file tree
Showing 19 changed files with 329 additions and 92 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"require": {
"automattic/jetpack-mu-wpcom": "^5.50.1-alpha"
"automattic/jetpack-mu-wpcom": "^5.51.0-alpha"
},
"require-dev": {
"yoast/phpunit-polyfills": "1.1.0",
Expand Down
60 changes: 30 additions & 30 deletions composer.lock

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

7 changes: 5 additions & 2 deletions vendor/automattic/jetpack-mu-wpcom/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +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).

## [5.50.1-alpha] - unreleased
## [5.51.0-alpha] - unreleased

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

### Changed
- Hide the plugin banner on non-wpcom-connected users or agency-managed users

### Fixed
- Admin Bar: Fix the order of the top-right items on Atomic sites

Expand Down Expand Up @@ -1061,7 +1064,7 @@ This is an alpha version! The changes listed here are not final.

- Testing initial package release.

[5.50.1-alpha]: https://github.com/Automattic/jetpack-mu-wpcom/compare/v5.50.0...v5.50.1-alpha
[5.51.0-alpha]: https://github.com/Automattic/jetpack-mu-wpcom/compare/v5.50.0...v5.51.0-alpha
[5.50.0]: https://github.com/Automattic/jetpack-mu-wpcom/compare/v5.49.1...v5.50.0
[5.49.1]: https://github.com/Automattic/jetpack-mu-wpcom/compare/v5.49.0...v5.49.1
[5.49.0]: https://github.com/Automattic/jetpack-mu-wpcom/compare/v5.48.0...v5.49.0
Expand Down
2 changes: 1 addition & 1 deletion vendor/automattic/jetpack-mu-wpcom/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
},
"autotagger": true,
"branch-alias": {
"dev-trunk": "5.50.x-dev"
"dev-trunk": "5.51.x-dev"
},
"textdomain": "jetpack-mu-wpcom",
"version-constants": {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<?php return array('dependencies' => array(), 'version' => 'ca08bc0d3740de2c4221');

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

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

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<?php return array('dependencies' => array(), 'version' => 'b997883d538557d6ca53');

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

Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* Jetpack_Mu_Wpcom main class.
*/
class Jetpack_Mu_Wpcom {
const PACKAGE_VERSION = '5.50.1-alpha';
const PACKAGE_VERSION = '5.51.0-alpha';
const PKG_DIR = __DIR__ . '/../';
const BASE_DIR = __DIR__ . '/';
const BASE_FILE = __FILE__;
Expand Down Expand Up @@ -128,6 +128,7 @@ public static function load_wpcom_user_features() {
require_once __DIR__ . '/features/wpcom-admin-interface/wpcom-admin-interface.php';
require_once __DIR__ . '/features/wpcom-admin-menu/wpcom-admin-menu.php';
require_once __DIR__ . '/features/wpcom-command-palette/wpcom-command-palette.php';
require_once __DIR__ . '/features/wpcom-plugins/wpcom-plugins.php';
require_once __DIR__ . '/features/wpcom-sidebar-notice/wpcom-sidebar-notice.php';
require_once __DIR__ . '/features/wpcom-site-management-widget/class-wpcom-site-management-widget.php';
require_once __DIR__ . '/features/wpcom-themes/wpcom-themes.php';
Expand Down
Loading

0 comments on commit 59feeba

Please sign in to comment.