Skip to content

Releases: mecenat/solr

Configurable retry client

13 Dec 15:40
Compare
Choose a tag to compare
v1.3.3

retryable connection now accepts a config

Added option to disable logs in retryable client

29 Oct 14:51
Compare
Choose a tag to compare
v1.3.2

updated go version, added option to turn off logs in retryable client

Set timeout only between retries

04 Mar 08:07
Compare
Choose a tag to compare
v1.3.1

remove timeout from httpclient and set only timeout between retries

Retryable connections

03 Mar 14:32
Compare
Choose a tag to compare

New connection option: Implementing hashicorp's retryablehttp it is now possible to retry each request 10 times with a provided timeout in order to avoid temporary loses in connection to the solr server.

Breaking Changes:
The call for a new Client is now split into a call for a new connection and then a new client using that connection (see Readme for more information)

v1.2.0

16 Sep 12:31
Compare
Choose a tag to compare

Updated customupdate() to facilitate multiple additions and deletions in one request. Due to the way solr is using json this update makes it no longer possible to send items in a predefined order ( add(2) -> delete(1) -> rollback -> add(3) ) and therefore the Commit, Rollback and Optimize commands have been removed from the UpdateBuilder. (They can still be used with an individual call via the Client methods).

v1.1.3

15 Sep 08:52
Compare
Choose a tag to compare
fixed unmarshaling for all managed response properties

v1.1.2

15 Sep 08:28
Compare
Choose a tag to compare
fixed unmarshaling for all managed response properties

v1.1.1

14 Sep 15:04
Compare
Choose a tag to compare

Added a raw map to facilitate result reading for managed resources

v1.1.0

10 Sep 11:23
Compare
Choose a tag to compare

Added API for handling managed resources, with extra helpers for synonyms.

v1.0.0

01 Sep 10:33
Compare
Choose a tag to compare

The official first release of the solr wrapper. With support for the Request API (Search), Schema API and CoreAdmin API.