5.0.0
[5.0.0]
Added
- Component\Result\Facet\Bucket::getFacetSet()
Pitfall when upgrading from 4.x.x
In the past, the V1 API endpoint solr was not added automatically, so most users set it as path on the endpoint. This bug was discovered with the addition of V2 API support. In almost every setup, the path has to be set to /
instead of /solr
with this release!
For the same reason it is a must to explicit configure the core or collection. So an old setting like
'path' => '/solr/xxxx/'
has to be changed to
'path' => '/',
'collection' => 'xxxx',