Skip to content

Commit

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

Release CHANGELOG:

This version introduces features released on Meilisearch v1.2.0 🎉
Check out the changelog of [Meilisearch v1.2.0](https://github.com/meilisearch/meilisearch/releases/tag/v1.2.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

- Addition of the method `DeleteDocumentsByFilter`, this method takes an `interface{}` which allows you to send different types of filters (`string`, `[]string`, `[]interface{}{[]string{}}`, ...). The `filter` field works precisely like the `filter` field used on the search method. See [the docs on how to use filters](https://www.meilisearch.com/docs/learn/advanced/filtering#filter-basics). #440 `@alallema`

  ⚠️ You must configure the attributes you want to filter using the `Index.UpdateFilterableAttributes()`.
  ⚠️ Remember to **update your Meilisearch server to v1.2.0 or newer before** adopting it.

- Add the ability to add `Filter` in the `DocumentsQuery`. When a query with a `filter` is sent to `getDocuments`, it will filter the documents like the `search` method. See [the docs on how to use filters](https://www.meilisearch.com/docs/learn/advanced/filtering#filter-basics). #439 `@alallema` 
  
  ⚠️ You must configure the attributes you want to filter using the `Index.UpdateFilterableAttributes()`.
  ⚠️ Remember to **update your Meilisearch server to v1.2.0 or newer before** adopting it.

Thanks again to `@alallema,` `@curquiza` ! 🎉

Co-authored-by: meili-bot <[email protected]>
Co-authored-by: Amélie <[email protected]>
  • Loading branch information
3 people authored Jun 5, 2023
2 parents 9c789f0 + c812338 commit e6ebf2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package meilisearch

import "fmt"

const VERSION = "0.24.0"
const VERSION = "0.25.0"

func GetQualifiedVersion() (qualifiedVersion string) {
return getQualifiedVersion(VERSION)
Expand Down

0 comments on commit e6ebf2f

Please sign in to comment.