mirror of https://github.com/apache/lucene.git
clarify that DateField will not be removed soon, despite being deprecated
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150682 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1803bd7939
commit
2cc6c7f64a
13
CHANGES.txt
13
CHANGES.txt
|
@ -55,17 +55,17 @@ New features
|
|||
(adapted from code contributed by Matt Quail; committed by Erik)
|
||||
|
||||
12. FuzzyQuery can no longer throw a TooManyClauses exception. If a
|
||||
FuzzyQuery expands to more than BooleanQuery.maxClauseCount
|
||||
terms only the BooleanQuery.maxClauseCount most similar terms
|
||||
go into the rewritten query and thus the exception is avoided.
|
||||
(Christoph)
|
||||
FuzzyQuery expands to more than BooleanQuery.maxClauseCount
|
||||
terms only the BooleanQuery.maxClauseCount most similar terms
|
||||
go into the rewritten query and thus the exception is avoided.
|
||||
(Christoph)
|
||||
|
||||
API Changes
|
||||
|
||||
1. Several methods and fields have been deprecated. The API documentation
|
||||
contains information about the recommended replacements. It is planned
|
||||
that the deprecated methods and fields will be removed in Lucene 2.0.
|
||||
(Daniel Naber)
|
||||
that most of the deprecated methods and fields will be removed in
|
||||
Lucene 2.0. (Daniel Naber)
|
||||
|
||||
2. The Russian and the German analyzers have been moved to Sandbox.
|
||||
Also, the WordlistLoader class has been moved one level up in the
|
||||
|
@ -79,7 +79,6 @@ API Changes
|
|||
|
||||
4. Add a serializable Parameter Class to standardize parameter enum
|
||||
classes in BooleanClause and Field. (Christoph)
|
||||
|
||||
|
||||
Bug fixes
|
||||
|
||||
|
|
|
@ -37,7 +37,9 @@ import org.apache.lucene.search.RangeQuery; // for javadoc
|
|||
* indexed when using this class. See {@link DateTools} for an
|
||||
* alternative without such a limitation.
|
||||
*
|
||||
* @deprecated Use {@link DateTools} instead.
|
||||
* @deprecated If you build a new index, use {@link DateTools} instead. For
|
||||
* existing indices you can continue using this class, as it will not be
|
||||
* removed in the near future despite being deprecated.
|
||||
*/
|
||||
public class DateField {
|
||||
|
||||
|
|
Loading…
Reference in New Issue