Skip to content

Commit

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

## CHANGELOG 

This version introduces features released on Meilisearch v1.4.0 🎉
Check out the changelog of [Meilisearch v1.4.0](https://github.com/meilisearch/meilisearch/releases/tag/v1.4.0) for more information on the changes. 

⚠️ If you want to adopt new features of this release, **update the Meilisearch server** to the according version.

## 🚀 Enhancements

- Add support for the new setting: `dictionary` (#1563) `@atoulmet` 
```js
client.index('books').getDictionary()
client.index('books').updateDictionary(['W.E.B'])
client.index('books').resetDictionary()
```
- Add support for the new setting: `separator-tokens` (#1563) `@atoulmet` 
```js
client.index('books').getSeparatorTokens()
client.index('books').updateSeparatorTokens(['`@'])`
client.index('books').resetSeparatorTokens()
```
- Add support for the new setting: `non-separator-tokens` (#1563) `@atoulmet` 
```js
client.index('books').getNonSeparatorTokens()
client.index('books').updateNonSeparatorTokens(['.', ','])
client.index('books').resetNonSeparatorTokens()
```

## ⚠️ Warning usage with v1.4.0

A bug fix in Meilisearch v1.4.0 introduces a breaking change in the filter usage. It only concerns users using the `filter` search parameter with `\`.
Explanation and change to apply are detailed in the [Meilisearch v1.4.0](https://github.com/meilisearch/meilisearch/releases/tag/v1.4.0)

Thanks to `@atoulmet` and `@bidoubiwa!` 🎉  



Co-authored-by: meili-bot <74670311+meili-bot@users.noreply.github.com>
  • Loading branch information
meili-bors[bot] and meili-bot committed Sep 25, 2023
2 parents 6ddbc50 + 145d518 commit 646d728
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.34.2",
"version": "0.35.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.34.2'
export const PACKAGE_VERSION = '0.35.0'

0 comments on commit 646d728

Please sign in to comment.