LUCENE-1768: Add missing changes.txt entries

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1166457 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2011-09-07 22:55:25 +00:00
parent d34db30601
commit 5ec2a2289a
2 changed files with 46 additions and 0 deletions

View File

@ -99,12 +99,38 @@ New Features
during indexing or querying (with parsers for wordnet and solr formats).
Removed contrib/wordnet. (Simon Rosenthal, Robert Muir, Mike McCandless)
* LUCENE-1768: added support for numeric ranges in contrib query parser;
added support for simple numeric queries, such as <age:4>, in contrib
query parser (Vinicius Barros via Uwe Schindler)
Changes in runtime behavior:
* LUCENE-1768: StandardQueryConfigHandler now uses NumericFieldConfigListener
to set a NumericConfig to its corresponding FieldConfig;
StandardQueryTreeBuilder now uses DummyQueryNodeBuilder for
NumericQueryNodes and uses NumericRangeQueryNodeBuilder for
NumericRangeQueryNodes; StandardQueryNodeProcessorPipeline now executes
NumericQueryNodeProcessor followed by NumericRangeQueryNodeProcessor
right after LowercaseExpandedTermsQueryNodeProcessor
(Vinicius Barros via Uwe Schindler)
API Changes
* LUCENE-3296: PKIndexSplitter & MultiPassIndexSplitter now have version
constructors. PKIndexSplitter accepts a IndexWriterConfig for each of
the target indexes. (Simon Willnauer, Jason Rutherglen)
* LUCENE-1768: setNumericConfigMap and getNumericConfigMap were added
to StandardQueryParser; ParametricRangeQueryNode and
oal.queryParser.standard.nodes.RangeQueryNode now implement
oal.queryParser.core.nodes.RangeQueryNode;
oal.queryParser.core.nodes.RangeQueryNode was deprecated and now extends
TermRangeQueryNode, which extends AbstractRangeQueryNode;
ParametricQueryNode was deprecated; FieldQueryNode now implements the
new FieldValueQueryNode<CharSequence>, which this last one implements
FieldableQueryNode and thew new ValueQueryNode
(Vinicius Barros via Uwe Schindler)
Optimizations
* LUCENE-3306: Disabled indexing of positions for spellchecker n-gram

View File

@ -0,0 +1,20 @@
QueryParser Module Change Log
For more information on past and future Lucene versions, please see:
http://s.apache.org/luceneversions
======================= Trunk (not yet released) =======================
Changes in runtime behavior
* LUCENE-1768: StandardQueryTreeBuilder uses RangeQueryNodeBuilder for
RangeQueryNodes, since theses two classes were removed;
ParametricRangeQueryNodeProcessor now creates TermRangeQueryNode,
instead of RangeQueryNode, from ParametricRangeQueryNode
(Vinicius Barros via Uwe Schindler)
API Changes
* LUCENE-1768: ParametricRangeQueryNode now implements
RangeQueryNode<FieldQueryNode> instead of
RangeQueryNode<ParametricQueryNode> (Vinicius Barros via Uwe Schindler)