mirror of https://github.com/apache/lucene.git
release 5.3.1 version add
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1701989 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
db6083e255
commit
723ed04037
|
@ -116,9 +116,6 @@ Bug Fixes
|
||||||
* LUCENE-6748: UsageTrackingQueryCachingPolicy no longer caches trivial queries
|
* LUCENE-6748: UsageTrackingQueryCachingPolicy no longer caches trivial queries
|
||||||
like MatchAllDocsQuery. (Adrien Grand)
|
like MatchAllDocsQuery. (Adrien Grand)
|
||||||
|
|
||||||
* LUCENE-6774: Remove classloader hack in MorfologikFilter. (Robert Muir,
|
|
||||||
Uwe Schindler)
|
|
||||||
|
|
||||||
* LUCENE-6781: Fixed BoostingQuery to rewrite wrapped queries. (Adrien Grand)
|
* LUCENE-6781: Fixed BoostingQuery to rewrite wrapped queries. (Adrien Grand)
|
||||||
|
|
||||||
* LUCENE-6783: Removed side effects from FuzzyLikeThisQuery.rewrite.
|
* LUCENE-6783: Removed side effects from FuzzyLikeThisQuery.rewrite.
|
||||||
|
@ -163,11 +160,6 @@ Tests
|
||||||
* LUCENE-6752: Add Math#random() to forbiddenapis. (Uwe Schindler,
|
* LUCENE-6752: Add Math#random() to forbiddenapis. (Uwe Schindler,
|
||||||
Mikhail Khludnev, Andrei Beliakov)
|
Mikhail Khludnev, Andrei Beliakov)
|
||||||
|
|
||||||
* LUCENE-6760, SOLR-7958: Move TestUtil#randomWhitespace to the only
|
|
||||||
Solr test that is using it. The method is not useful for Lucene tests
|
|
||||||
(and easily breaks, e.g., in Java 9 caused by Unicode version updates).
|
|
||||||
(Uwe Schindler)
|
|
||||||
|
|
||||||
Changes in Backwards Compatibility Policy
|
Changes in Backwards Compatibility Policy
|
||||||
|
|
||||||
* LUCENE-6742: The Lovins & Finnish implementation of SnowballFilter
|
* LUCENE-6742: The Lovins & Finnish implementation of SnowballFilter
|
||||||
|
@ -184,6 +176,21 @@ Changes in Runtime Behavior
|
||||||
* LUCENE-6784: IndexSearcher's query caching is enabled by default. Run
|
* LUCENE-6784: IndexSearcher's query caching is enabled by default. Run
|
||||||
indexSearcher.setQueryCache(null) to disable. (Adrien Grand)
|
indexSearcher.setQueryCache(null) to disable. (Adrien Grand)
|
||||||
|
|
||||||
|
======================= Lucene 5.3.1 =======================
|
||||||
|
|
||||||
|
Bug Fixes
|
||||||
|
|
||||||
|
* LUCENE-6774: Remove classloader hack in MorfologikFilter. (Robert Muir,
|
||||||
|
Uwe Schindler)
|
||||||
|
|
||||||
|
Tests
|
||||||
|
|
||||||
|
* LUCENE-6760, SOLR-7958: Move TestUtil#randomWhitespace to the only
|
||||||
|
Solr test that is using it. The method is not useful for Lucene tests
|
||||||
|
(and easily breaks, e.g., in Java 9 caused by Unicode version updates).
|
||||||
|
(Uwe Schindler)
|
||||||
|
|
||||||
|
|
||||||
======================= Lucene 5.3.0 =======================
|
======================= Lucene 5.3.0 =======================
|
||||||
|
|
||||||
New Features
|
New Features
|
||||||
|
|
|
@ -67,6 +67,13 @@ public final class Version {
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public static final Version LUCENE_5_3_0 = new Version(5, 3, 0);
|
public static final Version LUCENE_5_3_0 = new Version(5, 3, 0);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Match settings and bugs in Lucene's 5.3.1 release.
|
||||||
|
* @deprecated Use latest
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public static final Version LUCENE_5_3_1 = new Version(5, 3, 1);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Match settings and bugs in Lucene's 5.4.0 release.
|
* Match settings and bugs in Lucene's 5.4.0 release.
|
||||||
* @deprecated Use latest
|
* @deprecated Use latest
|
||||||
|
|
|
@ -166,36 +166,22 @@ Bug Fixes
|
||||||
|
|
||||||
* SOLR-7941: multivalued params are concatenated when using config API (noble)
|
* SOLR-7941: multivalued params are concatenated when using config API (noble)
|
||||||
|
|
||||||
* SOLR-7949: Resolve XSS issue in Admin UI stats page (David Chiu via janhoy)
|
|
||||||
|
|
||||||
* SOLR-7956: There are interrupts on shutdown in places that can cause ChannelAlreadyClosed
|
* SOLR-7956: There are interrupts on shutdown in places that can cause ChannelAlreadyClosed
|
||||||
exceptions which prevents proper closing of transaction logs, interfere with the IndexWriter,
|
exceptions which prevents proper closing of transaction logs, interfere with the IndexWriter,
|
||||||
the hdfs client and other things. (Mark Miller, Scott Blum)
|
the hdfs client and other things. (Mark Miller, Scott Blum)
|
||||||
|
|
||||||
* SOLR-7972: Fix VelocityResponseWriter template encoding issue.
|
|
||||||
Templates must be UTF-8 encoded. (Erik Hatcher)
|
|
||||||
|
|
||||||
* SOLR-7929: SimplePostTool (also bin/post) -filetypes "*" now works properly in 'web' mode (Erik Hatcher)
|
|
||||||
|
|
||||||
* SOLR-7954: Fixed an integer overflow bug in the HyperLogLog code used by the 'cardinality' option
|
* SOLR-7954: Fixed an integer overflow bug in the HyperLogLog code used by the 'cardinality' option
|
||||||
of stats.field to prevent ArrayIndexOutOfBoundsException in a distributed search when a large precision
|
of stats.field to prevent ArrayIndexOutOfBoundsException in a distributed search when a large precision
|
||||||
is selected and a large number of values exist in each shard (hossman)
|
is selected and a large number of values exist in each shard (hossman)
|
||||||
|
|
||||||
* SOLR-7988: SolrJ could not make requests to handlers with '/admin/' prefix (noble , ludovic Boutros)
|
|
||||||
|
|
||||||
* SOLR-7844: Zookeeper session expiry during shard leader election can cause multiple leaders.
|
* SOLR-7844: Zookeeper session expiry during shard leader election can cause multiple leaders.
|
||||||
(Mike Roberts, Mark Miller, Jessica Cheng)
|
(Mike Roberts, Mark Miller, Jessica Cheng)
|
||||||
|
|
||||||
* SOLR-8000: security.json is not loaded on server start (noble)
|
|
||||||
|
|
||||||
* SOLR-8004: RuleBasedAuthorization plugin does not work for the collection-admin-edit permission (noble)
|
|
||||||
|
|
||||||
* SOLR-7984: wrong and misleading error message 'no default request handler is registered' (noble, hossman)
|
* SOLR-7984: wrong and misleading error message 'no default request handler is registered' (noble, hossman)
|
||||||
|
|
||||||
* SOLR-8001: Fixed bugs in field(foo,min) and field(foo,max) when some docs have no values
|
* SOLR-8001: Fixed bugs in field(foo,min) and field(foo,max) when some docs have no values
|
||||||
(David Smiley, hossman)
|
(David Smiley, hossman)
|
||||||
|
|
||||||
* SOLR-7978: Fixed example/files update-script.js to be Java 7 and 8 compatible. (Erik Hatcher)
|
|
||||||
|
|
||||||
Optimizations
|
Optimizations
|
||||||
----------------------
|
----------------------
|
||||||
|
@ -259,6 +245,27 @@ Other Changes
|
||||||
* SOLR-7999: SolrRequestParser tests no longer depend on external URLs
|
* SOLR-7999: SolrRequestParser tests no longer depend on external URLs
|
||||||
that may fail to work. (Uwe Schindler)
|
that may fail to work. (Uwe Schindler)
|
||||||
|
|
||||||
|
================== 5.3.1 ==================
|
||||||
|
|
||||||
|
Bug Fixes
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
* SOLR-7949: Resolve XSS issue in Admin UI stats page (David Chiu via janhoy)
|
||||||
|
|
||||||
|
* SOLR-8000: security.json is not loaded on server start (noble)
|
||||||
|
|
||||||
|
* SOLR-8004: RuleBasedAuthorization plugin does not work for the collection-admin-edit permission (noble)
|
||||||
|
|
||||||
|
* SOLR-7972: Fix VelocityResponseWriter template encoding issue.
|
||||||
|
Templates must be UTF-8 encoded. (Erik Hatcher)
|
||||||
|
|
||||||
|
* SOLR-7929: SimplePostTool (also bin/post) -filetypes "*" now works properly in 'web' mode (Erik Hatcher)
|
||||||
|
|
||||||
|
* SOLR-7978: Fixed example/files update-script.js to be Java 7 and 8 compatible. (Erik Hatcher)
|
||||||
|
|
||||||
|
* SOLR-7988: SolrJ could not make requests to handlers with '/admin/' prefix (noble , ludovic Boutros)
|
||||||
|
|
||||||
|
|
||||||
================== 5.3.0 ==================
|
================== 5.3.0 ==================
|
||||||
|
|
||||||
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release
|
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release
|
||||||
|
|
Loading…
Reference in New Issue