In a word, "no". 5.5 is past any development work so an official release is very unlikely.
That said, building it yourself is not very difficult, you could check the code out, apply the patch and build it. See: https://wiki.apache.org/solr/HowToContribute The short form: 1> get the code: 'git clone -b branch_5_5 https://git-wip-us.apache.org/repos/asf/lucene-solr.git dest' 2> cd dest 3> execute 'ant package' You'll need java and ant and git installed, and you might need to install ivy (you'll get a prompt with specific instructions when you run the ant target if ivy is not already there). The first build will take some time as all the dependent jars are downloaded. At the end of the 'ant package' step you'll have the tgz and zip files, the very files that you'd download from an "official" release. Since that patch has been applied to the 5.5 code line, you won't have to apply it. Best, Erick On Thu, Nov 17, 2016 at 10:15 AM, Thomas Kappler <[email protected]> wrote: > Hi, are there any plans or an estimated release date for 5.5.4? We’re > affected by LUCENE-7417: Highlighting fails for MultiPhraseQuery's with one > clause. > > > > Thanks, > > Thomas --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
