Skip to content

Commit e2edfdd

Browse files
committed
4.4.0 version number bump
1 parent abe5484 commit e2edfdd

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "msaari/relevanssi",
33
"description": "A WordPress search plugin",
4-
"version": "4.3.4",
4+
"version": "4.4.0",
55
"source": {
66
"url": "https://github.com/msaari/relevanssi.git",
77
"type": "git",
88
"reference": "origin/master"
99
},
10-
"require": {
10+
"require-dev": {
1111
"rask/wp-test-framework": "*"
1212
}
1313
}

readme.txt

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Tags: search, relevance, better search
55
Requires at least: 4.9
66
Tested up to: 5.3
77
Requires PHP: 5.6
8-
Stable tag: 4.3.4
8+
Stable tag: 4.4.0
99
License: GPLv2 or later
1010
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1111

@@ -133,6 +133,17 @@ Each document database is full of useless words. All the little words that appea
133133
* John Calahan for extensive 4.0 beta testing.
134134

135135
== Changelog ==
136+
= 4.4.0 =
137+
* New feature: It's now possible to exclude image attachments from the index with a simple setting on the indexing settings page.
138+
* New feature: Page builder short codes are now removed in Relevanssi indexing. This should reduce the amount of garbage data indexed for posts in Divi, Avada and other page builder themes.
139+
* Changed behaviour: The `relevanssi_page_builder_shortcodes` filter hook is now applied both in indexing and excerpts, and has a second parameter that will inform you of the current context.
140+
* Minor fix: Stopwords weren't case insensitive like they should. They are now. Also, stopwords are no longer stored in the `wp_relevanssi_stopwords` database table, but are now stored in the `relevanssi_stopwords` option.
141+
* Minor fix: A comma at the end of the custom field indexing setting made Relevanssi index all custom fields. This doesn't happen anymore and trailing commas are automatically removed, too.
142+
* Minor fix: Accessibility improvements all around the admin interface. Screen reader support should be better, feel free to report any further ways to make this better.
143+
* Minor fix: Doing searches without search terms and with the throttle disabled could cause problems. Relevanssi now makes sure throttle is always on when doing termless searches.
144+
* Minor fix: Untokenized search terms are used for building excerpts, which makes highlighting in excerpts work better.
145+
* Minor fix: Indexing did not adjust the number of posts indexed at one go like it should.
146+
136147
= 4.3.4 =
137148
* New feature: You can now give Gutenberg blocks a CSS class `relevanssi_noindex` to exclude them from being indexed. Relevanssi will not index Gutenberg blocks that have the class.
138149
* New feature: Relevanssi automatically skips some custom fields from common plugins that only contain unnecessary metadata.
@@ -187,6 +198,9 @@ Each document database is full of useless words. All the little words that appea
187198
* Deprecated: `relevanssi_get_term_taxonomy()` function is deprecated and will be removed at some point in the future.
188199

189200
== Upgrade notice ==
201+
= 4.4.0 =
202+
* Changes in relevanssi_page_builder_shortcodes filter hook, page builder indexing and image attachments.
203+
190204
= 4.3.4 =
191205
* Comment indexing bug fix, compatibility improvements and minor bug fixes and improvements.
192206

relevanssi.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* Plugin Name: Relevanssi
1414
* Plugin URI: https://www.relevanssi.com/
1515
* Description: This plugin replaces WordPress search with a relevance-sorting search.
16-
* Version: 4.3.4
16+
* Version: 4.4.0
1717
* Author: Mikko Saari
1818
* Author URI: http://www.mikkosaari.fi/
1919
* Text Domain: relevanssi
@@ -65,7 +65,7 @@
6565
$relevanssi_variables['file'] = __FILE__;
6666
$relevanssi_variables['plugin_dir'] = plugin_dir_path( __FILE__ );
6767
$relevanssi_variables['plugin_basename'] = plugin_basename( __FILE__ );
68-
$relevanssi_variables['plugin_version'] = '4.3.4';
68+
$relevanssi_variables['plugin_version'] = '4.4.0';
6969

7070
require_once 'lib/admin-ajax.php';
7171
require_once 'lib/common.php';

0 commit comments

Comments
 (0)