You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mv...@apache.org on 2017/06/08 11:30:11 UTC

[1/2] lucene-solr:branch_6_6: revert changes to CHANGES.txt

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_6_6 703053094 -> a88604da3


revert changes to CHANGES.txt


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/b75dbaf8
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/b75dbaf8
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/b75dbaf8

Branch: refs/heads/branch_6_6
Commit: b75dbaf8d9e347440d18c7e119dae8a928033314
Parents: 7030530
Author: Martijn van Groningen <ma...@gmail.com>
Authored: Thu Jun 8 13:29:21 2017 +0200
Committer: Martijn van Groningen <ma...@gmail.com>
Committed: Thu Jun 8 13:29:21 2017 +0200

----------------------------------------------------------------------
 lucene/CHANGES.txt | 29 ++++++++++++++++++++---------
 1 file changed, 20 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/b75dbaf8/lucene/CHANGES.txt
----------------------------------------------------------------------
diff --git a/lucene/CHANGES.txt b/lucene/CHANGES.txt
index 1dfebfe..f1bddde 100644
--- a/lucene/CHANGES.txt
+++ b/lucene/CHANGES.txt
@@ -4,12 +4,7 @@ For more information on past and future Lucene versions, please see:
 http://s.apache.org/luceneversions
 
 ======================= Lucene 6.6.1 =======================
-
-Bug Fixes
-
-* LUCENE-7869: Changed MemoryIndex to sort 1d points. In case of 1d points, the PointInSetQuery.MergePointVisitor expects
-  that these points are visited in ascending order. The memory index doesn't do this and this can result in document
-  with multiple points that should match to not match. (Martijn van Groningen)
+(No Changes)
 
 ======================= Lucene 6.6.0 =======================
 
@@ -107,6 +102,9 @@ Other
 * LUCENE-7761: Fixed comment in ReqExclScorer.
   (Pablo Pita Leira via Adrien Grand)
 
+* LUCENE-7815: Deprecate the PostingsHighlighter. It evolved into the
+  UnifiedHighlighter. (David Smiley)
+
 ======================= Lucene 6.5.1 =======================
 
 Bug Fixes
@@ -120,6 +118,9 @@ Bug Fixes
 * LUCENE-7769: The UnifiedHighligter wasn't highlighting portions of the query
   wrapped in BoostQuery or SpanBoostQuery. (David Smiley, Dmitry Malinin)
 
+* LUCENE-7791: Fixed index sorting to work with sparse numeric and binary docvalues field.
+  (Przemyslaw Szeremiota via Jim Ferenczi)
+
 Other
 
 * LUCENE-7763: Remove outdated comment in IndexWriterConfig.setIndexSort javadocs.
@@ -169,15 +170,16 @@ API Changes
   instead of once all shard responses are present. (Simon Willnauer,
   Mike McCandless)
 
+* LUCENE-6819: Index-time boosts are deprecated. As a replacement, index-time
+  scoring factors should be indexed into a doc value field and combined at
+  query time using eg. FunctionScoreQuery. (Adrien Grand)
+
 * LUCENE-7700: A cleanup of merge throughput control logic. Refactored all the
   code previously scattered throughout the IndexWriter and 
   ConcurrentMergeScheduler into a more accessible set of public methods (see 
   MergePolicy.OneMergeProgress, MergeScheduler.wrapForMerge and 
   OneMerge.mergeInit). (Dawid Weiss, Mike McCandless).
 
-* LUCENE-7734: FieldType's copy constructor was widened to accept any IndexableFieldType.
-  (David Smiley)
-
 New Features
 
 * LUCENE-7738: Add new InetAddressRange for indexing and querying InetAddress
@@ -341,6 +343,10 @@ Other
 * LUCENE-7658: queryparser/xml CoreParser now implements SpanQueryBuilder interface.
   (Daniel Collins, Christine Poerschke)
 
+* LUCENE-7664: GeoPointField and its queries are deprecated in favor
+  of LatLonPoint, which offers faster indexing and searching
+  performance, smaller index, and less search-time heap usage.  (Mike McCandless)
+
 * LUCENE-7715: NearSpansUnordered simplifications.
   (Paul Elschot via Adrien Grand)
 
@@ -561,6 +567,11 @@ Optimizations
 
 * LUCENE-7572: Doc values queries now cache their hash code. (Adrien Grand)
 
+* LUCENE-7579: Segments are now also sorted during flush, and merging
+  on a sorted index is substantially faster by using some of the same
+  bulk merge optimizations that non-sorted merging uses (Jim Ferenczi
+  via Mike McCandless)
+
 Other
 
 * LUCENE-7546: Fixed references to benchmark wikipedia data and the Jenkins line-docs file


[2/2] lucene-solr:branch_6_6: LUCENE-7869: added entry

Posted by mv...@apache.org.
LUCENE-7869: added entry


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/a88604da
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/a88604da
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/a88604da

Branch: refs/heads/branch_6_6
Commit: a88604da31c5b22888307a337af2d6688a0fa293
Parents: b75dbaf
Author: Martijn van Groningen <ma...@gmail.com>
Authored: Thu Jun 8 13:29:55 2017 +0200
Committer: Martijn van Groningen <ma...@gmail.com>
Committed: Thu Jun 8 13:29:55 2017 +0200

----------------------------------------------------------------------
 lucene/CHANGES.txt | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/a88604da/lucene/CHANGES.txt
----------------------------------------------------------------------
diff --git a/lucene/CHANGES.txt b/lucene/CHANGES.txt
index f1bddde..89f124f 100644
--- a/lucene/CHANGES.txt
+++ b/lucene/CHANGES.txt
@@ -4,7 +4,12 @@ For more information on past and future Lucene versions, please see:
 http://s.apache.org/luceneversions
 
 ======================= Lucene 6.6.1 =======================
-(No Changes)
+
+Bug Fixes
+
+* LUCENE-7869: Changed MemoryIndex to sort 1d points. In case of 1d points, the PointInSetQuery.MergePointVisitor expects
+  that these points are visited in ascending order. The memory index doesn't do this and this can result in document
+  with multiple points that should match to not match. (Martijn van Groningen)
 
 ======================= Lucene 6.6.0 =======================