diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt index 62b88185e72..aab51166874 100644 --- a/solr/CHANGES.txt +++ b/solr/CHANGES.txt @@ -94,12 +94,6 @@ Jetty 9.3.14.v20161028 Detailed Change List ---------------------- -Upgrade Notes ----------------------- - -* SOLR-9984: GenericHadoopAuthPlugin is deprecated in favor of HadoopAuthPlugin. Simply changing the - name of the class in the security configurations should suffice while upgrading. - New Features ---------------------- @@ -128,8 +122,6 @@ Other Changes ---------------------- * SOLR-9980: Expose configVersion in core admin status (Jessica Cheng Mallet via Tomás Fernández Löbbe) -* SOLR-9984: Deprecate GenericHadoopAuthPlugin in favor of HadoopAuthPlugin (Ishan Chattopadhyaya) - ================== 6.4.0 ================== Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release. diff --git a/solr/core/src/java/org/apache/solr/security/GenericHadoopAuthPlugin.java b/solr/core/src/java/org/apache/solr/security/GenericHadoopAuthPlugin.java deleted file mode 100644 index 3d63fd6e6e1..00000000000 --- a/solr/core/src/java/org/apache/solr/security/GenericHadoopAuthPlugin.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.apache.solr.security; - -import org.apache.solr.core.CoreContainer; - -/** - * * @deprecated Use {@link HadoopAuthPlugin}. For backcompat against Solr 6.4. - */ -@Deprecated -public class GenericHadoopAuthPlugin extends HadoopAuthPlugin { - - public GenericHadoopAuthPlugin(CoreContainer coreContainer) { - super(coreContainer); - } - -} \ No newline at end of file