Releases: DAXGRID/typesense-dotnet
6.6.0
What's Changed
- Support offset and limit pagination by @TheWillard in #162
New Contributors
- @TheWillard made their first contribution in #162
Full Changelog: 6.5.0...6.6.0
6.5.0
What's Changed
Notes
- The support for auto embedding and semantic seach requires Typesense version 0.25.0.
- Currently there is a bug in Typesense 0.25.0 that makes bulk importing documents not working - check this issue typesense/typesense#1166.
Thanks
@HazyFish for implementing #158
New Contributors
Full Changelog: 6.4.1...6.5.0
6.4.1
What's Changed
- add vector search documentation to readme by @runeanielsen in #149
- fix formatting error in vector search example in readme by @runeanielsen in #150
- improve the description on how to run the integration tests by @runeanielsen in #154
- use latest typesense version (0.24.1) for integration testing by @runeanielsen in #155
- vector query is only supported on multi search by @runeanielsen in #156
Thanks
Thanks to @HazyFish for pointing out issue - VectorQuery doesn't work with Search - Malformed vector query string #153
Full Changelog: 6.4.0...6.4.1
6.4.0
What's Changed
- can now do multiple multi-search for same type T by @runeanielsen in #147
- can now execute vector queries by @runeanielsen in #146
Special thanks to tanczosm and jveto for helping out with the PRs.
Note
To support additional fields when doing MultiSearch, we had to switch from using SearchResult<T>
to MultiSearchResult<T>
in all MultiSearch methods. If you encounter any compilation errors updating to this version, simply switch from SearchResult<T>
to MultiSearchResult<T>
and the issue should be resolved.
Full Changelog: 6.3.0...6.4.0
6.3.0
What's Changed
- add multilingual support by @runeanielsen in #139
- facet is no longer a required field in constructor for
Field
by @runeanielsen in #140 - can now update the locale using update collection by @runeanielsen in #141
- optional constructor params are now default to simplify creation by @runeanielsen in #142
Full Changelog: 6.2.0...6.3.0
6.2.0
6.1.0
What's Changed
- adds support for nested objects by @runeanielsen in #135
Note
The new feature "nested-objects" is only supported from Typesense verison 0.24.0.
Full Changelog: 6.0.0...6.1.0
6.0.0
Breaking changes
This has been released as a major release, because of breaking changes in the SearchParameters
class. The following properties has been changed to int
to reflect the official API. To fix any compilation issues, just change the string
value to an int
value instead.
- page
- per_page
- max_facet_values
- group_limit
- highlight_affix_num_tokens
- snippet_threshold
- limit_hits
- max_candidates (already int)
- num_typos
- typo_tokens_threshold
- drop_tokens_threshold
Notable changes
- add cancellation tokens for all "fetch" methods by @PhenX in #120
- Change the way the HTTP query is made to make it more generic by @PhenX in #124
- Add a method to retrieve stats by @PhenX in #121
- Fix user input injections in query parameters by @PhenX in #127
- adds support for snippets in highlight by @runeanielsen in #129
- Add missing search parameters by @PhenX in #130
- search parameters now use integers instead of strings for numeric values by @runeanielsen in #131
New Contributors
Thanks a lot to @PhenX for the contributions. 🥇
Full Changelog: 5.2.0...6.0.0
5.2.0
5.1.0
What's Changed
- add support for json serialized documents parameters by @runeanielsen in #115
Full Changelog: 5.0.0...5.1.0