Skip to content

Commit d4a4ecc

Browse files
chrisbliss18matticbot
authored andcommitted
Updated package versions for automattic/jetpack-search-plugin
Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/31733244439 Upstream-Ref: Automattic/jetpack@900611a
1 parent d3998b5 commit d4a4ecc

42 files changed

Lines changed: 319 additions & 342 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,10 @@ 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-
## [7.1.0-alpha] - unreleased
9-
10-
This is an alpha version! The changes listed here are not final.
11-
8+
## [7.1.0] - 2026-08-13
129
### Added
13-
- Add the Activity Log page to wp-admin, so it is available without the Jetpack plugin installed.
14-
- Search Blocks: add a No Results block so the search empty state can hold any blocks — links, images, buttonsinstead of plain text. The Results List message settings are deprecated and keep rendering.
10+
- Add the Activity Log page to wp-admin, so it is available without the Jetpack plugin installed. [#51222]
11+
- Search Blocks: Add a No Results block so empty states can contain links, images, buttons, and other blocks instead of plain text. Continue rendering existing Results List messages while deprecating their settings. [#51164]
1512

1613
## [7.0.1] - 2026-07-22
1714
### Changed
@@ -335,7 +332,7 @@ This is an alpha version! The changes listed here are not final.
335332

336333
[1.1.0-beta]: https://github.com/Automattic/jetpack-search-plugin/compare/1.0.0...1.1.0-beta
337334
[1.2.0-beta]: https://github.com/Automattic/jetpack-search-plugin/compare/1.1.0...1.2.0-beta
338-
[7.1.0-alpha]: https://github.com/Automattic/jetpack-search-plugin/compare/7.0.1...7.1.0-alpha
335+
[7.1.0]: https://github.com/Automattic/jetpack-search-plugin/compare/7.0.1...7.1.0
339336
[7.0.1]: https://github.com/Automattic/jetpack-search-plugin/compare/7.0.0...7.0.1
340337
[7.0.0]: https://github.com/Automattic/jetpack-search-plugin/compare/6.0.0...7.0.0
341338
[6.0.0]: https://github.com/Automattic/jetpack-search-plugin/compare/5.2.2...6.0.0

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
"type": "wordpress-plugin",
55
"license": "GPL-2.0-or-later",
66
"require": {
7-
"automattic/jetpack-activity-log": "^0.2.2",
7+
"automattic/jetpack-activity-log": "^0.2.3",
88
"automattic/jetpack-autoloader": "^5.0.23",
99
"automattic/jetpack-composer-plugin": "^4.0.9",
1010
"automattic/jetpack-config": "^3.1.3",
11-
"automattic/jetpack-connection": "^8.10.2-alpha",
12-
"automattic/jetpack-my-jetpack": "^5.43.0-alpha",
13-
"automattic/jetpack-search": "^7.4.0-alpha",
14-
"automattic/jetpack-stats": "^0.20.2-alpha",
15-
"automattic/jetpack-status": "^6.3.1-alpha",
11+
"automattic/jetpack-connection": "^8.10.2",
12+
"automattic/jetpack-my-jetpack": "^5.43.0",
13+
"automattic/jetpack-search": "^7.4.0",
14+
"automattic/jetpack-stats": "^0.20.2",
15+
"automattic/jetpack-status": "^6.3.1",
1616
"automattic/jetpack-sync": "^4.45.3"
1717
},
1818
"require-dev": {
@@ -53,7 +53,7 @@
5353
},
5454
"config": {
5555
"sort-packages": true,
56-
"autoloader-suffix": "b462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ7_1_0_alpha",
56+
"autoloader-suffix": "b462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ7_1_0",
5757
"allow-plugins": {
5858
"automattic/jetpack-autoloader": true,
5959
"automattic/jetpack-composer-plugin": true,

jetpack-search.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Plugin Name: Jetpack Search
55
* Plugin URI: https://jetpack.com/search/
66
* Description: Easily add cloud-powered instant search and filters to your website or WooCommerce store with advanced algorithms that boost your search results based on traffic to your site.
7-
* Version: 7.1.0-alpha
7+
* Version: 7.1.0
88
* Author: Automattic - Jetpack Search team
99
* Author URI: https://jetpack.com/
1010
* License: GPLv2 or later
@@ -26,7 +26,7 @@
2626
define( 'JETPACK_SEARCH_PLUGIN__FILE', __FILE__ );
2727
define( 'JETPACK_SEARCH_PLUGIN__FILE_RELATIVE_PATH', plugin_basename( __FILE__ ) );
2828
define( 'JETPACK_SEARCH_PLUGIN__SLUG', 'jetpack-search' );
29-
define( 'JETPACK_SEARCH_PLUGIN__VERSION', '7.1.0-alpha' );
29+
define( 'JETPACK_SEARCH_PLUGIN__VERSION', '7.1.0' );
3030
defined( 'JETPACK_CLIENT__AUTH_LOCATION' ) || define( 'JETPACK_CLIENT__AUTH_LOCATION', 'header' );
3131

3232
defined( 'JETPACK__API_BASE' ) || define( 'JETPACK__API_BASE', 'https://jetpack.wordpress.com/jetpack.' );

jetpack_vendor/automattic/jetpack-activity-log/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ 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.2.3] - 2026-08-13
9+
### Changed
10+
- Update dependencies. [#50841]
11+
812
## [0.2.2] - 2026-08-10
913
### Changed
1014
- Update package dependencies. [#50509]
@@ -107,6 +111,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
107111

108112
Initial release.
109113

114+
[0.2.3]: https://github.com/Automattic/jetpack-activity-log/compare/v0.2.2...v0.2.3
110115
[0.2.2]: https://github.com/Automattic/jetpack-activity-log/compare/v0.2.1...v0.2.2
111116
[0.2.1]: https://github.com/Automattic/jetpack-activity-log/compare/v0.2.0...v0.2.1
112117
[0.2.0]: https://github.com/Automattic/jetpack-activity-log/compare/v0.1.12...v0.2.0

jetpack_vendor/automattic/jetpack-activity-log/src/class-package-version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717
class Package_Version {
1818

19-
const PACKAGE_VERSION = '0.2.2';
19+
const PACKAGE_VERSION = '0.2.3';
2020

2121
const PACKAGE_SLUG = 'activity-log';
2222

jetpack_vendor/automattic/jetpack-assets/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [4.4.10] - 2026-08-06
99
### Fixed
10-
- Script Data: Decode HTML entities in the shared site title to avoid consumers seeing the encoded entities. [#50991]
10+
- Script Data: decode HTML entities in the shared site title so consumers (e.g. the Newsletter Sender Settings panel) don't show literal entities like `'` for site names containing an apostrophe or other special characters. [#50991]
1111

1212
## [4.4.9] - 2026-07-31
1313
### Fixed

jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,15 @@ 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-
## [8.10.2-alpha] - unreleased
9-
10-
This is an alpha version! The changes listed here are not final.
11-
8+
## [8.10.2] - 2026-08-13
129
### Security
13-
- Connection: Leave another user's broken-token error out of the connection error data, so the reconnect CTA is no longer offered against a token it cannot restore.
10+
- Connection: Leave another user's broken-token error out of the connection error data, so the reconnect CTA is no longer offered against a token it cannot restore. [#51034]
1411

1512
### Changed
16-
- Connection: Warn a secondary admin that reconnecting on the connection owner's behalf transfers ownership and disconnects every other user.
13+
- Connection: Warn a secondary admin that reconnecting on the connection owner's behalf transfers ownership and disconnects every other user. [#51034]
1714

1815
### Fixed
19-
- Connection: Stop displaying connection owner errors that refer to a previous owner.
16+
- Connection: Stop displaying connection owner errors that refer to a previous owner. [#51034]
2017

2118
## [8.10.1] - 2026-08-12
2219
### Fixed
@@ -2003,7 +2000,7 @@ This is an alpha version! The changes listed here are not final.
20032000

20042001
- Separate the connection library into its own package.
20052002

2006-
[8.10.2-alpha]: https://github.com/Automattic/jetpack-connection/compare/v8.10.1...v8.10.2-alpha
2003+
[8.10.2]: https://github.com/Automattic/jetpack-connection/compare/v8.10.1...v8.10.2
20072004
[8.10.1]: https://github.com/Automattic/jetpack-connection/compare/v8.10.0...v8.10.1
20082005
[8.10.0]: https://github.com/Automattic/jetpack-connection/compare/v8.9.0...v8.10.0
20092006
[8.9.0]: https://github.com/Automattic/jetpack-connection/compare/v8.8.2...v8.9.0

jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-options.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ public static function get_option_names( $type = 'compact' ) {
9292
'id', // (int) The Client ID/WP.com Blog ID of this site.
9393
'publicize_connections', // (array) An array of Publicize connections from WordPress.com.
9494
'master_user', // (int) The local User ID of the user who connected this site to jetpack.wordpress.com.
95-
'protected_owner', // (array) Anchor identifying the locked connection owner. WordPress.com is authoritative; this is a local cache. Keys: wpcom_user_id, email, local_user_id, locked, confirmed_at, confirmed_by.
9695
'version', // (string) Used during upgrade procedure to auto-activate new modules. version:time.
9796
'old_version', // (string) Used to determine which modules are the most recently added. previous_version:time.
9897
'fallback_no_verify_ssl_certs', // (int) Flag for determining if this host must skip SSL Certificate verification due to misconfigured SSL.
@@ -251,7 +250,7 @@ private static function get_option_from_database( $name, $default = false ) {
251250
*
252251
* @var array
253252
*/
254-
private static $external_storage_allowlist = array( 'blog_token', 'id', 'master_user', 'protected_owner', 'user_tokens' );
253+
private static $external_storage_allowlist = array( 'blog_token', 'id', 'master_user', 'user_tokens' );
255254

256255
/**
257256
* Determines if external storage should be used for a given option.
@@ -605,7 +604,6 @@ public static function get_all_jetpack_options( $strip_unsafe_options = true ) {
605604
$unsafe_options = array(
606605
'id', // (int) The Client ID/WP.com Blog ID of this site.
607606
'master_user', // (int) The local User ID of the user who connected this site to jetpack.wordpress.com.
608-
'protected_owner', // (array) Anchor identifying the locked connection owner. Resetting it would unlock ownership while the connection survives.
609607
'version', // (string) Used during upgrade procedure to auto-activate new modules. version:time
610608

611609
// non_compact.

jetpack_vendor/automattic/jetpack-connection/src/class-manager.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2038,13 +2038,9 @@ public function delete_all_connection_tokens( $ignore_connected_plugins = false
20382038
return false;
20392039
}
20402040

2041-
// The protected owner anchor is a local cache of a record WordPress.com owns. Dropping it
2042-
// here keeps a disconnected site from carrying a lock that names a user who no longer holds
2043-
// a token; the anchor is re-established from WordPress.com when the owner reconnects.
20442041
\Jetpack_Options::delete_option(
20452042
array(
20462043
'master_user',
2047-
'protected_owner',
20482044
'time_diff',
20492045
'fallback_no_verify_ssl_certs',
20502046
)

jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313
class Package_Version {
1414

15-
const PACKAGE_VERSION = '8.10.2-alpha';
15+
const PACKAGE_VERSION = '8.10.2';
1616

1717
const PACKAGE_SLUG = 'connection';
1818

0 commit comments

Comments
 (0)