Skip to content

Commit

Permalink
Updated package versions for automattic/jetpack-search-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
kraftbj authored and matticbot committed Feb 7, 2024
1 parent b11fe7c commit 511d902
Show file tree
Hide file tree
Showing 47 changed files with 592 additions and 725 deletions.
27 changes: 8 additions & 19 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,16 @@ 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).

## [2.0.0-alpha] - unreleased

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

## [2.0.0] - 2024-02-07
### Added
- Allow users to select price as default sorting option for search
- Implemented a "tabbed" variation for static filters. This adds tabs on top of the results for each filter group.
- Updated composer.lock
- Allow users to select price as default sorting option for search [#35167]
- Implemented a "tabbed" variation for static filters. This adds tabs on top of the results for each filter group. [#29811]

### Changed
- General: indicate full compatibility with the latest version of WordPress, 6.2.
- General: indicate full compatibility with the latest version of WordPress, 6.3.
- General: indicate full compatibility with the latest version of WordPress, 6.4.
- General: updated PHP requirement to PHP 7.0+
- General: update link references to releases in changelog.
- General: update WordPress version requirements to WordPress 6.2.
- General: update WordPress version requirements to WordPress 6.3.
- Remove conditional rendering from zendesk chat widget component due to it being handled by an api endpoint now
- Updated package dependencies.
- Update lockfile
- Update WordPress version requirements. Now requires version 6.1.
- General: indicate full compatibility with the latest version of WordPress, 6.4. [#33776]
- General: update WordPress version requirements to WordPress 6.3. [#34127]
- General: updated PHP requirement to PHP 7.0+ [#34126]


## [1.4.1] - 2023-03-08
### Changed
Expand Down Expand Up @@ -143,7 +132,7 @@ This is an alpha version! The changes listed here are not final.

[1.1.0-beta]: https://github.com/Automattic/jetpack-search-plugin/compare/1.0.0...1.1.0-beta
[1.2.0-beta]: https://github.com/Automattic/jetpack-search-plugin/compare/1.1.0...1.2.0-beta
[2.0.0-alpha]: https://github.com/Automattic/jetpack-search-plugin/compare/1.4.1...2.0.0-alpha
[2.0.0]: https://github.com/Automattic/jetpack-search-plugin/compare/1.4.1...2.0.0
[1.4.1]: https://github.com/Automattic/jetpack-search-plugin/compare/v1.4.0...v1.4.1
[1.4.0]: https://github.com/Automattic/jetpack-search-plugin/compare/1.3.1...1.4.0
[1.3.1]: https://github.com/Automattic/jetpack-search-plugin/compare/1.3.0...1.3.1
Expand Down
11 changes: 6 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"automattic/jetpack-composer-plugin": "^2.0.0",
"automattic/jetpack-config": "^2.0.0",
"automattic/jetpack-connection": "^2.3.0",
"automattic/jetpack-identity-crisis": "^0.16.0-alpha",
"automattic/jetpack-my-jetpack": "^4.9.0-alpha",
"automattic/jetpack-identity-crisis": "^0.16.0",
"automattic/jetpack-my-jetpack": "^4.9.0",
"automattic/jetpack-plugins-installer": "^0.3.1",
"automattic/jetpack-search": "^0.43.0",
"automattic/jetpack-stats": "^0.10.0",
"automattic/jetpack-status": "^2.1.0",
"automattic/jetpack-sync": "^2.5.0",
"automattic/jetpack-plugins-installer": "^0.3.1"
"automattic/jetpack-sync": "^2.5.1"
},
"require-dev": {
"automattic/jetpack-changelogger": "^4.1.0",
Expand All @@ -35,6 +35,7 @@
"build-production": "pnpm run build-production",
"build-development": "pnpm run build"
},
"repositories": [],
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
Expand All @@ -55,7 +56,7 @@
},
"config": {
"sort-packages": true,
"autoloader-suffix": "b462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ2_0_0_alpha",
"autoloader-suffix": "b462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ2_0_0",
"allow-plugins": {
"automattic/jetpack-autoloader": true,
"automattic/jetpack-composer-plugin": true,
Expand Down
4 changes: 2 additions & 2 deletions jetpack-search.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Plugin Name: Jetpack Search
* Plugin URI: https://jetpack.com/search/
* 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.
* Version: 2.0.0-alpha
* Version: 2.0.0
* Author: Automattic - Jetpack Search team
* Author URI: https://jetpack.com/
* License: GPLv2 or later
Expand All @@ -26,7 +26,7 @@
define( 'JETPACK_SEARCH_PLUGIN__FILE', __FILE__ );
define( 'JETPACK_SEARCH_PLUGIN__FILE_RELATIVE_PATH', plugin_basename( __FILE__ ) );
define( 'JETPACK_SEARCH_PLUGIN__SLUG', 'jetpack-search' );
define( 'JETPACK_SEARCH_PLUGIN__VERSION', '2.0.0-alpha' );
define( 'JETPACK_SEARCH_PLUGIN__VERSION', '2.0.0' );

defined( 'JETPACK_CLIENT__AUTH_LOCATION' ) || define( 'JETPACK_CLIENT__AUTH_LOCATION', 'header' );

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"require-dev": {
"yoast/phpunit-polyfills": "1.1.0",
"automattic/jetpack-changelogger": "^4.1.0"
"automattic/jetpack-changelogger": "^4.0.0"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
Expand Down
2 changes: 1 addition & 1 deletion jetpack_vendor/automattic/jetpack-config/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"php": ">=7.0"
},
"require-dev": {
"automattic/jetpack-changelogger": "^4.1.0"
"automattic/jetpack-changelogger": "^4.0.0"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
Expand Down
2 changes: 1 addition & 1 deletion jetpack_vendor/automattic/jetpack-constants/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"require-dev": {
"brain/monkey": "2.6.1",
"yoast/phpunit-polyfills": "1.1.0",
"automattic/jetpack-changelogger": "^4.1.0"
"automattic/jetpack-changelogger": "^4.0.0"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"require-dev": {
"yoast/phpunit-polyfills": "1.1.0",
"automattic/jetpack-changelogger": "^4.1.0"
"automattic/jetpack-changelogger": "^4.0.2"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,9 @@ 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).

## [0.16.0-alpha] - unreleased

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

## [0.16.0] - 2024-02-07
### Deprecated
- Removing old and previously deprecated code.
- Removing old and previously deprecated code. [#35048]

## [0.15.1] - 2024-02-05
### Changed
Expand Down Expand Up @@ -487,7 +484,7 @@ This is an alpha version! The changes listed here are not final.
- Updated package dependencies.
- Use Connection/Urls for home_url and site_url functions migrated from Sync.

[0.16.0-alpha]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.15.1...v0.16.0-alpha
[0.16.0]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.15.1...v0.16.0
[0.15.1]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.15.0...v0.15.1
[0.15.0]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.14.1...v0.15.0
[0.14.1]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.14.0...v0.14.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class Identity_Crisis {
/**
* Package Version
*/
const PACKAGE_VERSION = '0.16.0-alpha';
const PACKAGE_VERSION = '0.16.0';

/**
* Persistent WPCOM blog ID that stays in the options after disconnect.
Expand Down
2 changes: 1 addition & 1 deletion jetpack_vendor/automattic/jetpack-ip/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"require-dev": {
"brain/monkey": "2.6.1",
"yoast/phpunit-polyfills": "1.1.0",
"automattic/jetpack-changelogger": "^4.1.0"
"automattic/jetpack-changelogger": "^4.0.2"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
Expand Down
4 changes: 2 additions & 2 deletions jetpack_vendor/automattic/jetpack-licensing/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
"license": "GPL-2.0-or-later",
"require": {
"php": ">=7.0",
"automattic/jetpack-connection": "^2.3.0"
"automattic/jetpack-connection": "^2.0.1"
},
"require-dev": {
"automattic/wordbless": "@dev",
"yoast/phpunit-polyfills": "1.1.0",
"automattic/jetpack-changelogger": "^4.1.0"
"automattic/jetpack-changelogger": "^4.0.1"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
Expand Down
2 changes: 1 addition & 1 deletion jetpack_vendor/automattic/jetpack-logo/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"require-dev": {
"yoast/phpunit-polyfills": "1.1.0",
"automattic/jetpack-changelogger": "^4.1.0"
"automattic/jetpack-changelogger": "^4.0.0"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
Expand Down
13 changes: 5 additions & 8 deletions jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +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).

## [4.9.0-alpha] - unreleased

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

## [4.9.0] - 2024-02-07
### Changed
- Add pricing info for AI and CRM on My Jetpack
- Update the description of some cards to better describe the product on My Jetpack page
- Add pricing info for AI and CRM on My Jetpack [#35457]
- Update the description of some cards to better describe the product on My Jetpack page [#35428]

### Fixed
- Fixes issue on My Jetpack interstitials where some prices are 1 cent off
- Fixes issue on My Jetpack interstitials where some prices are 1 cent off [#35492]

## [4.8.0] - 2024-02-05
### Added
Expand Down Expand Up @@ -1238,7 +1235,7 @@ This is an alpha version! The changes listed here are not final.
### Added
- Created package

[4.9.0-alpha]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.8.0...4.9.0-alpha
[4.9.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.8.0...4.9.0
[4.8.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.7.0...4.8.0
[4.7.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.6.2...4.7.0
[4.6.2]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.6.1...4.6.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class Initializer {
*
* @var string
*/
const PACKAGE_VERSION = '4.9.0-alpha';
const PACKAGE_VERSION = '4.9.0';

/**
* HTML container ID for the IDC screen on My Jetpack page.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"php": ">=7.0"
},
"require-dev": {
"automattic/jetpack-changelogger": "^4.1.0",
"automattic/jetpack-changelogger": "^4.0.0",
"automattic/wordbless": "@dev",
"yoast/phpunit-polyfills": "1.1.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"require-dev": {
"yoast/phpunit-polyfills": "1.1.0",
"automattic/jetpack-changelogger": "^4.1.0"
"automattic/jetpack-changelogger": "^4.0.5"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
Expand Down
4 changes: 2 additions & 2 deletions jetpack_vendor/automattic/jetpack-redirect/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
"license": "GPL-2.0-or-later",
"require": {
"php": ">=7.0",
"automattic/jetpack-status": "^2.1.0"
"automattic/jetpack-status": "^2.0.0"
},
"require-dev": {
"brain/monkey": "2.6.1",
"yoast/phpunit-polyfills": "1.1.0",
"automattic/jetpack-changelogger": "^4.1.0"
"automattic/jetpack-changelogger": "^4.0.0"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
Expand Down
2 changes: 1 addition & 1 deletion jetpack_vendor/automattic/jetpack-roles/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"require-dev": {
"brain/monkey": "2.6.1",
"yoast/phpunit-polyfills": "1.1.0",
"automattic/jetpack-changelogger": "^4.1.0"
"automattic/jetpack-changelogger": "^4.0.0"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
Expand Down
2 changes: 1 addition & 1 deletion jetpack_vendor/automattic/jetpack-search/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"automattic/jetpack-constants": "^2.0.0",
"automattic/jetpack-status": "^2.1.0",
"automattic/jetpack-config": "^2.0.0",
"automattic/jetpack-my-jetpack": "^4.9.0-alpha"
"automattic/jetpack-my-jetpack": "^4.8.0"
},
"require-dev": {
"automattic/jetpack-changelogger": "^4.1.0",
Expand Down
2 changes: 1 addition & 1 deletion jetpack_vendor/automattic/jetpack-status/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"require-dev": {
"brain/monkey": "2.6.1",
"yoast/phpunit-polyfills": "1.1.0",
"automattic/jetpack-changelogger": "^4.1.0",
"automattic/jetpack-changelogger": "^4.0.5",
"automattic/jetpack-ip": "^0.2.1"
},
"suggest": {
Expand Down
5 changes: 5 additions & 0 deletions jetpack_vendor/automattic/jetpack-sync/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ 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).

## [2.5.1] - 2024-02-07
### Changed
- Update dependencies.

## [2.5.0] - 2024-02-05
### Changed
- Jetpack Connection: Add jetpack_package_versions to Sync [#35409]
Expand Down Expand Up @@ -1035,6 +1039,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Packages: Move sync to a classmapped package

[2.5.1]: https://github.com/Automattic/jetpack-sync/compare/v2.5.0...v2.5.1
[2.5.0]: https://github.com/Automattic/jetpack-sync/compare/v2.4.2...v2.5.0
[2.4.2]: https://github.com/Automattic/jetpack-sync/compare/v2.4.1...v2.4.2
[2.4.1]: https://github.com/Automattic/jetpack-sync/compare/v2.4.0...v2.4.1
Expand Down
2 changes: 1 addition & 1 deletion jetpack_vendor/automattic/jetpack-sync/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"php": ">=7.0",
"automattic/jetpack-connection": "^2.3.0",
"automattic/jetpack-constants": "^2.0.0",
"automattic/jetpack-identity-crisis": "^0.16.0-alpha",
"automattic/jetpack-identity-crisis": "^0.16.0",
"automattic/jetpack-password-checker": "^0.3.0",
"automattic/jetpack-ip": "^0.2.1",
"automattic/jetpack-roles": "^2.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
class Package_Version {

const PACKAGE_VERSION = '2.5.0';
const PACKAGE_VERSION = '2.5.1';

const PACKAGE_SLUG = 'sync';

Expand Down
6 changes: 3 additions & 3 deletions jetpack_vendor/i18n-map.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
),
'jetpack-idc' => array(
'path' => 'jetpack_vendor/automattic/jetpack-identity-crisis',
'ver' => '0.16.0-alpha1707233925',
'ver' => '0.16.0',
),
'jetpack-ip' => array(
'path' => 'jetpack_vendor/automattic/jetpack-ip',
Expand All @@ -38,7 +38,7 @@
),
'jetpack-my-jetpack' => array(
'path' => 'jetpack_vendor/automattic/jetpack-my-jetpack',
'ver' => '4.9.0-alpha1707322680',
'ver' => '4.9.0',
),
'jetpack-password-checker' => array(
'path' => 'jetpack_vendor/automattic/jetpack-password-checker',
Expand All @@ -58,7 +58,7 @@
),
'jetpack-sync' => array(
'path' => 'jetpack_vendor/automattic/jetpack-sync',
'ver' => '2.5.0',
'ver' => '2.5.1',
),
),
);
13 changes: 9 additions & 4 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,16 @@ If you are using the Jetpack Search free option, and you have more than 5000 rec
5. Manage all of your Jetpack products, including Search, in a single place.

== Changelog ==
### 1.4.1 - 2023-03-08
### 2.0.0 - 2024-02-07
#### Added
- Allow users to select price as default sorting option for search
- Implemented a "tabbed" variation for static filters. This adds tabs on top of the results for each filter group.

#### Changed
- Remove `ci.targets` from package.json. Better scoping of e2e tests.
- Update playwright dependency.
- Updated package dependencies.
- General: indicate full compatibility with the latest version of WordPress, 6.4.
- General: update WordPress version requirements to WordPress 6.3.
- General: updated PHP requirement to PHP 7.0+


== Testimonials ==

Expand Down
2 changes: 1 addition & 1 deletion vendor/autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@

require_once __DIR__ . '/composer/autoload_real.php';

return ComposerAutoloaderInitb462338fb66be23595d68a93345c9e3d_jetpack_search2_0_0_alpha::getLoader();
return ComposerAutoloaderInitb462338fb66be23595d68a93345c9e3d_jetpack_search2_0_0::getLoader();
2 changes: 1 addition & 1 deletion vendor/autoload_packages.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package automattic/jetpack-autoloader
*/

namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ2_0_0_alpha\al3_0_2;
namespace Automattic\Jetpack\Autoloader\jpb462338fb66be23595d68a93345c9e3d_jetpack_searchⓥ2_0_0\al3_0_2;

// phpcs:ignore

Expand Down
Loading

0 comments on commit 511d902

Please sign in to comment.