Skip to content

Commit

Permalink
Merge #1625
Browse files Browse the repository at this point in the history
1625: Update version for the next release (v0.37.0) r=brunoocasali a=meili-bot

_This PR is auto-generated._

The automated script updates the version of meilisearch-js to a new version: "v0.37.0"

👇 Changelogs
---

## 🚀 Enhancements

* Add support for the new setting: `proximityPrecision` (#1619) mdubus
```js
client.index('books').getProximityPrecision()
client.index('books').updateProximityPrecision('byAttribute')
client.index('books').resetProximityPrecision()
```
* Update error inheritance to extend `MeiliSearchError` (#1607) amit-ksh

## 🧪 Experimental enhancement - Hybrid and vector search

⚠️ This is about an experimental feature of Meilisearch. Activate the [`vectorStore` experimental feature to use it](https://www.meilisearch.com/docs/reference/api/experimental_features#configure-experimental-features)

* Add support for the `embedders` settings (#1623) mdubus
```js
client.index('books').getEmbedders()
client.index('books').updateEmbedders({ default: { source: 'userProvided', dimensions: 1 }})
client.index('books').resetEmbedders()
```

* Add support for the `hybrid` parameter during search (#1623) mdubus

## ⚙️ Maintenance/misc

* Fix test name in error.test.ts (#1609) amit-ksh
* Update Jest (#1622) flevi29

Thanks again to amit-ksh, flevi29! 🎉


Co-authored-by: meili-bot <[email protected]>
  • Loading branch information
meili-bors[bot] and meili-bot authored Jan 15, 2024
2 parents 1a9c032 + 1e9d22f commit a8b5e4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "meilisearch",
"version": "0.36.0",
"version": "0.37.0",
"description": "The Meilisearch JS client for Node.js and the browser.",
"keywords": [
"meilisearch",
Expand Down
2 changes: 1 addition & 1 deletion src/package-version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const PACKAGE_VERSION = '0.36.0'
export const PACKAGE_VERSION = '0.37.0'

0 comments on commit a8b5e4b

Please sign in to comment.