From 5ad251a16d95685a8ce06ae3cdad27c51269095c Mon Sep 17 00:00:00 2001 From: Felipe Elia Date: Tue, 10 Dec 2024 19:12:46 -0300 Subject: [PATCH 1/8] Update version --- elasticpress.php | 4 ++-- package-lock.json | 4 ++-- package.json | 2 +- readme.txt | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/elasticpress.php b/elasticpress.php index 4477e020a..0e5625db1 100644 --- a/elasticpress.php +++ b/elasticpress.php @@ -3,7 +3,7 @@ * Plugin Name: ElasticPress * Plugin URI: https://github.com/10up/ElasticPress * Description: A fast and flexible search and query engine for WordPress. - * Version: 5.1.3 + * Version: 5.1.4 * Requires at least: 6.0 * Requires PHP: 7.4 * Author: 10up @@ -32,7 +32,7 @@ define( 'EP_URL', plugin_dir_url( __FILE__ ) ); define( 'EP_PATH', plugin_dir_path( __FILE__ ) ); define( 'EP_FILE', plugin_basename( __FILE__ ) ); -define( 'EP_VERSION', '5.1.3' ); +define( 'EP_VERSION', '5.1.4' ); define( 'EP_PHP_VERSION_MIN', '7.4' ); diff --git a/package-lock.json b/package-lock.json index a48dd0e64..46ab87bb9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "elasticpress", - "version": "5.1.3", + "version": "5.1.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "elasticpress", - "version": "5.1.3", + "version": "5.1.4", "license": "GPL-2.0-or-later", "dependencies": { "@10up/component-tooltip": "^2.0.0", diff --git a/package.json b/package.json index 08c36b2a1..544075995 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "elasticpress", - "version": "5.1.3", + "version": "5.1.4", "license": "GPL-2.0-or-later", "description": "A fast and flexible search and query engine for WordPress.", "devDependencies": { diff --git a/readme.txt b/readme.txt index 9e1e80a16..9192b3191 100644 --- a/readme.txt +++ b/readme.txt @@ -1,8 +1,8 @@ === ElasticPress === Contributors: 10up, tlovett1, vhauri, tott, felipeelia, oscarssanchez, cmmarslender Tags: performance, search, elasticsearch, fuzzy, related posts -Tested up to: 6.5 -Stable tag: 5.1.3 +Tested up to: 6.7 +Stable tag: 5.1.4 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html From f012c03e5f20950e8be76d5389191be013e4ee3e Mon Sep 17 00:00:00 2001 From: Felipe Elia Date: Tue, 10 Dec 2024 20:12:31 -0300 Subject: [PATCH 2/8] Changelog 5.1.4 --- CHANGELOG.md | 43 +++++++++++++++++++++++++++++++++++++++++++ CREDITS.md | 5 +++++ 2 files changed, 48 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d366a4b5..2f2b208a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,8 +11,50 @@ All notable changes to this project will be documented in this file, per [the Ke ### Removed ### Fixed ### Security +### Developer --> +## [5.1.4] - 2024-12-XX + +### Added +* New filter `ep_facet_selected_filters`. Props [@burhandodhy](https://github.com/burhandodhy) via [#3953](https://github.com/10up/ElasticPress/pull/3953). +* New filter `ep_disable_query_logging` to disable query logging. Props [@davidsword](https://github.com/davidsword) and [@rebeccahum](https://github.com/rebeccahum) via [#4019](https://github.com/10up/ElasticPress/pull/4019). +* New setting to Protect Content to use WP default order in admin. Props [@felipeelia](https://github.com/felipeelia) and [@realrellek](https://github.com/realrellek) via [#4028](https://github.com/10up/ElasticPress/pull/4028). + +### Changed +* Apply ElasticPress filters to the requests in status and stats CLI commands. Props [@edpittol](https://github.com/edpittol) via [#4000](https://github.com/10up/ElasticPress/pull/4000). +* Autosuggest Endpoint field explanation. Props [@burhandodhy](https://github.com/burhandodhy) and [@felipeelia](https://github.com/felipeelia) via [#4009](https://github.com/10up/ElasticPress/pull/4009). +* Alignment of custom search results action icons. Props [@felipeelia](https://github.com/felipeelia) and [@anjulahettige](https://github.com/anjulahettige) via [#4020](https://github.com/10up/ElasticPress/pull/4020). +* Update all of our blocks apiVersion from 2 to 3, to indicate support for working in an iframed editor. Props [@dkotter](https://github.com/dkotter) and [@JakePT](https://github.com/JakePT) via [#4029](https://github.com/10up/ElasticPress/pull/4029). +* If using the new way to index meta, avoid querying distinct meta fields in the sync page. Props [@felipeelia](https://github.com/felipeelia) and [@majiix](https://github.com/majiix) via [#4033](https://github.com/10up/ElasticPress/pull/4033). + +### Fixed +* Hardcoded `tmp` path replaced with a dynamic value. Props [@burhandodhy](https://github.com/burhandodhy) via [#3962](https://github.com/10up/ElasticPress/pull/3962). +* Variable names and descriptions in the docblocks for `ep_formatted_args` and `ep_post_formatted_args`. Props [@barryceelen](https://github.com/barryceelen) via [#3977](https://github.com/10up/ElasticPress/pull/3977). +* Remove 'None' from Highlight tag list. Props [@burhandodhy](https://github.com/burhandodhy) via [#3979](https://github.com/10up/ElasticPress/pull/3979). +* [Facets] Incorrect link on description when not using a block theme. Props [@felipeelia](https://github.com/felipeelia) and [@burhandodhy](https://github.com/burhandodhy) via [#3997](https://github.com/10up/ElasticPress/pull/3997). +* Deprecation warning in `strtotime()` call. Props [@felipeelia](https://github.com/felipeelia) and [@barryceelen](https://github.com/barryceelen) via [#3998](https://github.com/10up/ElasticPress/pull/3998). +* Special characters like `\` in search terms for both Autosuggest and Instant Results. Props [@felipeelia](https://github.com/felipeelia) and [@burhandodhy](https://github.com/burhandodhy) via [#3999](https://github.com/10up/ElasticPress/pull/3999). +* [WooCommerce] Incompatibility when "Enable table usage" was enabled to filter the product catalog. Props [@felipeelia](https://github.com/felipeelia) and [@burhandodhy](https://github.com/burhandodhy) via [#4002](https://github.com/10up/ElasticPress/pull/4002). +* Deprecation warning related to PluginPostStatusInfo. Props [@burhandodhy](https://github.com/burhandodhy) and [@felipeelia](https://github.com/felipeelia) via [#4008](https://github.com/10up/ElasticPress/pull/4008). +* [Custom Results] Inconsistent Reordering Issue. Props [@felipeelia](https://github.com/felipeelia), [@anjulahettige](https://github.com/anjulahettige), [@burhandodhy](https://github.com/burhandodhy) via [#4018](https://github.com/10up/ElasticPress/pull/4018). +* Update supported document file types in Documents feature summary. Props [@burhandodhy](https://github.com/burhandodhy) via [#4024](https://github.com/10up/ElasticPress/pull/4024). +* "Exclude from search results" to work in AJAX contexts. Props [@felipeelia](https://github.com/felipeelia) and [@burhandodhy](https://github.com/burhandodhy) via [#4025](https://github.com/10up/ElasticPress/pull/4025). +* Retain CR & RD Labels Upon Saving Custom Search Result Posts. Props [@felipeelia](https://github.com/felipeelia) and [@anjulahettige](https://github.com/anjulahettige) via [#4020](https://github.com/10up/ElasticPress/pull/4020). +* Typo in "All filters" text domain. Props [@felipeelia](https://github.com/felipeelia) and [@arturomonge](https://github.com/arturomonge) via [#4031](https://github.com/10up/ElasticPress/pull/4031). +* Autosuggest GA tracking to work when ad blocks are enabled. The dataLayer.push() call now pushes a custom event called ep_autosuggest_click with ep_autosuggest_search_term and ep_autosuggest_clicked_url as custom parameters. Props [@felipeelia](https://github.com/felipeelia) and [@anjulahettige](https://github.com/anjulahettige) via [#4032](https://github.com/10up/ElasticPress/pull/4032). +* Delay `load_plugin_textdomain` to `init` and set a Domain Path. Props [@felipeelia](https://github.com/felipeelia) via [#4036](https://github.com/10up/ElasticPress/pull/4036). + +### Security +* Bumped `composer/composer` from 2.7.0 to 2.7.8. Props [@dependabot](https://github.com/dependabot) via [#3972](https://github.com/10up/ElasticPress/pull/3972). +* Bumped `symfony/process` from 6.4.8 to 6.4.14. Props [@dependabot](https://github.com/dependabot) via [#3996](https://github.com/10up/ElasticPress/pull/3996). + +### Developer +* Tests use ES 8 by default. Props [@felipeelia](https://github.com/felipeelia) via [#4017](https://github.com/10up/ElasticPress/pull/4017). +* Update E2E tests to work properly with the iframed block editor. Props [@dkotter](https://github.com/dkotter) via [#4029](https://github.com/10up/ElasticPress/pull/4029). +* E2e tests for WP 6.6. Props [@felipeelia](https://github.com/felipeelia) via [#3959](https://github.com/10up/ElasticPress/pull/3959). +* E2e tests for WP 6.7. Props [@felipeelia](https://github.com/felipeelia) via [#4010](https://github.com/10up/ElasticPress/pull/4010). + ## [5.1.3] - 2024-06-11 ### Fixed @@ -2128,6 +2170,7 @@ This is a bug fix release with some filter additions. - Initial plugin release [Unreleased]: https://github.com/10up/ElasticPress/compare/trunk...develop +[5.1.4]: https://github.com/10up/ElasticPress/compare/5.1.3...5.1.4 [5.1.3]: https://github.com/10up/ElasticPress/compare/5.1.2...5.1.3 [5.1.2]: https://github.com/10up/ElasticPress/compare/5.1.1...5.1.2 [5.1.1]: https://github.com/10up/ElasticPress/compare/5.1.0...5.1.1 diff --git a/CREDITS.md b/CREDITS.md index e9ea18d65..4402ea2b2 100644 --- a/CREDITS.md +++ b/CREDITS.md @@ -239,6 +239,11 @@ Thank you to all the people who have already contributed to this repository via [Dharmesh Patel (@iamdharmesh)](https://github.com/iamdharmesh), [Lucas Grzegorczyk (@furai)](https://github.com/furai), [Ananda Dhakal (@dhakalananda)](https://github.com/dhakalananda), +[Eduardo Pittol (@edpittol)](https://github.com/edpittol), +[David Sword (@davidsword)](https://github.com/davidsword), +[@realrellek](https://github.com/realrellek), +[Arturo Monge (@arturomonge)](https://github.com/arturomonge), +[Majix (@majiix)](https://github.com/majiix), and [@qazaqstan2025](https://github.com/qazaqstan2025). From 842fcca769edd561fc990fa6a856c5583be80852 Mon Sep 17 00:00:00 2001 From: Felipe Elia Date: Thu, 12 Dec 2024 09:55:59 -0300 Subject: [PATCH 3/8] Updated changelog --- CHANGELOG.md | 9 +++++++- CREDITS.md | 1 + readme.txt | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++-- 3 files changed, 65 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f2b208a8..00e32210e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,8 @@ All notable changes to this project will be documented in this file, per [the Ke * Alignment of custom search results action icons. Props [@felipeelia](https://github.com/felipeelia) and [@anjulahettige](https://github.com/anjulahettige) via [#4020](https://github.com/10up/ElasticPress/pull/4020). * Update all of our blocks apiVersion from 2 to 3, to indicate support for working in an iframed editor. Props [@dkotter](https://github.com/dkotter) and [@JakePT](https://github.com/JakePT) via [#4029](https://github.com/10up/ElasticPress/pull/4029). * If using the new way to index meta, avoid querying distinct meta fields in the sync page. Props [@felipeelia](https://github.com/felipeelia) and [@majiix](https://github.com/majiix) via [#4033](https://github.com/10up/ElasticPress/pull/4033). +* Updated several composer and node packages. Node 20 is now the default version. Props [@felipeelia](https://github.com/felipeelia) via [#4039](https://github.com/10up/ElasticPress/pull/4039) and [#4043](https://github.com/10up/ElasticPress/pull/4043). +* Improve readability of sync output (MB/GB) and number formatting on the Health Status page. Props [@columbian-chris](https://github.com/columbian-chris) via [#4042](https://github.com/10up/ElasticPress/pull/4042). ### Fixed * Hardcoded `tmp` path replaced with a dynamic value. Props [@burhandodhy](https://github.com/burhandodhy) via [#3962](https://github.com/10up/ElasticPress/pull/3962). @@ -37,13 +39,16 @@ All notable changes to this project will be documented in this file, per [the Ke * Special characters like `\` in search terms for both Autosuggest and Instant Results. Props [@felipeelia](https://github.com/felipeelia) and [@burhandodhy](https://github.com/burhandodhy) via [#3999](https://github.com/10up/ElasticPress/pull/3999). * [WooCommerce] Incompatibility when "Enable table usage" was enabled to filter the product catalog. Props [@felipeelia](https://github.com/felipeelia) and [@burhandodhy](https://github.com/burhandodhy) via [#4002](https://github.com/10up/ElasticPress/pull/4002). * Deprecation warning related to PluginPostStatusInfo. Props [@burhandodhy](https://github.com/burhandodhy) and [@felipeelia](https://github.com/felipeelia) via [#4008](https://github.com/10up/ElasticPress/pull/4008). -* [Custom Results] Inconsistent Reordering Issue. Props [@felipeelia](https://github.com/felipeelia), [@anjulahettige](https://github.com/anjulahettige), [@burhandodhy](https://github.com/burhandodhy) via [#4018](https://github.com/10up/ElasticPress/pull/4018). +* [Custom Results] Inconsistent Reordering Issue. Props [@felipeelia](https://github.com/felipeelia), [@anjulahettige](https://github.com/anjulahettige), [@burhandodhy](https://github.com/burhandodhy) via [#4018](https://github.com/10up/ElasticPress/pull/4018) and [#4045](https://github.com/10up/ElasticPress/pull/4045). * Update supported document file types in Documents feature summary. Props [@burhandodhy](https://github.com/burhandodhy) via [#4024](https://github.com/10up/ElasticPress/pull/4024). * "Exclude from search results" to work in AJAX contexts. Props [@felipeelia](https://github.com/felipeelia) and [@burhandodhy](https://github.com/burhandodhy) via [#4025](https://github.com/10up/ElasticPress/pull/4025). * Retain CR & RD Labels Upon Saving Custom Search Result Posts. Props [@felipeelia](https://github.com/felipeelia) and [@anjulahettige](https://github.com/anjulahettige) via [#4020](https://github.com/10up/ElasticPress/pull/4020). * Typo in "All filters" text domain. Props [@felipeelia](https://github.com/felipeelia) and [@arturomonge](https://github.com/arturomonge) via [#4031](https://github.com/10up/ElasticPress/pull/4031). * Autosuggest GA tracking to work when ad blocks are enabled. The dataLayer.push() call now pushes a custom event called ep_autosuggest_click with ep_autosuggest_search_term and ep_autosuggest_clicked_url as custom parameters. Props [@felipeelia](https://github.com/felipeelia) and [@anjulahettige](https://github.com/anjulahettige) via [#4032](https://github.com/10up/ElasticPress/pull/4032). * Delay `load_plugin_textdomain` to `init` and set a Domain Path. Props [@felipeelia](https://github.com/felipeelia) via [#4036](https://github.com/10up/ElasticPress/pull/4036). +* Only display the Exclude From Search checkbox if the post type supports `custom-fields`. Props [@felipeelia](https://github.com/felipeelia) and [@maartenhunink](https://github.com/maartenhunink) via [#4040](https://github.com/10up/ElasticPress/pull/4040). +* JS error when submit button is clicked without selecting a date. Props [@burhandodhy](https://github.com/burhandodhy) via [#4044](https://github.com/10up/ElasticPress/pull/4044). +* Deprecated warnings for margin style. Props [@burhandodhy](https://github.com/burhandodhy) via [#4046](https://github.com/10up/ElasticPress/pull/4046). ### Security * Bumped `composer/composer` from 2.7.0 to 2.7.8. Props [@dependabot](https://github.com/dependabot) via [#3972](https://github.com/10up/ElasticPress/pull/3972). @@ -54,6 +59,8 @@ All notable changes to this project will be documented in this file, per [the Ke * Update E2E tests to work properly with the iframed block editor. Props [@dkotter](https://github.com/dkotter) via [#4029](https://github.com/10up/ElasticPress/pull/4029). * E2e tests for WP 6.6. Props [@felipeelia](https://github.com/felipeelia) via [#3959](https://github.com/10up/ElasticPress/pull/3959). * E2e tests for WP 6.7. Props [@felipeelia](https://github.com/felipeelia) via [#4010](https://github.com/10up/ElasticPress/pull/4010). +* Unit Tests: Fail faster on requests we know will fail. Props [@felipeelia](https://github.com/felipeelia) via [#4047](https://github.com/10up/ElasticPress/pull/4047). +* E2e tests: Fix the debug-bar-elasticpress dependency of ElasticPress. Props [@felipeelia](https://github.com/felipeelia) via [#4048](https://github.com/10up/ElasticPress/pull/4048). ## [5.1.3] - 2024-06-11 diff --git a/CREDITS.md b/CREDITS.md index 4402ea2b2..8f4b48791 100644 --- a/CREDITS.md +++ b/CREDITS.md @@ -244,6 +244,7 @@ Thank you to all the people who have already contributed to this repository via [@realrellek](https://github.com/realrellek), [Arturo Monge (@arturomonge)](https://github.com/arturomonge), [Majix (@majiix)](https://github.com/majiix), +[Maarten Hunink (@maartenhunink)](https://github.com/maartenhunink), and [@qazaqstan2025](https://github.com/qazaqstan2025). diff --git a/readme.txt b/readme.txt index 9192b3191..c948078e7 100644 --- a/readme.txt +++ b/readme.txt @@ -79,6 +79,60 @@ For sure! Feel free to submit ideas or feedback in general to our [GitHub repo]( == Changelog == += 5.1.4 - 2024-12-XX = + +__Added:__ + +* New filter `ep_facet_selected_filters`. Props [@burhandodhy](https://github.com/burhandodhy). +* New filter `ep_disable_query_logging` to disable query logging. Props [@davidsword](https://github.com/davidsword) and [@rebeccahum](https://github.com/rebeccahum). +* New setting to Protect Content to use WP default order in admin. Props [@felipeelia](https://github.com/felipeelia) and [@realrellek](https://github.com/realrellek). + +__Changed:__ + +* Apply ElasticPress filters to the requests in status and stats CLI commands. Props [@edpittol](https://github.com/edpittol). +* Autosuggest Endpoint field explanation. Props [@burhandodhy](https://github.com/burhandodhy) and [@felipeelia](https://github.com/felipeelia). +* Alignment of custom search results action icons. Props [@felipeelia](https://github.com/felipeelia) and [@anjulahettige](https://github.com/anjulahettige). +* Update all of our blocks apiVersion from 2 to 3, to indicate support for working in an iframed editor. Props [@dkotter](https://github.com/dkotter) and [@JakePT](https://github.com/JakePT). +* If using the new way to index meta, avoid querying distinct meta fields in the sync page. Props [@felipeelia](https://github.com/felipeelia) and [@majiix](https://github.com/majiix). +* Updated several composer and node packages. Node 20 is now the default version. Props [@felipeelia](https://github.com/felipeelia). +* Improve readability of sync output (MB/GB) and number formatting on the Health Status page. Props [@columbian-chris](https://github.com/columbian-chris). + +__Fixed:__ + +* Hardcoded `tmp` path replaced with a dynamic value. Props [@burhandodhy](https://github.com/burhandodhy). +* Variable names and descriptions in the docblocks for `ep_formatted_args` and `ep_post_formatted_args`. Props [@barryceelen](https://github.com/barryceelen). +* Remove 'None' from Highlight tag list. Props [@burhandodhy](https://github.com/burhandodhy). +* [Facets] Incorrect link on description when not using a block theme. Props [@felipeelia](https://github.com/felipeelia) and [@burhandodhy](https://github.com/burhandodhy). +* Deprecation warning in `strtotime()` call. Props [@felipeelia](https://github.com/felipeelia) and [@barryceelen](https://github.com/barryceelen). +* Special characters like `\` in search terms for both Autosuggest and Instant Results. Props [@felipeelia](https://github.com/felipeelia) and [@burhandodhy](https://github.com/burhandodhy). +* [WooCommerce] Incompatibility when "Enable table usage" was enabled to filter the product catalog. Props [@felipeelia](https://github.com/felipeelia) and [@burhandodhy](https://github.com/burhandodhy). +* Deprecation warning related to PluginPostStatusInfo. Props [@burhandodhy](https://github.com/burhandodhy) and [@felipeelia](https://github.com/felipeelia). +* [Custom Results] Inconsistent Reordering Issue. Props [@felipeelia](https://github.com/felipeelia), [@anjulahettige](https://github.com/anjulahettige), [@burhandodhy](https://github.com/burhandodhy). +* Update supported document file types in Documents feature summary. Props [@burhandodhy](https://github.com/burhandodhy). +* "Exclude from search results" to work in AJAX contexts. Props [@felipeelia](https://github.com/felipeelia) and [@burhandodhy](https://github.com/burhandodhy). +* Retain CR & RD Labels Upon Saving Custom Search Result Posts. Props [@felipeelia](https://github.com/felipeelia) and [@anjulahettige](https://github.com/anjulahettige). +* Typo in "All filters" text domain. Props [@felipeelia](https://github.com/felipeelia) and [@arturomonge](https://github.com/arturomonge). +* Autosuggest GA tracking to work when ad blocks are enabled. The dataLayer.push() call now pushes a custom event called ep_autosuggest_click with ep_autosuggest_search_term and ep_autosuggest_clicked_url as custom parameters. Props [@felipeelia](https://github.com/felipeelia) and [@anjulahettige](https://github.com/anjulahettige). +* Delay `load_plugin_textdomain` to `init` and set a Domain Path. Props [@felipeelia](https://github.com/felipeelia). +* Only display the Exclude From Search checkbox if the post type supports `custom-fields`. Props [@felipeelia](https://github.com/felipeelia) and [@maartenhunink](https://github.com/maartenhunink). +* JS error when submit button is clicked without selecting a date. Props [@burhandodhy](https://github.com/burhandodhy). +* Deprecated warnings for margin style. Props [@burhandodhy](https://github.com/burhandodhy). + +__Security:__ + +* Bumped `composer/composer` from 2.7.0 to 2.7.8. Props [@dependabot](https://github.com/dependabot). +* Bumped `symfony/process` from 6.4.8 to 6.4.14. Props [@dependabot](https://github.com/dependabot). + +__Developer:__ + +* Tests use ES 8 by default. Props [@felipeelia](https://github.com/felipeelia). +* Update E2E tests to work properly with the iframed block editor. Props [@dkotter](https://github.com/dkotter). +* E2e tests for WP 6.6. Props [@felipeelia](https://github.com/felipeelia). +* E2e tests for WP 6.7. Props [@felipeelia](https://github.com/felipeelia). +* Unit Tests: Fail faster on requests we know will fail. Props [@felipeelia](https://github.com/felipeelia). +* E2e tests: Fix the debug-bar-elasticpress dependency of ElasticPress. Props [@felipeelia](https://github.com/felipeelia). + + = 5.1.3 - 2024-06-11 = __Fixed:__ @@ -98,11 +152,11 @@ __Security:__ __Changed:__ -* Update Support Article URLs. Props [@felipeelia](https://github.com/felipeelia) via [#3919](https://github.com/10up/ElasticPress/pull/3919). +* Update Support Article URLs. Props [@felipeelia](https://github.com/felipeelia). __Fixed:__ -* Status report page when indexable post types is an empty array. Props [@furai](https://github.com/furai) via [#3910](https://github.com/10up/ElasticPress/pull/3910). +* Status report page when indexable post types is an empty array. Props [@furai](https://github.com/furai). = 5.1.0 - 2024-04-29 = From d3cb27d5dd06bc1dd7ecdfbc67dca24ce2f70019 Mon Sep 17 00:00:00 2001 From: Felipe Elia Date: Thu, 12 Dec 2024 10:35:16 -0300 Subject: [PATCH 4/8] Update peaceiris/actions-gh-pages --- .github/workflows/build-docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index a24bd2a3f..5d950dc41 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -69,7 +69,7 @@ jobs: CI: true - name: Deploy to GH Pages - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: './wp-content/plugins/elasticpress/docs-built' From f78377a6cc909bc7f8af15df9fd590159949b9b3 Mon Sep 17 00:00:00 2001 From: Felipe Elia Date: Thu, 12 Dec 2024 10:42:38 -0300 Subject: [PATCH 5/8] Update syntax --- .github/workflows/push-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push-deploy.yml b/.github/workflows/push-deploy.yml index 4cc47d2a4..c3e137e02 100644 --- a/.github/workflows/push-deploy.yml +++ b/.github/workflows/push-deploy.yml @@ -16,7 +16,7 @@ jobs: uses: actions/checkout@v4 - name: WordPress Plugin Deploy - if: "! github.event.release.prerelease" + if: ! github.event.release.prerelease id: deploy uses: 10up/action-wordpress-plugin-deploy@stable env: From bde7ca20597655508fb971dcee77c0c8e733d3c6 Mon Sep 17 00:00:00 2001 From: Felipe Elia Date: Thu, 12 Dec 2024 10:54:50 -0300 Subject: [PATCH 6/8] Add .nvmrc and .npmrc to the list of files that should not be deployed --- .gitattributes | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitattributes b/.gitattributes index 511d902c4..e36130d7e 100644 --- a/.gitattributes +++ b/.gitattributes @@ -16,6 +16,8 @@ /.eslintrc.js export-ignore /.gitattributes export-ignore /.gitignore export-ignore +/.nvmrc export-ignore +/.npmrc export-ignore /.husky export-ignore /.lintstagedrc.json export-ignore /.stylelintrc export-ignore From 79989558081630064ab126c41f2d1b6f38117fc2 Mon Sep 17 00:00:00 2001 From: Felipe Elia Date: Thu, 12 Dec 2024 10:59:21 -0300 Subject: [PATCH 7/8] Update the .pot file --- lang/elasticpress.pot | 248 ++++++++++++++++++++++-------------------- 1 file changed, 133 insertions(+), 115 deletions(-) diff --git a/lang/elasticpress.pot b/lang/elasticpress.pot index 1d839f4ef..ba36cec0e 100644 --- a/lang/elasticpress.pot +++ b/lang/elasticpress.pot @@ -2,14 +2,14 @@ # This file is distributed under the GPL v2 or later. msgid "" msgstr "" -"Project-Id-Version: ElasticPress 5.1.3\n" +"Project-Id-Version: ElasticPress 5.1.4\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/elasticpress\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2024-06-11T18:04:45+00:00\n" +"POT-Creation-Date: 2024-12-12T13:55:07+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.8.1\n" "X-Domain: elasticpress\n" @@ -37,7 +37,7 @@ msgid "https://10up.com" msgstr "" #. translators: %s: Minimum required PHP version -#: elasticpress.php:50 +#: elasticpress.php:51 msgid "ElasticPress requires PHP version %s or later. Please upgrade PHP or disable the plugin." msgstr "" @@ -123,17 +123,17 @@ msgid "Current mapping: %1$s. Expected mapping: %2$s" msgstr "" #. translators: Index Health URL -#: includes/classes/AdminNotices.php:733 +#: includes/classes/AdminNotices.php:732 msgid "It looks like one or more of your indices are running on a single node. While this won't prevent you from using ElasticPress, depending on your site's specific needs this can represent a performance issue. Please check the Index Health page where you can check the health of all of your indices." msgstr "" #. translators: Elasticsearch or ElasticPress.io; 2. Link to article; 3. Link to article -#: includes/classes/AdminNotices.php:789 +#: includes/classes/AdminNotices.php:788 msgid "Your website content has more public custom fields than %1$s is able to store. Check our articles about Elasticsearch field limitations and how to index just the custom fields you need before trying to sync." msgstr "" -#: includes/classes/AdminNotices.php:790 -#: includes/classes/AdminNotices.php:806 +#: includes/classes/AdminNotices.php:789 +#: includes/classes/AdminNotices.php:805 #: includes/classes/ElasticsearchErrorInterpreter.php:93 #: includes/classes/StatusReport/ElasticPressIo.php:30 #: assets/js/sync/index.js:269 @@ -141,8 +141,8 @@ msgstr "" msgid "ElasticPress.io" msgstr "" -#: includes/classes/AdminNotices.php:790 -#: includes/classes/AdminNotices.php:806 +#: includes/classes/AdminNotices.php:789 +#: includes/classes/AdminNotices.php:805 #: includes/classes/ElasticsearchErrorInterpreter.php:93 #: assets/js/sync/index.js:270 #: dist/js/sync-script.js:1 @@ -150,7 +150,7 @@ msgid "Elasticsearch" msgstr "" #. translators: Elasticsearch or ElasticPress.io; 2. Link to article; 3. Link to article -#: includes/classes/AdminNotices.php:805 +#: includes/classes/AdminNotices.php:804 msgid "Your website content seems to have more public custom fields than %1$s is able to store. Check our articles about Elasticsearch field limitations and how to index just the custom fields you need if you receive any errors while syncing." msgstr "" @@ -213,7 +213,7 @@ msgstr "" #: includes/classes/Command.php:293 #: includes/classes/Command.php:333 #: includes/classes/Command.php:374 -#: includes/classes/IndexHelper.php:1412 +#: includes/classes/IndexHelper.php:1410 msgid "Mapping failed: %s" msgstr "" @@ -266,10 +266,10 @@ msgstr "" #: includes/classes/Command.php:595 #: includes/classes/Command.php:621 -#: includes/classes/Command.php:1179 -#: includes/classes/Command.php:1237 -#: includes/classes/Command.php:1517 -#: includes/classes/Command.php:1529 +#: includes/classes/Command.php:1175 +#: includes/classes/Command.php:1233 +#: includes/classes/Command.php:1515 +#: includes/classes/Command.php:1527 msgid "Done." msgstr "" @@ -302,89 +302,89 @@ msgstr "" msgid "Done!" msgstr "" -#: includes/classes/Command.php:894 +#: includes/classes/Command.php:892 msgid "Failed to return status." msgstr "" -#: includes/classes/Command.php:939 +#: includes/classes/Command.php:935 msgid "Failed to return stats." msgstr "" -#: includes/classes/Command.php:966 +#: includes/classes/Command.php:962 msgid "Elasticsearch host is not set." msgstr "" -#: includes/classes/Command.php:968 +#: includes/classes/Command.php:964 msgid "Could not connect to Elasticsearch." msgstr "" -#: includes/classes/Command.php:979 +#: includes/classes/Command.php:975 msgid "An index is already occurring. Try again later." msgstr "" -#: includes/classes/Command.php:1023 +#: includes/classes/Command.php:1019 msgid "Sync cleared." msgstr "" -#: includes/classes/Command.php:1169 +#: includes/classes/Command.php:1165 msgid "There is no indexing operation running." msgstr "" -#: includes/classes/Command.php:1171 +#: includes/classes/Command.php:1167 msgid "Stopping indexing…" msgstr "" -#: includes/classes/Command.php:1217 +#: includes/classes/Command.php:1213 msgid "This command expects a version number or the --default flag." msgstr "" -#: includes/classes/Command.php:1340 +#: includes/classes/Command.php:1336 msgid "Time elapsed: " msgstr "" -#: includes/classes/Command.php:1344 +#: includes/classes/Command.php:1342 msgid "Memory Usage: " msgstr "" -#: includes/classes/Command.php:1442 +#: includes/classes/Command.php:1440 msgid "Are you sure you want to delete all ElasticPress settings?" msgstr "" -#: includes/classes/Command.php:1447 +#: includes/classes/Command.php:1445 msgid "Settings deleted." msgstr "" #. translators: list of active indexables slugs -#: includes/classes/Command.php:1586 +#: includes/classes/Command.php:1584 msgid "Indexable not found or inactive. Active indexables are: %l" msgstr "" -#: includes/classes/Command.php:1596 +#: includes/classes/Command.php:1594 msgid "Not found" msgstr "" #. translators: URL of the request -#: includes/classes/Command.php:1621 +#: includes/classes/Command.php:1619 msgid "URL: %s" msgstr "" #. translators: Request arguments (outputted with print_r()) -#: includes/classes/Command.php:1628 +#: includes/classes/Command.php:1626 msgid "Request Args: %s" msgstr "" #. translators: HTTP transport used -#: includes/classes/Command.php:1635 +#: includes/classes/Command.php:1633 msgid "Transport: %s" msgstr "" #. translators: Context under which the http_api_debug hook is fired -#: includes/classes/Command.php:1642 +#: includes/classes/Command.php:1640 msgid "Context: %s" msgstr "" #. translators: HTTP response (outputted with print_r()) -#: includes/classes/Command.php:1649 +#: includes/classes/Command.php:1647 msgid "Response: %s" msgstr "" @@ -415,15 +415,15 @@ msgstr "" msgid "Error while getting the index settings." msgstr "" -#: includes/classes/Elasticsearch.php:1403 +#: includes/classes/Elasticsearch.php:1402 msgid "Site not indexed.

