Releases: jaeyson/ex_typesense
Releases · jaeyson/ex_typesense
0.7.3
0.7.2
0.7.1
0.7.0
0.7.0 (2024.09.10)
Changed
- HTTP request construction in
ExTypesense.HttpClient
to includeoptions
. - Bumped dependencies
Added
options
in configconfig/configx.exs
.get_options/0
function inHttpClient
to fetch theoptions
configuration.- tests for
get_options/0
inExTypesense.HttpClientTest
.
0.6.0
0.6.0 (2024.07.15)
Changed
- Move application env variables from
test_helper.exs
toconfig
directory, in usage for bothdev
andtest
environments.
Added
- Function: multi search
0.5.0
0.5.0 (2024.07.13)
Changed
README
regardingdefault_sorting_field
, where it joins the table name with "_id" (e.g.images
isimages_id
instead ofimage_id
).
Added
- Function: delete by query.
- Function: delete all documents in a collection.
- Collection's schema field parameters:
:vec_dist
:store
:reference
:range_index
:stem
Removed
HttpClient.run
andHttpClient.httpc_run
function (useHttpClient.request
).
0.4.3
0.4.2
0.4.1
0.4.0
0.4.0 (2024.05.20)
Added
- Connection module for dynamic loading of credentials.
- Default connection config when running commands (e.g. create collections, etc.).
Changed
- Refactor
ExTypesense.HttpClient
on how to handle request. - Bumped dependencies' version.
- Dropped usage of
:httpc
in favor of usingReq library
.
Deprecated
- Some functions from
Document
andHttpClient
where soft depcrated in order to incorporate theConnection
module for dynamic connections loaded from Ecto schema. If you read the docs, you might notice it's marked withdeprecated
and encourages to use the newer ones.