Skip to content

Commit cec6616

Browse files
tbradshamatticbot
authored andcommitted
Changelog and readme.txt edits. (#43517)
Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/15117302927 Upstream-Ref: Automattic/jetpack@25eadfe
1 parent db04d6a commit cec6616

File tree

6 files changed

+21
-16
lines changed

6 files changed

+21
-16
lines changed

CHANGELOG.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,23 @@ 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.50.0-alpha] - unreleased
8+
## [0.50.1-alpha] - unreleased
99

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

12+
### Changed
13+
- Update package dependencies.
14+
15+
## [0.50.0] - 2025-05-19
1216
### Added
13-
- Add highlighting of search term in returned search results.
14-
- Jetpack Search: allow enabling new Inline Search
17+
- Add highlighting of search term in returned search results. [#43110]
18+
- Allow new Inline Search to be enabled. [#43457]
1519

1620
### Changed
17-
- Update package dependencies.
21+
- Update package dependencies. [#43398]
1822

1923
### Fixed
20-
- Mitigate bug with certain P2 theme
24+
- Mitigate bug with certain P2 theme [#43503]
2125

2226
## [0.49.0] - 2025-05-15
2327
### Added
@@ -1232,7 +1236,8 @@ This is an alpha version! The changes listed here are not final.
12321236
- Updated package dependencies.
12331237
- Update PHPUnit configs to include just what needs coverage rather than include everything then try to exclude stuff that doesn't.
12341238

1235-
[0.50.0-alpha]: https://github.com/Automattic/jetpack-search/compare/v0.49.0...v0.50.0-alpha
1239+
[0.50.1-alpha]: https://github.com/Automattic/jetpack-search/compare/v0.50.0...v0.50.1-alpha
1240+
[0.50.0]: https://github.com/Automattic/jetpack-search/compare/v0.49.0...v0.50.0
12361241
[0.49.0]: https://github.com/Automattic/jetpack-search/compare/v0.48.0...v0.49.0
12371242
[0.48.0]: https://github.com/Automattic/jetpack-search/compare/v0.47.24...v0.48.0
12381243
[0.47.24]: https://github.com/Automattic/jetpack-search/compare/v0.47.23...v0.47.24

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
"license": "GPL-2.0-or-later",
66
"require": {
77
"php": ">=7.2",
8-
"automattic/jetpack-connection": "^6.11.4",
8+
"automattic/jetpack-connection": "^6.11.5",
99
"automattic/jetpack-assets": "^4.0.20",
1010
"automattic/jetpack-constants": "^3.0.8",
1111
"automattic/jetpack-status": "^5.1.4",
1212
"automattic/jetpack-config": "^3.1.0",
13-
"automattic/jetpack-my-jetpack": "^5.14.3-alpha",
13+
"automattic/jetpack-my-jetpack": "^5.14.3",
1414
"automattic/jetpack-sync": "^4.13.0"
1515
},
1616
"require-dev": {

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@
3838
"@automattic/jetpack-analytics": "^0.1.36",
3939
"@automattic/jetpack-api": "^0.20.2",
4040
"@automattic/jetpack-base-styles": "^0.7.4",
41-
"@automattic/jetpack-components": "^0.73.0",
42-
"@automattic/jetpack-connection": "^0.39.14",
43-
"@automattic/jetpack-shared-extension-utils": "^0.20.0-alpha",
44-
"@automattic/number-formatters": "^1.0.2-alpha",
41+
"@automattic/jetpack-components": "^0.73.1",
42+
"@automattic/jetpack-connection": "^0.39.15",
43+
"@automattic/jetpack-shared-extension-utils": "^0.20.0",
44+
"@automattic/number-formatters": "^1.0.2",
4545
"@wordpress/base-styles": "5.22.0",
4646
"@wordpress/block-editor": "14.17.0",
4747
"@wordpress/data": "10.22.0",

src/class-package.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Search package general information
1212
*/
1313
class Package {
14-
const VERSION = '0.50.0-alpha';
14+
const VERSION = '0.50.1-alpha';
1515
const SLUG = 'search';
1616

1717
/**

src/inline-search/class-inline-search-highlighter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ public function is_search_result( int $post_id ): bool {
179179
* @param object $instance The block instance.
180180
*
181181
* @return string The filtered block content.
182-
* @since 0.50.0-alpha
182+
* @since 0.50.0
183183
*/
184184
public function filter_render_highlighted_block( string $block_content, array $block, object $instance ): string {
185185
if ( ! isset( $instance->context['postId'] ) || ! $this->is_search_result( $instance->context['postId'] ) ) {

src/inline-search/class-inline-search.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ class Inline_Search extends Classic_Search {
2222
* The Search Highlighter instance.
2323
*
2424
* @var Inline_Search_Highlighter|null
25-
* @since 0.50.0-alpha
25+
* @since 0.50.0
2626
*/
2727
private $highlighter;
2828

2929
/**
3030
* The search correction instance.
3131
*
3232
* @var Inline_Search_Correction|null
33-
* @since 0.50.0-alpha
33+
* @since 0.50.0
3434
*/
3535
private $correction;
3636

0 commit comments

Comments
 (0)