Please run: wp elasticpress index --setup --network-wide using WP-CLI. Or use the index button on the left of this screen.

" msgstr "" -#: includes/classes/Elasticsearch.php:1407 +#: includes/classes/Elasticsearch.php:1406 msgid "Site not indexed.

Please run: wp elasticpress index --setup using WP-CLI. Or use the index button on the left of this screen.

" msgstr "" -#: includes/classes/Elasticsearch.php:1593 +#: includes/classes/Elasticsearch.php:1591 msgid "Elasticsearch Host is not available." msgstr "" @@ -489,7 +489,7 @@ msgstr "" #: includes/classes/Feature.php:392 #: includes/classes/StatusReport/ElasticPress.php:79 -#: includes/dashboard.php:650 +#: includes/dashboard.php:648 #: includes/partials/settings-page.php:34 #: assets/js/blocks/facets/common/edit.js:87 #: assets/js/blocks/facets/date/edit.js:23 @@ -570,7 +570,7 @@ msgid "When enabled, a gtag tracking event is fired when an autosuggest result i msgstr "" #: includes/classes/Feature/Autosuggest/Autosuggest.php:128 -#: includes/classes/Feature/Autosuggest/Autosuggest.php:911 +#: includes/classes/Feature/Autosuggest/Autosuggest.php:909 msgid "Endpoint URL" msgstr "" @@ -579,48 +579,51 @@ msgid "Your autosuggest endpoint is set in wp-config.php" msgstr "" #: includes/classes/Feature/Autosuggest/Autosuggest.php:136 -#: includes/classes/Feature/Autosuggest/Autosuggest.php:909 msgid "This address will be exposed to the public." msgstr "" -#: includes/classes/Feature/Autosuggest/Autosuggest.php:600 +#: includes/classes/Feature/Autosuggest/Autosuggest.php:598 msgid "This is a fake request to build the ElasticPress Autosuggest query. It is not really sent." msgstr "" -#: includes/classes/Feature/Autosuggest/Autosuggest.php:625 +#: includes/classes/Feature/Autosuggest/Autosuggest.php:623 msgid "This feature modifies the site’s default user experience by presenting a list of suggestions below detected search fields as text is entered into the field." msgstr "" -#: includes/classes/Feature/Autosuggest/Autosuggest.php:629 +#: includes/classes/Feature/Autosuggest/Autosuggest.php:627 msgid "You aren't using ElasticPress.io so we can't be sure your host is properly secured. Autosuggest requires a publicly accessible endpoint, which can expose private content and allow data modification if improperly configured." msgstr "" -#: includes/classes/Feature/Autosuggest/Autosuggest.php:783 +#: includes/classes/Feature/Autosuggest/Autosuggest.php:781 msgid "Connection" msgstr "" #. translators: 1: tag (ElasticPress.io); 2. ; 3: tag (KB article); 4. ; 5: tag (Site Health Debug Section); 6. ; -#: includes/classes/Feature/Autosuggest/Autosuggest.php:792 -#: includes/classes/Feature/Autosuggest/Autosuggest.php:867 +#: includes/classes/Feature/Autosuggest/Autosuggest.php:790 +#: includes/classes/Feature/Autosuggest/Autosuggest.php:865 msgid "You are directly connected to %1$sElasticPress.io%2$s, ensuring the most performant Autosuggest experience. %3$sLearn more about what this means%4$s or %5$sclick here for debug information%6$s." msgstr "" -#: includes/classes/Feature/Autosuggest/Autosuggest.php:888 +#: includes/classes/Feature/Autosuggest/Autosuggest.php:886 msgid "Input additional selectors where you would like to include autosuggest, separated by a comma. Example: .custom-selector, #custom-id, input[type=\"text\"]" msgstr "" -#: includes/classes/Feature/Autosuggest/Autosuggest.php:890 +#: includes/classes/Feature/Autosuggest/Autosuggest.php:888 msgid "Additional selectors" msgstr "" -#: includes/classes/Feature/Autosuggest/Autosuggest.php:896 +#: includes/classes/Feature/Autosuggest/Autosuggest.php:894 msgid "Enable to fire a gtag tracking event when an autosuggest result is clicked." msgstr "" -#: includes/classes/Feature/Autosuggest/Autosuggest.php:897 +#: includes/classes/Feature/Autosuggest/Autosuggest.php:895 msgid "Trigger Google Analytics events" msgstr "" +#: includes/classes/Feature/Autosuggest/Autosuggest.php:907 +msgid "A valid URL starting with http:// or https://. This address will be exposed to the public." +msgstr "" + #: includes/classes/Feature/Comments/Comments.php:39 #: includes/classes/Indexable/Comment/Comment.php:42 msgid "Comments" @@ -725,8 +728,7 @@ msgid "Documents" msgstr "" #: includes/classes/Feature/Documents/Documents.php:30 -#: includes/classes/Feature/Documents/Documents.php:326 -msgid "Website search results will include popular document file types, using file names as well as their content. Supported file types include: ppt, pptx, doc, docx, xls, xlsx, pdf." +msgid "Website search results will include popular document file types, using file names as well as their content. Supported file types include: ppt, pptx, doc, docx, xls, xlsx, pdf, csv, txt." msgstr "" #: includes/classes/Feature/Documents/Documents.php:32 @@ -741,6 +743,10 @@ msgstr "" msgid "This feature modifies the default user experience for your visitors by adding popular document file types to search results. All supported documents (PDFs and Microsoft Office) uploaded to your media library will appear in search results." msgstr "" +#: includes/classes/Feature/Documents/Documents.php:326 +msgid "Website search results will include popular document file types, using file names as well as their content. Supported file types include: ppt, pptx, doc, docx, xls, xlsx, pdf." +msgstr "" + #: includes/classes/Feature/Documents/Documents.php:458 msgid "Description" msgstr "" @@ -798,26 +804,26 @@ msgid "Facets no longer require admin styles." msgstr "" #. translators: Widgets Edit Screen URL -#: includes/classes/Feature/Facets/Facets.php:534 +#: includes/classes/Feature/Facets/Facets.php:542 msgid "Adds filter widgets that administrators can add to the website's sidebars (widgetized areas), so that visitors can filter applicable content and search results by one or more taxonomy terms." msgstr "" #. translators: Site Editor URL -#: includes/classes/Feature/Facets/Facets.php:542 +#: includes/classes/Feature/Facets/Facets.php:550 msgid "Adds filter blocks that administrators can add to the website's templates and template parts, so that visitors can filter applicable content and search results by one or more taxonomy terms." msgstr "" -#: includes/classes/Feature/Facets/Facets.php:697 +#: includes/classes/Feature/Facets/Facets.php:704 #: includes/classes/Feature/InstantResults/InstantResults.php:1095 msgid "Filter matching" msgstr "" -#: includes/classes/Feature/Facets/Facets.php:700 +#: includes/classes/Feature/Facets/Facets.php:707 #: includes/classes/Feature/InstantResults/InstantResults.php:1098 msgid "Show results that match all selected filters" msgstr "" -#: includes/classes/Feature/Facets/Facets.php:704 +#: includes/classes/Feature/Facets/Facets.php:711 #: includes/classes/Feature/InstantResults/InstantResults.php:1102 msgid "Show results that match any selected filter" msgstr "" @@ -975,7 +981,6 @@ msgstr "" #: includes/classes/Feature/InstantResults/InstantResults.php:145 #: includes/classes/Feature/InstantResults/InstantResults.php:1059 -#: includes/classes/Feature/Search/Search.php:901 msgid "None" msgstr "" @@ -1021,12 +1026,12 @@ msgid "Price" msgstr "" #: includes/classes/Feature/InstantResults/InstantResults.php:1054 -#: includes/classes/Feature/Search/Search.php:896 +#: includes/classes/Feature/Search/Search.php:900 msgid "Select the HTML tag used to highlight search terms." msgstr "" #: includes/classes/Feature/InstantResults/InstantResults.php:1056 -#: includes/classes/Feature/Search/Search.php:898 +#: includes/classes/Feature/Search/Search.php:902 msgid "Highlight tag" msgstr "" @@ -1054,14 +1059,22 @@ msgstr "" msgid "https://www.elasticpress.io/documentation/article/configuring-elasticpress-via-the-plugin-dashboard/#protected-content" msgstr "" -#: includes/classes/Feature/ProtectedContent/ProtectedContent.php:373 +#: includes/classes/Feature/ProtectedContent/ProtectedContent.php:369 msgid "Securely indexes unpublished content—including private, draft, and scheduled posts —improving load times in places like the administrative dashboard where WordPress needs to include protected content in a query. We recommend using a secured Elasticsearch setup, such as ElasticPress.io, to prevent potential exposure of content not intended for the public." msgstr "" -#: includes/classes/Feature/ProtectedContent/ProtectedContent.php:413 +#: includes/classes/Feature/ProtectedContent/ProtectedContent.php:409 msgid "You aren't using ElasticPress.io so we can't be sure your Elasticsearch instance is secure." msgstr "" +#: includes/classes/Feature/ProtectedContent/ProtectedContent.php:468 +msgid "Enable to use WordPress default sort for searches inside the WP Dashboard." +msgstr "" + +#: includes/classes/Feature/ProtectedContent/ProtectedContent.php:469 +msgid "Use default WordPress sort on the WP Dashboard" +msgstr "" + #: includes/classes/Feature/RelatedPosts/RelatedPosts.php:29 #: assets/js/blocks/related-posts/Edit.js:86 #: dist/js/related-posts-block-script.js:1 @@ -1110,7 +1123,7 @@ msgid "https://www.elasticpress.io/documentation/article/configuring-elasticpres msgstr "" #: includes/classes/Feature/Search/Search.php:630 -#: includes/classes/Feature/Search/Search.php:874 +#: includes/classes/Feature/Search/Search.php:878 msgid "Weight results by date" msgstr "" @@ -1136,39 +1149,39 @@ msgstr "" msgid "Add synonyms to your post searches" msgstr "" -#: includes/classes/Feature/Search/Search.php:783 -#: assets/js/search/editor/plugins/exclude-from-search.js:23 +#: includes/classes/Feature/Search/Search.php:788 +#: assets/js/search/editor/plugins/exclude-from-search.js:29 #: dist/js/search-editor-script.js:1 msgid "Exclude from search results" msgstr "" -#: includes/classes/Feature/Search/Search.php:786 +#: includes/classes/Feature/Search/Search.php:791 msgid "Excludes this media from the results of your site's search form while ElasticPress is active." msgstr "" -#: includes/classes/Feature/Search/Search.php:788 -#: assets/js/search/editor/plugins/exclude-from-search.js:24 +#: includes/classes/Feature/Search/Search.php:793 +#: assets/js/search/editor/plugins/exclude-from-search.js:30 #: dist/js/search-editor-script.js:1 msgid "Excludes this post from the results of your site's search form while ElasticPress is active." msgstr "" -#: includes/classes/Feature/Search/Search.php:867 +#: includes/classes/Feature/Search/Search.php:871 msgid "Weighting by date" msgstr "" -#: includes/classes/Feature/Search/Search.php:870 +#: includes/classes/Feature/Search/Search.php:874 msgid "Don't weight results by date" msgstr "" -#: includes/classes/Feature/Search/Search.php:884 +#: includes/classes/Feature/Search/Search.php:888 msgid "Highlight search terms" msgstr "" -#: includes/classes/Feature/Search/Search.php:889 +#: includes/classes/Feature/Search/Search.php:893 msgid "By default, WordPress strips HTML from content excerpts. Enable when using the_excerpt() to display search results." msgstr "" -#: includes/classes/Feature/Search/Search.php:891 +#: includes/classes/Feature/Search/Search.php:895 msgid "Highlight search terms in excerpts" msgstr "" @@ -1308,7 +1321,7 @@ msgid "Sets must contain at least 2 terms." msgstr "" #: includes/classes/Feature/Search/Synonyms.php:728 -#: assets/js/weighting/components/field.js:80 +#: assets/js/weighting/components/field.js:82 #: dist/js/weighting-script.js:1 msgid "Remove" msgstr "" @@ -1451,7 +1464,7 @@ msgid "Parent Custom Search Result:" msgstr "" #: includes/classes/Feature/SearchOrdering/SearchOrdering.php:284 -#: assets/js/ordering/pointers.js:265 +#: assets/js/ordering/pointers.js:257 #: dist/js/ordering-script.js:1 msgid "No results found." msgstr "" @@ -1510,15 +1523,15 @@ msgstr "" msgid "Manage Results" msgstr "" -#: includes/classes/Feature/SearchOrdering/SearchOrdering.php:622 +#: includes/classes/Feature/SearchOrdering/SearchOrdering.php:623 msgid "Enter Search Query" msgstr "" -#: includes/classes/Feature/SearchOrdering/SearchOrdering.php:636 +#: includes/classes/Feature/SearchOrdering/SearchOrdering.php:637 msgid "Search Query" msgstr "" -#: includes/classes/Feature/SearchOrdering/SearchOrdering.php:793 +#: includes/classes/Feature/SearchOrdering/SearchOrdering.php:794 msgid "ElasticPress Custom Search Results" msgstr "" @@ -1582,11 +1595,11 @@ msgstr "" msgid "Disabled for any query that includes products" msgstr "" -#: includes/classes/Feature/WooCommerce/Products.php:1079 +#: includes/classes/Feature/WooCommerce/Products.php:1104 msgid "Weight results by date, except for product-only queries" msgstr "" -#: includes/classes/Feature/WooCommerce/Products.php:1083 +#: includes/classes/Feature/WooCommerce/Products.php:1108 msgid "Weight results by date, except for any query that includes products" msgstr "" @@ -1653,7 +1666,7 @@ msgid "Comment" msgstr "" #: includes/classes/Indexable/Comment/QueryIntegration.php:140 -#: includes/classes/Indexable/Post/QueryIntegration.php:295 +#: includes/classes/Indexable/Post/QueryIntegration.php:294 #: includes/classes/Indexable/Term/QueryIntegration.php:111 msgid "sites is deprecated. Use site__in instead." msgstr "" @@ -1763,12 +1776,12 @@ msgstr "" msgid "Index %s deleted" msgstr "" -#: includes/classes/IndexHelper.php:1417 +#: includes/classes/IndexHelper.php:1415 msgid "Mapping has failed, which will cause ElasticPress search results to be incorrect. Please click `Delete all Data and Start a Fresh Sync` to retry mapping." msgstr "" #. translators: Error message -#: includes/classes/IndexHelper.php:1422 +#: includes/classes/IndexHelper.php:1420 msgid "Index failed: %s" msgstr "" @@ -2209,7 +2222,7 @@ msgstr "" msgid "%1$sInstant Results%2$s is now available in ElasticPress, but requires a re-sync before activation. If you would like to use Instant Results, since you are not using ElasticPress.io, you will also need to %3$sinstall and configure a PHP proxy%4$s." msgstr "" -#: includes/compat.php:96 +#: includes/compat.php:98 msgid "Feature registration API" msgstr "" @@ -2217,22 +2230,22 @@ msgstr "" msgid "Dashboard" msgstr "" -#: includes/dashboard.php:640 +#: includes/dashboard.php:638 msgid "ElasticPress Features" msgstr "" -#: includes/dashboard.php:641 +#: includes/dashboard.php:639 #: assets/js/features/index.js:34 #: dist/js/features-script.js:1 msgid "Features" msgstr "" -#: includes/dashboard.php:649 +#: includes/dashboard.php:647 msgid "ElasticPress Settings" msgstr "" -#: includes/dashboard.php:658 -#: includes/dashboard.php:659 +#: includes/dashboard.php:656 +#: includes/dashboard.php:657 #: assets/js/features/apps/features.js:83 #: assets/js/synonyms/apps/synonyms-settings.js:61 #: dist/js/features-script.js:1 @@ -2240,26 +2253,26 @@ msgstr "" msgid "Sync" msgstr "" -#: includes/dashboard.php:667 +#: includes/dashboard.php:665 msgid "ElasticPress Index Health" msgstr "" -#: includes/dashboard.php:668 +#: includes/dashboard.php:666 #: includes/partials/stats-page.php:35 msgid "Index Health" msgstr "" -#: includes/dashboard.php:676 +#: includes/dashboard.php:674 msgid "ElasticPress Status Report" msgstr "" -#: includes/dashboard.php:677 +#: includes/dashboard.php:675 #: assets/js/status-report/index.js:21 #: dist/js/status-report-script.js:1 msgid "Status Report" msgstr "" -#: includes/dashboard.php:875 +#: includes/dashboard.php:873 msgid "ElasticPress Indexing" msgstr "" @@ -2572,13 +2585,13 @@ msgstr "" msgid "Value prefix" msgstr "" -#: assets/js/blocks/facets/meta-range/edit.js:101 +#: assets/js/blocks/facets/meta-range/edit.js:102 #: dist/js/facets-meta-range-block-script.js:1 msgid "Value suffix" msgstr "" #. translators: %s: Field name. -#: assets/js/blocks/facets/meta-range/edit.js:127 +#: assets/js/blocks/facets/meta-range/edit.js:129 #: dist/js/facets-meta-range-block-script.js:1 msgid "Preview unavailable. The \"%s\" field does not appear to contain numeric values. Select a new meta field key or populate the field with numeric values to enable filtering by range." msgstr "" @@ -2655,7 +2668,7 @@ msgstr "" #: assets/js/features/apps/features.js:246 #: assets/js/synonyms/apps/synonyms-settings.js:174 -#: assets/js/synonyms/components/common/edit-panel.js:95 +#: assets/js/synonyms/components/common/edit-panel.js:98 #: assets/js/weighting/apps/weighting.js:59 #: dist/js/features-script.js:1 #: dist/js/synonyms-script.js:1 @@ -2842,6 +2855,11 @@ msgstr "" msgid "Close filters" msgstr "" +#: assets/js/instant-results/components/tools/sidebar-toggle.js:24 +#: dist/js/instant-results-script.js:1 +msgid "All filters" +msgstr "" + #: assets/js/instant-results/components/tools/sort.js:46 #: dist/js/instant-results-script.js:1 msgid "Sort by" @@ -2872,57 +2890,57 @@ msgstr "" msgid "Price, lowest to highest" msgstr "" -#: assets/js/ordering/pointers.js:184 +#: assets/js/ordering/pointers.js:180 #: dist/js/ordering-script.js:1 msgid "You have added the maximum number of custom results." msgstr "" -#: assets/js/ordering/pointers.js:285 +#: assets/js/ordering/pointers.js:277 #: dist/js/ordering-script.js:1 msgid "Add Post" msgstr "" -#: assets/js/ordering/pointers.js:311 +#: assets/js/ordering/pointers.js:304 #: dist/js/ordering-script.js:1 msgid "Enter your search query above to preview the results." msgstr "" -#: assets/js/ordering/pointers.js:324 +#: assets/js/ordering/pointers.js:317 #: dist/js/ordering-script.js:1 msgid "Loading Result Preview…" msgstr "" -#: assets/js/ordering/pointers.js:375 +#: assets/js/ordering/pointers.js:369 #: dist/js/ordering-script.js:1 msgid "Return to original position" msgstr "" -#: assets/js/ordering/pointers.js:376 +#: assets/js/ordering/pointers.js:370 #: dist/js/ordering-script.js:1 msgid "Remove custom result from results list" msgstr "" -#: assets/js/ordering/pointers.js:399 +#: assets/js/ordering/pointers.js:393 #: dist/js/ordering-script.js:1 msgid "The following posts have been displaced to the next page of search results." msgstr "" -#: assets/js/ordering/pointers.js:434 +#: assets/js/ordering/pointers.js:447 #: dist/js/ordering-script.js:1 msgid "Drag post up or down to reposition" msgstr "" -#: assets/js/ordering/pointers.js:476 +#: assets/js/ordering/pointers.js:469 #: dist/js/ordering-script.js:1 msgid "Custom Result (manually added to list)" msgstr "" -#: assets/js/ordering/pointers.js:482 +#: assets/js/ordering/pointers.js:475 #: dist/js/ordering-script.js:1 msgid "Reordered Default (originally in results, but repositioned)" msgstr "" -#: assets/js/ordering/pointers.js:491 +#: assets/js/ordering/pointers.js:484 #: dist/js/ordering-script.js:1 msgid "Add to results" msgstr "" @@ -3083,12 +3101,12 @@ msgstr "" msgid "Lower object ID" msgstr "" -#: assets/js/sync-ui/components/limits.js:64 +#: assets/js/sync-ui/components/limits.js:65 #: dist/js/sync-script.js:1 msgid "Sync objects with an ID of this number or lower." msgstr "" -#: assets/js/sync-ui/components/limits.js:65 +#: assets/js/sync-ui/components/limits.js:66 #: dist/js/sync-script.js:1 msgid "Higher object ID" msgstr "" @@ -3396,12 +3414,12 @@ msgstr "" msgid "ElasticPress uses the Solr format to define your synonym rules for Elasticsearch. Advanced users can use the field below to edit the synonym rules in this format directly. This can also be used to import a large dictionary of synonyms, or to export your synonyms for use on another site." msgstr "" -#: assets/js/synonyms/components/common/edit-panel.js:106 +#: assets/js/synonyms/components/common/edit-panel.js:109 #: dist/js/synonyms-script.js:1 msgid "Cancel" msgstr "" -#: assets/js/synonyms/components/common/list-table.js:148 +#: assets/js/synonyms/components/common/list-table.js:149 #: dist/js/synonyms-script.js:1 msgid "Delete selected" msgstr "" @@ -3596,7 +3614,7 @@ msgstr "" msgid "Searchable" msgstr "" -#: assets/js/weighting/components/field.js:68 +#: assets/js/weighting/components/field.js:69 #: dist/js/weighting-script.js:1 msgid "Weight" msgstr "" @@ -3622,7 +3640,7 @@ msgstr "" msgid "Metadata key" msgstr "" -#: assets/js/weighting/components/group.js:189 +#: assets/js/weighting/components/group.js:190 #: dist/js/weighting-script.js:1 msgid "Add" msgstr "" From b9000c5fd6edc5f437c038d49ce6df0672c6b3cb Mon Sep 17 00:00:00 2001 From: Felipe Elia Date: Thu, 12 Dec 2024 11:01:38 -0300 Subject: [PATCH 8/8] Update release date --- CHANGELOG.md | 2 +- readme.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 00e32210e..0ae4c9f4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,7 @@ All notable changes to this project will be documented in this file, per [the Ke ### Developer --> -## [5.1.4] - 2024-12-XX +## [5.1.4] - 2024-12-12 ### Added * New filter `ep_facet_selected_filters`. Props [@burhandodhy](https://github.com/burhandodhy) via [#3953](https://github.com/10up/ElasticPress/pull/3953). diff --git a/readme.txt b/readme.txt index c948078e7..8457db65b 100644 --- a/readme.txt +++ b/readme.txt @@ -79,7 +79,7 @@ For sure! Feel free to submit ideas or feedback in general to our [GitHub repo]( == Changelog == -= 5.1.4 - 2024-12-XX = += 5.1.4 - 2024-12-12 = __Added:__