From 0ec9d64d816ec907235cddef972d7c45fc78f332 Mon Sep 17 00:00:00 2001 From: Ishan Chattopadhyaya Date: Tue, 20 Jun 2017 11:14:28 +0000 Subject: [PATCH] SOLR-10574: Changes and upgrade notes --- solr/CHANGES.txt | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt index cc6739120e8..5c865a18d36 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.