Releases: typesense/typesense-js
Releases · typesense/typesense-js
v1.8.1
- Expose
Typesenseinwindow8b9ed0e
v1.8.0
- Add
ignore_not_found - Add support for conversations
- Add nohits_queries
- Add new search params to types
- Fix types to allow for presets
- Allow a custom httpAgent and httpsAgent to be passed in
- Update dependencies
- Disambiguate delete by query method singature types
- Require node 18
- Add support for facet_return_parent
- Add support for stopwords
- Update axios
- Use webpack instead of gulp and browserify
⚠️ Previous versions allowed the following method signature for deleting a single document by ID, due to mis-configured types:
typesenseClient
.collections('collection')
.documents()
.delete(id.toString());That was not the intended way and it was removed in this release. Please use the following method (from the docs) instead:
typesenseClient
.collections('collection')
.documents(id.toString())
.delete()Full Changelog: v1.7.2...v1.8.0
v1.8.0-7
v1.8.0-6
- Add new search params to types 2ab4ff4
v1.8.0-5
- Fix types to allow for presets 233a9fa
v1.8.0-4
- Allow a custom
httpAgentandhttpsAgentto be passed in e07d923 - FIX Rename PresetSchema property id to name 035e460 by @bfritscher
- Update dependencies 2d80b28
v1.8.0-3
- Disambiguate delete by query method singature types ba1e283