Return-Path: X-Original-To: apmail-lucene-commits-archive@www.apache.org Delivered-To: apmail-lucene-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 2441C18847 for ; Mon, 7 Dec 2015 09:09:57 +0000 (UTC) Received: (qmail 13829 invoked by uid 500); 7 Dec 2015 09:09:47 -0000 Mailing-List: contact commits-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list commits@lucene.apache.org Received: (qmail 13820 invoked by uid 99); 7 Dec 2015 09:09:47 -0000 Received: from Unknown (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 Dec 2015 09:09:47 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 10C1CC0F8F for ; Mon, 7 Dec 2015 09:09:47 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.246 X-Spam-Level: * X-Spam-Status: No, score=1.246 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-0.554] autolearn=disabled Received: from mx1-us-east.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id gMJ_qDuQ2uzh for ; Mon, 7 Dec 2015 09:09:43 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with ESMTP id EF18642B0F for ; Mon, 7 Dec 2015 09:09:42 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 57FA5E02E6 for ; Mon, 7 Dec 2015 09:09:42 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id C950C3A0046 for ; Mon, 7 Dec 2015 09:09:41 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1718265 - in /lucene/dev/branches/branch_5x/solr: ./ core/src/test/org/apache/solr/handler/admin/ example/example-DIH/solr/db/conf/ example/example-DIH/solr/mail/conf/ example/example-DIH/solr/rss/conf/ example/example-DIH/solr/solr/conf/ ... Date: Mon, 07 Dec 2015 09:09:41 -0000 To: commits@lucene.apache.org From: varun@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20151207090941.C950C3A0046@svn01-us-west.apache.org> Author: varun Date: Mon Dec 7 09:09:40 2015 New Revision: 1718265 URL: http://svn.apache.org/viewvc?rev=1718265&view=rev Log: SOLR-8131: Make ManagedIndexSchemaFactory the default schemaFactory in all example config files Modified: lucene/dev/branches/branch_5x/solr/CHANGES.txt lucene/dev/branches/branch_5x/solr/core/src/test/org/apache/solr/handler/admin/ShowFileRequestHandlerTest.java lucene/dev/branches/branch_5x/solr/example/example-DIH/solr/db/conf/solrconfig.xml lucene/dev/branches/branch_5x/solr/example/example-DIH/solr/mail/conf/solrconfig.xml lucene/dev/branches/branch_5x/solr/example/example-DIH/solr/rss/conf/solrconfig.xml lucene/dev/branches/branch_5x/solr/example/example-DIH/solr/solr/conf/solrconfig.xml lucene/dev/branches/branch_5x/solr/example/example-DIH/solr/tika/conf/solrconfig.xml lucene/dev/branches/branch_5x/solr/server/solr/configsets/basic_configs/conf/solrconfig.xml lucene/dev/branches/branch_5x/solr/server/solr/configsets/sample_techproducts_configs/conf/solrconfig.xml Modified: lucene/dev/branches/branch_5x/solr/CHANGES.txt URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/CHANGES.txt?rev=1718265&r1=1718264&r2=1718265&view=diff ============================================================================== --- lucene/dev/branches/branch_5x/solr/CHANGES.txt (original) +++ lucene/dev/branches/branch_5x/solr/CHANGES.txt Mon Dec 7 09:09:40 2015 @@ -66,6 +66,11 @@ Other Changes * SOLR-8359: Restrict child classes from using parent logger's state (Jason Gerlowski, Mike Drob, Anshum Gupta) +* SOLR-8131: All example config sets now explicitly use the ManagedIndexSchemaFactory + instead of ClassicIndexSchemaFactory. This means that the Schema APIs ( //schema ) + are enabled by default and the schema is mutable. The schema file will be called managed-schema + (Uwe Schindler, shalin, Varun Thacker) + ================== 5.4.0 ================== Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release Modified: lucene/dev/branches/branch_5x/solr/core/src/test/org/apache/solr/handler/admin/ShowFileRequestHandlerTest.java URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/core/src/test/org/apache/solr/handler/admin/ShowFileRequestHandlerTest.java?rev=1718265&r1=1718264&r2=1718265&view=diff ============================================================================== --- lucene/dev/branches/branch_5x/solr/core/src/test/org/apache/solr/handler/admin/ShowFileRequestHandlerTest.java (original) +++ lucene/dev/branches/branch_5x/solr/core/src/test/org/apache/solr/handler/admin/ShowFileRequestHandlerTest.java Mon Dec 7 09:09:40 2015 @@ -93,7 +93,7 @@ public class ShowFileRequestHandlerTest public void testGetRawFile() throws SolrServerException, IOException { SolrClient client = getSolrClient(); //assertQ(req("qt", "/admin/file")); TODO file bug that SolrJettyTestBase extends SolrTestCaseJ4 - QueryRequest request = new QueryRequest(params("file","schema.xml")); + QueryRequest request = new QueryRequest(params("file", "managed-schema")); request.setPath("/admin/file"); final AtomicBoolean readFile = new AtomicBoolean(); request.setResponseParser(new ResponseParser() { Modified: lucene/dev/branches/branch_5x/solr/example/example-DIH/solr/db/conf/solrconfig.xml URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/example/example-DIH/solr/db/conf/solrconfig.xml?rev=1718265&r1=1718264&r2=1718265&view=diff ============================================================================== --- lucene/dev/branches/branch_5x/solr/example/example-DIH/solr/db/conf/solrconfig.xml (original) +++ lucene/dev/branches/branch_5x/solr/example/example-DIH/solr/db/conf/solrconfig.xml Mon Dec 7 09:09:40 2015 @@ -145,27 +145,27 @@ --> - - + + true + managed-schema + - - + + true + managed-schema + - - + + true + managed-schema + - - + + true + managed-schema + - - + + true + managed-schema + - + + + true + managed-schema + - - + + true + managed-schema +