Skip to content

Commit 33d6820

Browse files
tbradshamatticbot
authored andcommitted
Updated package versions for automattic/jetpack-search-plugin
Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/15560947636 Upstream-Ref: Automattic/jetpack@3ccf3bd
1 parent 8551ad8 commit 33d6820

Some content is hidden

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

53 files changed

+859
-1013
lines changed

CHANGELOG.md

Lines changed: 20 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -5,36 +5,32 @@ 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-
## [5.0.0-alpha] - unreleased
9-
10-
This is an alpha version! The changes listed here are not final.
11-
8+
## [5.0.0] - 2025-06-10
129
### Added
13-
- Added more error logging.
14-
- Add highlighting of search term in returned search results.
15-
- Adding My Jetpack tour.
10+
- Add more error logging. [#42959]
11+
- Add My Jetpack tour. [#42880]
12+
- Highlight search terms in returned search results. [#43110]
1613

1714
### Changed
18-
- E2E Tests: Update config file encryption algorithm.
19-
- jetpack-assets now requires jetpack-status so updating composer lock files.
20-
- My Jetpack: Hide backup failure notice when backups are deactivated.
21-
- My Jetpack: Optimize the images for onboarding slider for faster page load.
22-
- My Jetpack: Updated the onboarding UI, changing it to a single button
23-
- Update package dependencies.
15+
- E2E Tests: Update config file encryption algorithm. [#43523]
16+
- My Jetpack: Hide backup failure notice when backups are deactivated. [#43568]
17+
- My Jetpack: Optimize the images for onboarding slider for faster page load. [#43473]
18+
- My Jetpack: Update the onboarding UI, changing it to a single button. [#43203]
19+
- Update package dependencies. [#43071] [#43085] [#43425] [#43839]
2420

2521
### Removed
26-
- Classic Themes: no longer attempts to add a widget to the main sidebar, only replace the Core Search widget.
27-
- General: Update minimum WordPress version to 6.7.
22+
- Classic Themes: Replace the Core Search widget instead of adding a new widget to the main sidebar. [#43450]
23+
- General: Update minimum WordPress version to 6.7. [#43192]
2824

2925
### Fixed
30-
- Addresses body_class filter fatal in older versions of the Blaskan theme.
31-
- JS Packages: Decrease CSS priority of global styles to prevent them from applying within the editor
32-
- Linting: Fix more Stylelint violations.
33-
- Mitigate bug with certain p2 theme
34-
- My Jetpack: Fixed Onboarding UI responsiveness at 600px.
35-
- My Jetpack: Fix readability of license activation button on hover.
36-
- My Jetpack: Fix social login getting stuck when email input not empty
37-
- Protect against improper calls to the_title() filter.
26+
- Address `body_class` filter fatal in older versions of the Blaskan theme. [#43797]
27+
- Block editor: Fix layout issues with the Media Library modal buttons. [#43035]
28+
- Linting: Fix more Stylelint violations. [#43213]
29+
- Mitigate bug with certain P2 themes. [#43503]
30+
- My Jetpack: Fix Onboarding UI responsiveness at 600px. [#43533]
31+
- My Jetpack: Fix readability of license activation button on hover. [#43550]
32+
- My Jetpack: Prevent social login from getting stuck when email input is not empty. [#43158]
33+
- Protect against improper calls to `the_title()` filter. [#43511]
3834

3935
## [4.1.0] - 2025-04-04
4036
### Added
@@ -224,7 +220,7 @@ This is an alpha version! The changes listed here are not final.
224220

225221
[1.1.0-beta]: https://github.com/Automattic/jetpack-search-plugin/compare/1.0.0...1.1.0-beta
226222
[1.2.0-beta]: https://github.com/Automattic/jetpack-search-plugin/compare/1.1.0...1.2.0-beta
227-
[5.0.0-alpha]: https://github.com/Automattic/jetpack-search-plugin/compare/4.1.0...5.0.0-alpha
223+
[5.0.0]: https://github.com/Automattic/jetpack-search-plugin/compare/4.1.0...5.0.0
228224
[4.1.0]: https://github.com/Automattic/jetpack-search-plugin/compare/4.0.0...4.1.0
229225
[4.0.0]: https://github.com/Automattic/jetpack-search-plugin/compare/3.0.1...4.0.0
230226
[3.0.1]: https://github.com/Automattic/jetpack-search-plugin/compare/3.0.0...3.0.1

composer.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
"automattic/jetpack-autoloader": "^5.0.7",
88
"automattic/jetpack-composer-plugin": "^4.0.5",
99
"automattic/jetpack-config": "^3.1.0",
10-
"automattic/jetpack-connection": "^6.13.2",
11-
"automattic/jetpack-my-jetpack": "^5.16.1",
12-
"automattic/jetpack-search": "^0.52.0",
10+
"automattic/jetpack-connection": "^6.13.3",
11+
"automattic/jetpack-my-jetpack": "^5.16.2",
12+
"automattic/jetpack-search": "^0.52.1",
1313
"automattic/jetpack-stats": "^0.16.2",
14-
"automattic/jetpack-status": "^5.2.0-alpha",
14+
"automattic/jetpack-status": "^5.2.0",
1515
"automattic/jetpack-sync": "^4.14.1"
1616
},
1717
"require-dev": {
@@ -37,6 +37,7 @@
3737
"build-production": "pnpm run build-production",
3838
"build-development": "pnpm run build"
3939
},
40+
"repositories": [],
4041
"minimum-stability": "dev",
4142
"prefer-stable": true,
4243
"extra": {
@@ -57,7 +58,7 @@
5758
},
5859
"config": {
5960
"sort-packages": true,
60-
"autoloader-suffix": "b462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ5_0_0_alpha",
61+
"autoloader-suffix": "b462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ5_0_0",
6162
"allow-plugins": {
6263
"automattic/jetpack-autoloader": true,
6364
"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: 5.0.0-alpha
7+
* Version: 5.0.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', '5.0.0-alpha' );
29+
define( 'JETPACK_SEARCH_PLUGIN__VERSION', '5.0.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-assets/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+
## [4.0.26] - 2025-06-10
9+
### Changed
10+
- Update dependencies. [#42554]
11+
812
## [4.0.25] - 2025-06-04
913
### Changed
1014
- Update dependencies. [#42554]
@@ -636,6 +640,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
636640

637641
- Statically access asset tools
638642

643+
[4.0.26]: https://github.com/Automattic/jetpack-assets/compare/v4.0.25...v4.0.26
639644
[4.0.25]: https://github.com/Automattic/jetpack-assets/compare/v4.0.24...v4.0.25
640645
[4.0.24]: https://github.com/Automattic/jetpack-assets/compare/v4.0.23...v4.0.24
641646
[4.0.23]: https://github.com/Automattic/jetpack-assets/compare/v4.0.22...v4.0.23

jetpack_vendor/automattic/jetpack-assets/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"require": {
77
"php": ">=7.2",
88
"automattic/jetpack-constants": "^3.0.8",
9-
"automattic/jetpack-status": "^5.2.0-alpha"
9+
"automattic/jetpack-status": "^5.2.0"
1010
},
1111
"require-dev": {
1212
"brain/monkey": "^2.6.2",

jetpack_vendor/automattic/jetpack-boost-core/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"license": "GPL-2.0-or-later",
66
"require": {
77
"php": ">=7.2",
8-
"automattic/jetpack-connection": "^6.13.2"
8+
"automattic/jetpack-connection": "^6.11.1"
99
},
1010
"require-dev": {
1111
"yoast/phpunit-polyfills": "^4.0.0",

jetpack_vendor/automattic/jetpack-config/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"php": ">=7.2"
88
},
99
"require-dev": {
10-
"automattic/jetpack-changelogger": "^6.0.5",
10+
"automattic/jetpack-changelogger": "^6.0.2",
1111
"automattic/jetpack-connection": "@dev",
1212
"automattic/jetpack-import": "@dev",
1313
"automattic/jetpack-jitm": "@dev",

jetpack_vendor/automattic/jetpack-connection/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+
## [6.13.3] - 2025-06-10
9+
### Changed
10+
- Update dependencies.
11+
812
## [6.13.2] - 2025-06-09
913
### Fixed
1014
- Tests: Ensure method param count matches PHPUnit data providers. [#43828]
@@ -1464,6 +1468,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14641468

14651469
- Separate the connection library into its own package.
14661470

1471+
[6.13.3]: https://github.com/Automattic/jetpack-connection/compare/v6.13.2...v6.13.3
14671472
[6.13.2]: https://github.com/Automattic/jetpack-connection/compare/v6.13.1...v6.13.2
14681473
[6.13.1]: https://github.com/Automattic/jetpack-connection/compare/v6.13.0...v6.13.1
14691474
[6.13.0]: https://github.com/Automattic/jetpack-connection/compare/v6.12.0...v6.13.0

jetpack_vendor/automattic/jetpack-connection/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
"php": ">=7.2",
88
"automattic/jetpack-a8c-mc-stats": "^3.0.5",
99
"automattic/jetpack-admin-ui": "^0.5.10",
10-
"automattic/jetpack-assets": "^4.0.25",
10+
"automattic/jetpack-assets": "^4.0.26",
1111
"automattic/jetpack-constants": "^3.0.8",
1212
"automattic/jetpack-roles": "^3.0.8",
13-
"automattic/jetpack-status": "^5.2.0-alpha",
13+
"automattic/jetpack-status": "^5.2.0",
1414
"automattic/jetpack-redirect": "^3.0.7"
1515
},
1616
"require-dev": {

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 = '6.13.2';
15+
const PACKAGE_VERSION = '6.13.3';
1616

1717
const PACKAGE_SLUG = 'connection';
1818

0 commit comments

Comments
 (0)