You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by dw...@apache.org on 2021/03/10 09:48:09 UTC

[lucene] 05/11: mergin

This is an automated email from the ASF dual-hosted git repository.

dweiss pushed a commit to branch SOLR-14866
in repository https://gitbox.apache.org/repos/asf/lucene.git

commit 62486e8c51dd1b4b6eeeefde90a412a05719c6e1
Merge: c59f343 9b9b0a6
Author: epugh <ep...@opensourceconnections.com>
AuthorDate: Tue Sep 15 16:12:54 2020 -0400

    mergin

 dev-tools/scripts/buildAndPushRelease.py           | 33 +++-------
 dev-tools/scripts/releaseWizard.py                 | 23 +++----
 dev-tools/scripts/releaseWizard.yaml               | 73 +++++++++++-----------
 dev-tools/scripts/scriptutil.py                    | 11 ----
 lucene/CHANGES.txt                                 |  8 ++-
 .../java/org/apache/lucene/index/DocConsumer.java  | 36 -----------
 .../lucene/index/DocumentsWriterPerThread.java     | 38 +++--------
 ...efaultIndexingChain.java => IndexingChain.java} | 17 ++---
 .../apache/lucene/index/LiveIndexWriterConfig.java | 13 ----
 .../lucene/index/SortingStoredFieldsConsumer.java  |  5 +-
 .../org/apache/lucene/index/TestIndexWriter.java   |  2 +-
 .../apache/lucene/index/TestIndexWriterConfig.java | 17 -----
 .../lucene/index/TestIndexWriterWithThreads.java   |  2 +-
 .../org/apache/lucene/facet/TestDrillSideways.java | 18 ++++--
 .../lucene/facet/range/TestRangeFacetCounts.java   |  5 +-
 .../flexible/standard/TestQPHelper.java            |  8 +--
 .../org/apache/lucene/search/AssertingWeight.java  | 13 +++-
 lucene/version.properties                          | 10 +++
 solr/CHANGES.txt                                   |  5 +-
 solr/bin/solr                                      |  2 +-
 solr/bin/solr.cmd                                  |  2 +-
 solr/bin/solr.in.cmd                               |  2 +-
 solr/bin/solr.in.sh                                |  2 +-
 solr/docker/build.gradle                           |  2 +-
 .../src/field-types-included-with-solr.adoc        | 60 +++++++++++-------
 solr/solr-ref-guide/src/other-parsers.adoc         | 11 ++++
 .../src/stream-decorator-reference.adoc            |  6 +-
 27 files changed, 184 insertions(+), 240 deletions(-)

diff --cc solr/solr-ref-guide/src/field-types-included-with-solr.adoc
index b9a236a,11bd1c0..7675fd7
--- a/solr/solr-ref-guide/src/field-types-included-with-solr.adoc
+++ b/solr/solr-ref-guide/src/field-types-included-with-solr.adoc
@@@ -16,11 -16,17 +16,13 @@@
  // specific language governing permissions and limitations
  // under the License.
  
- The following table lists the field types that are available in Solr. The `org.apache.solr.schema` package includes all the classes listed in this table.
+ The following table lists the field types that are available in Solr and are recommended. The page further down, lists all the deprecated types for those migrating from older version of Solr. The {solr-javadocs}/solr-core/org/apache/solr/schema/package-summary.html[`org.apache.solr.schema`] package includes all the classes listed in this table.
  
 -// TODO: Change column width to %autowidth.spread when https://github.com/asciidoctor/asciidoctor-pdf/issues/599 is fixed
 -
 -== Recommended field types
 -
 -[cols="25,75",options="header"]
 +[%autowidth.spread,width="100%",options="header"]
  |===
  |Class |Description
+ |BBoxField | Indexes a single rectangle (bounding box) per document field and supports searching via a bounding box. See the section <<spatial-search.adoc#spatial-search,Spatial Search>> for more information.
+ 
  |BinaryField |Binary data.
  
  |BoolField |Contains either true or false. Values of `1`, `t`, or `T` in the first character are interpreted as `true`. Any other values in the first character are interpreted as `false`.