Skip to content

5.0.0

Compare
Choose a tag to compare
@mkalkbrenner mkalkbrenner released this 30 Apr 16:31
· 424 commits to master since this release

[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',