bloodhound/changelog.md

110 lines
3.2 KiB
Markdown
Raw Normal View History

2015-09-14 08:47:29 +03:00
0.8.0.0
===================
Thanks to the following people, Bloodhound 0.8.0.0 is being released!
* @MichaelXavier
- #67: Deriving Monad(Throw|Catch|Mask)
- #64: Export BH constructor
- #61: Filter aggregation support
- #60: Add value_count aggregation support
- #58: Eliminate partiality in EsResult
* @centromere
- #59: Fixed bug with IndexSettings serialization
- #56: Added fields support to Search
- #55: Added ability to specify a parent document
- #54: Fixed IndexTemplate serialization bug
- #52: Added ability to manipulate templates
- #51: Fixed mapping API
- #50: Fixed problem with put sending POST
* @bermanjosh
- #63: Url query encoding bug
- #53: Scan type
* @sjakobi
- #69: Replace Control.Monad.Error with CM.Except via mtl-compat
- #70: Silence redundant import warning with base-4.8.*
- #71: Use "newManager" instead of deprecated "withManager"
2015-07-16 04:47:45 +03:00
0.7.0.0
===================
* Added QueryFilter thanks to Bjørn Nordbø!
* Support for optimistic concurrency control thanks again to @MichaelXavier!
0.6.0.1
===================
* Allow Aeson 0.9
2015-07-16 04:47:45 +03:00
0.6.0.0
===================
* Moved to BHMonad, thanks to @MichaelXavier! Now there's a reader of config information and IO is lifted.
* SearchHits have a Monoid now, makes combining search results nicer, allows for defaulting when a search cannot be performed.
2015-07-16 04:47:45 +03:00
2014-12-12 09:28:32 +03:00
0.5.0.0
===================
* Fixed and changed TermsQuery (This caused the major bump)
* Removed benchmarks from travis.yml
* Added doctests, examples for Database.Bloodhound.Client. Haddocks should be much nicer.
* Various fixes, reformatting
2014-10-10 21:29:32 +04:00
0.4.0.0
===================
2014-10-12 01:12:57 +04:00
* Term and date aggregation - thanks to Christopher Guiney! (@chrisguiney)
Following three thanks to Liam Atkins (@latkins)
2014-12-12 09:28:32 +03:00
2014-10-10 21:29:32 +04:00
* omitNulls changed to exclude empty lists and null values
2014-11-20 01:05:22 +03:00
* BoolQuery must/mustNot/Should changed from Maybe (Query|[Query]) to [Query] thanks to @latkins
2014-10-10 21:29:32 +04:00
* Added vector dependency so we can check for V.null/V.empty on JSON arrays
2014-11-20 01:02:45 +03:00
* Highlighting, thanks to @latkins! See http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-request-highlighting.html and http://www.elasticsearch.org/guide/en/elasticsearch/guide/current/highlighting-intro.html for more
* Added 1.4.0 support and CI integration
* Can generate individual bulk operations, https://github.com/bitemyapp/bloodhound/issues/17, bulk requests should be more efficient now too - Vector instead of List.
2014-10-10 21:29:32 +04:00
0.3.0.0
===================
2014-11-20 01:05:22 +03:00
* Status "ok" changed from Bool to Maybe Bool thanks to @borisyukd
2014-10-10 21:29:32 +04:00
2014-10-12 01:12:57 +04:00
* Elasticsearch 1.3.x compatibility fixed with changes to geo bounding boxes - thanks to Curtis Carter! (@ccarter)
2014-10-10 21:29:32 +04:00
* CI coverage expanded to 1.0.x -> 1.3.x
2014-10-10 21:29:32 +04:00
0.2.0.1
===================
2014-07-31 09:01:11 +04:00
* Killed off maybeJson/mField/catMaybes in favor of omitNulls
* Experimenting with RecordWildcards
* Merged Types and Instances module into Types to prevent possibility of orphans and cull orphan instance warnings.
* Added note about current supported Elasticsearch version.
2014-10-10 21:29:32 +04:00
0.2.0.0
===================
2014-06-20 20:22:03 +04:00
2014-07-01 19:02:05 +04:00
* Added TermFilter
2014-06-20 20:22:03 +04:00
* Renamed createMapping to putMapping
* Fixed and rebuilt documentation
2014-10-12 01:12:57 +04:00
* RegexpFlags changed to a sum type instead of Text, thanks to @MichaelXavier!