mirror of https://github.com/apache/lucene.git
remove redundant CHANGES entries from trunk if they are already covered in 2.4.1
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@768906 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
65fd24fbc4
commit
1533642443
48
CHANGES.txt
48
CHANGES.txt
|
@ -95,21 +95,18 @@ API Changes
|
||||||
IndexReader. This matches IndexWriter's commit methods. (Jason
|
IndexReader. This matches IndexWriter's commit methods. (Jason
|
||||||
Rutherglen via Mike McCandless)
|
Rutherglen via Mike McCandless)
|
||||||
|
|
||||||
9. LUCENE-1186: Add Analyzer.close() to free internal ThreadLocal
|
9. LUCENE-652: Added org.apache.lucene.document.CompressionTools, to
|
||||||
resources. (Christian Kohlschütter via Mike McCandless)
|
|
||||||
|
|
||||||
10. LUCENE-652: Added org.apache.lucene.document.CompressionTools, to
|
|
||||||
enable compressing & decompressing binary content, external to
|
enable compressing & decompressing binary content, external to
|
||||||
Lucene's indexing. Deprecated Field.Store.COMPRESS.
|
Lucene's indexing. Deprecated Field.Store.COMPRESS.
|
||||||
|
|
||||||
11. LUCENE-1561: Renamed Field.omitTf to Field.omitTermFreqAndPositions
|
10. LUCENE-1561: Renamed Field.omitTf to Field.omitTermFreqAndPositions
|
||||||
(Otis Gospodnetic via Mike McCandless)
|
(Otis Gospodnetic via Mike McCandless)
|
||||||
|
|
||||||
12. LUCENE-1500: Added new InvalidTokenOffsetsException to Highlighter methods
|
11. LUCENE-1500: Added new InvalidTokenOffsetsException to Highlighter methods
|
||||||
to denote issues when offsets in TokenStream tokens exceed the length of the
|
to denote issues when offsets in TokenStream tokens exceed the length of the
|
||||||
provided text. (Mark Harwood)
|
provided text. (Mark Harwood)
|
||||||
|
|
||||||
13. LUCENE-1575: HitCollector is now deprecated in favor of a new
|
12. LUCENE-1575: HitCollector is now deprecated in favor of a new
|
||||||
Collector abstract class. For easy migration, people can use
|
Collector abstract class. For easy migration, people can use
|
||||||
HitCollectorWrapper which translates (wraps) HitCollector into
|
HitCollectorWrapper which translates (wraps) HitCollector into
|
||||||
Collector. Note that this class is also deprecated and will be
|
Collector. Note that this class is also deprecated and will be
|
||||||
|
@ -123,48 +120,26 @@ Bug fixes
|
||||||
implementation - Leads to Solr Cache misses.
|
implementation - Leads to Solr Cache misses.
|
||||||
(Todd Feak, Mark Miller via yonik)
|
(Todd Feak, Mark Miller via yonik)
|
||||||
|
|
||||||
2. LUCENE-1452: Fixed silent data-loss case whereby binary fields are
|
2. LUCENE-1327: Fix TermSpans#skipTo() to behave as specified in javadocs
|
||||||
truncated to 0 bytes during merging if the segments being merged
|
|
||||||
are non-congruent (same field name maps to different field
|
|
||||||
numbers). This bug was introduced with LUCENE-1219. (Andrzej
|
|
||||||
Bialecki via Mike McCandless).
|
|
||||||
|
|
||||||
3. LUCENE-1465: NearSpansOrdered returns payloads from first possible match
|
|
||||||
rather than the correct, shortest match; Payloads could be returned even
|
|
||||||
if the max slop was exceeded; The wrong payload could be returned in
|
|
||||||
certain situations. (Jonathan Mamou, Greg Shackles, Mark Miller)
|
|
||||||
|
|
||||||
4. LUCENE-1453: Ensure IndexReader.reopen() does not result in
|
|
||||||
incorrectly closing the shared FSDirectory. This bug would only
|
|
||||||
happen if you use IndexReader.open with a File or String argument.
|
|
||||||
(Mark Miller via Mike McCandless)
|
|
||||||
|
|
||||||
5. LUCENE-1544: Fix deadlock in IndexWriter.addIndexes(IndexReader[]).
|
|
||||||
(Mike McCandless via Doug Sale)
|
|
||||||
|
|
||||||
6. LUCENE-1186: Add Analyzer.close() to free internal ThreadLocal
|
|
||||||
resources. (Christian Kohlschütter via Mike McCandless)
|
|
||||||
|
|
||||||
7. LUCENE-1327: Fix TermSpans#skipTo() to behave as specified in javadocs
|
|
||||||
of Terms#skipTo(). (Michael Busch)
|
of Terms#skipTo(). (Michael Busch)
|
||||||
|
|
||||||
8. LUCENE-1573: Do not ignore InterruptedException (caused by
|
3. LUCENE-1573: Do not ignore InterruptedException (caused by
|
||||||
Thread.interrupt()) nor enter deadlock/spin loop. Now, an interrupt
|
Thread.interrupt()) nor enter deadlock/spin loop. Now, an interrupt
|
||||||
will cause a RuntimeException to be thrown. In 3.0 we will change
|
will cause a RuntimeException to be thrown. In 3.0 we will change
|
||||||
public APIs to throw InterruptedException. (Jeremy Volkman vai
|
public APIs to throw InterruptedException. (Jeremy Volkman vai
|
||||||
Mike McCandless)
|
Mike McCandless)
|
||||||
|
|
||||||
9. LUCENE-1590: Fixed stored-only Field instances to not change the
|
4. LUCENE-1590: Fixed stored-only Field instances to not change the
|
||||||
value of omitNorms, omitTermFreqAndPositions in FieldInfo; when you
|
value of omitNorms, omitTermFreqAndPositions in FieldInfo; when you
|
||||||
retrieve such fields they will now have omitNorms=true and
|
retrieve such fields they will now have omitNorms=true and
|
||||||
omitTermFreqAndPositions=false (though these values are unused).
|
omitTermFreqAndPositions=false (though these values are unused).
|
||||||
(Uwe Schindler via Mike McCandless)
|
(Uwe Schindler via Mike McCandless)
|
||||||
|
|
||||||
10. LUCENE-1587: RangeQuery#equals() could consider a RangeQuery
|
5. LUCENE-1587: RangeQuery#equals() could consider a RangeQuery
|
||||||
without a collator equal to one with a collator.
|
without a collator equal to one with a collator.
|
||||||
(Mark Platvoet via Mark Miller)
|
(Mark Platvoet via Mark Miller)
|
||||||
|
|
||||||
11. LUCENE-1600: Don't call String.intern unnecessarily in some cases
|
6. LUCENE-1600: Don't call String.intern unnecessarily in some cases
|
||||||
when loading documents from the index. (P Eger via Mike
|
when loading documents from the index. (P Eger via Mike
|
||||||
McCandless)
|
McCandless)
|
||||||
|
|
||||||
|
@ -343,6 +318,11 @@ Test Cases
|
||||||
|
|
||||||
======================= Release 2.4.1 2009-03-09 =======================
|
======================= Release 2.4.1 2009-03-09 =======================
|
||||||
|
|
||||||
|
API Changes
|
||||||
|
|
||||||
|
1. LUCENE-1186: Add Analyzer.close() to free internal ThreadLocal
|
||||||
|
resources. (Christian Kohlschütter via Mike McCandless)
|
||||||
|
|
||||||
Bug fixes
|
Bug fixes
|
||||||
|
|
||||||
1. LUCENE-1452: Fixed silent data-loss case whereby binary fields are
|
1. LUCENE-1452: Fixed silent data-loss case whereby binary fields are
|
||||||
|
|
Loading…
Reference in New Issue