On 5/23/2018 11:46 AM, BlackIce wrote: > Is there a list of things that have been deprecated in solr since 5.0.0? Or > do I have to read EVERY release readme till I get to 7.3.1?
The javadoc for each release has pages that list all deprecations in that release on a per-module basis, so there are different pages for solr-solrj, solr-core, and other modules within the source code. Typically for user code, you're only going to care about SolrJ. Here's the page for SolrJ 7.3.1: https://lucene.apache.org/solr/7_3_1/solr-solrj/deprecated-list.html You can change the version number in the URL to get different versions. Here's the one for 6.6.3: https://lucene.apache.org/solr/6_6_3/solr-solrj/deprecated-list.html If you want to get an idea of what's completely eliminated from a certain major release, look at the javadoc for the class you're interested, find the page specific to the latest release in the previous major version, and click on "deprecated" at the top of the page. So to find out what's missing from 7.x, you would load the page for 6.6.3, which is currently the latest 6.x release. Thanks, Shawn