Releases: typesense/typesense-js
Releases · typesense/typesense-js
v1.9.0-0
- Enable keep alive for imports to prevent socket hang up errors 7bf483a
v1.8.3-2
- Add counter analytics rule type 4b3ddb6
v1.8.3-1
- Add types for counter analytics rule, and also add Analytics Events e8cee13
- fix: updated analytics rule test to include expand query param 4cd70f6 @the-robot
- feat: collection field stem parameter type 5c2de09 @Ku3mi41
v1.8.3-0
v1.8.2
- Add types for image search 72b4154
v1.8.1
- Expose
Typesense
inwindow
8b9ed0e
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