SOLR-8033: document the move of EmptyEntityResolver

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1716160 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Erik Hatcher 2015-11-24 15:24:34 +00:00
parent 2162d892f2
commit ee91bffb99
1 changed files with 4 additions and 1 deletions

View File

@ -174,7 +174,7 @@ Upgrading from Solr 5.3
* DefaultSimilarityFactory has been renamed to ClassicSimilarityFactory to mach the underlying rename of
DefaultSimilarity to ClassicSimilarity and the (eventual) move away from using it as a default.
If you currently have DefaultSimilarityFactory explicitly refrenced in your schema.xml, you will now get
If you currently have DefaultSimilarityFactory explicitly referenced in your schema.xml, you will now get
a warning urging you to edit your config to use the functionally identical ClassicSimilarityFactory.
DefaultSimilarityFactory will be removed completely in Solr 6. See SOLR-8239 for more details.
@ -182,6 +182,9 @@ Upgrading from Solr 5.3
- SolrCore.getStartTime: Use SolrCore.getStartTimeStamp instead.
- SolrIndexSearcher.getOpenTime: Use SolrIndexSearcher.getOpenTimeStamp instead.
* SOLR-8307: EmptyEntityResolver was moved from core to solrj, and moved from the org.apache.solr.util
package to org.apache.solr.common. If you are using this class, you will need to adjust the import package.
Detailed Change List
----------------------