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

[12/12] lucene-solr:master: SOLR-10574: Changes and upgrade notes

SOLR-10574: Changes and upgrade notes


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

Branch: refs/heads/master
Commit: 0ec9d64d816ec907235cddef972d7c45fc78f332
Parents: d1c807d
Author: Ishan Chattopadhyaya <is...@apache.org>
Authored: Tue Jun 20 11:14:28 2017 +0000
Committer: Ishan Chattopadhyaya <is...@apache.org>
Committed: Tue Jun 20 11:14:28 2017 +0000

----------------------------------------------------------------------
 solr/CHANGES.txt | 8 ++++++++
 1 file changed, 8 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/0ec9d64d/solr/CHANGES.txt
----------------------------------------------------------------------
diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt
index cc67391..5c865a1 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -97,6 +97,11 @@ Upgrading from Solr 6.x
 * SOLR-9565: The name of TemplateUpdateRequestProcessorFactory' is changed to 'template' from 'Template' and the
   name of 'AtomicUpdateProcessorFactory' is changed to 'atomic' from 'Atomic'
 
+* SOLR-10574: basic_configs and data_driven_schema_configs have now been merged into _default. It has data driven nature
+  enabled by default, and can be turned off (after creating a collection) with:
+     curl http://host:8983/solr/mycollection/config -d '{"set-user-property": {"update.autoCreateFields":"false"}}'
+  Please see SOLR-10574 for details.
+
 New Features
 ----------------------
 * SOLR-9857, SOLR-9858: Collect aggregated metrics from nodes and shard leaders in overseer. (ab)
@@ -151,6 +156,9 @@ New Features
 
 * SOLR-10406: v2 API error messages list the URL request path as /solr/____v2/... when the original path was /v2/... (Cao Manh Dat, noble)
 
+* SOLR-10574: New _default config set replacing basic_configs and data_driven_schema_configs.
+  (Ishan Chattopadhyaya, noble, shalin, hossman, David Smiley, Jan Hoydahl, Alexandre Rafalovich) 
+
 Bug Fixes
 ----------------------
 * SOLR-9262: Connection and read timeouts are being ignored by UpdateShardHandler after SOLR-4509.