Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: adripo/meilisearch-python

Tags

v0.22.1

Toggle v0.22.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge meilisearch#552

552: Update version for the next release (v0.22.1) r=alallema a=alallema



Co-authored-by: alallema <[email protected]>
Co-authored-by: Amélie <[email protected]>

v0.22.0

Toggle v0.22.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge meilisearch#523

523: Update version for the next release (v0.22.0) r=alallema a=brunoocasali

This version makes this package compatible with Meilisearch v0.29.0 🎉
Check out the changelog of [Meilisearch v0.29.0](https://github.com/meilisearch/meilisearch/releases/tag/v0.29.0) for more information on the changes.

## 🚀 Enhancements

- Ensure support to the new search query parameter `matchingStrategy` (meilisearch#522) `@brunoocasali` 
- Ensure support to keys with wildcarded actions.
  - `actions` field during key creation now accepts wildcards on actions. For example, `indexes.*` provides rights to `indexes.create`, `indexes.get`,`indexes.delete`, `indexes.delete`, and `indexes.update`. (meilisearch#521) `@brunoocasali` 
  
## ⚠️ Breaking Changes

This breaking change *__may not affect you__*, but in any case, you should check your search queries if you want to keep the same behavior from `v0.28`.

- The `NOT` filter keyword does not have an implicitly `EXIST` operator anymore. Check out for more information: meilisearch/meilisearch#2486

Co-authored-by: Bruno Casali <[email protected]>
Co-authored-by: alallema <[email protected]>
Co-authored-by: Amélie <[email protected]>

v0.21.0

Toggle v0.21.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge meilisearch#539

539: Fix typo in version.py file r=alallema a=alallema



Co-authored-by: alallema <[email protected]>

v0.20.0

Toggle v0.20.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge meilisearch#533

533: Update version for the next release (v0.20.0) r=brunoocasali a=alallema

Update to the next version

**Note:**
This release is a replacement for the v0.19.2 which should be a minor update instead of a patch update.
https://github.com/meilisearch/meilisearch-python/releases/tag/v0.19.2

## 💥 Breaking changes
* API resource output as class to utilize dot notation for attributes (meilisearch#513) `@ElamC`
    * `Document`, `Index` and `Task` are now class and the attributes of these classes are now accessible via dot notation:
    * `document.offset`, `document.limit`, `document.total`
    * `task.uid`, `task.duration`, `task.status` ...
* Add pipenv install in the CONTRIBUTING guide (meilisearch#519) `@brunoocasali`
* Bump mako from 1.2.1 to 1.2.2 due to security issue (meilisearch#528) 

Thanks again to `@ElamC,` `@alallema,` `@brunoocasali!` 🎉


Co-authored-by: alallema <[email protected]>

v0.19.2

Toggle v0.19.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge meilisearch#530

530: Update version for the next release (v0.19.2) r=alallema a=alallema



Co-authored-by: alallema <[email protected]>
Co-authored-by: Amélie <[email protected]>

v0.19.1

Toggle v0.19.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge meilisearch#509

509: Update version for the next release (v0.19.1) r=alallema a=alallema



Co-authored-by: alallema <[email protected]>

v0.19.0

Toggle v0.19.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge meilisearch#493

493: Update version for the next release (v0.19.0) r=alallema a=alallema

This version makes this package compatible with Meilisearch v0.28.0 🎉
Check out the changelog of [Meilisearch v0.28.0](https://github.com/meilisearch/meilisearch/releases/tag/v0.28.0) for more information on the changes.

## 💥 Breaking changes

- `update_key()` can update **only** `name` and `description` fields. meilisearch#477
- `get_tasks()` has additional parameters for filtering:: `type`, `status` and `indexUid`. meilisearch#476
- `client.get_tasks(...)` and `index.get_tasks()` now returns the following fields: `results`, `limit`, `from`, `next`.meilisearch#476
- `index.search` changes in the response `fields`: meilisearch#478
    - `nbHits` replaced with `estimatedTotalHits`
    - `exhaustiveNbHits` is deleted
    - `exhaustiveFacetsCount` is deleted
    - `matches` renamed `showMatchesPosition`
    - `facetsDistribution` response parameter is renamed `facetDistribution`.
- `index.search` changes in the request parameters:  meilisearch#478
    - `matches` renamed `showMatchesPosition`
    - `facetsDistribution` request parameter is renamed `facets`.
- `index.get_documents()` request parameters: meilisearch#481
  - `attributesToRetrieve` replaced with `fields`.
- `client.get_indexes` and `client.get_raw_indexes` now return the following fields: `results`, `limit`, `offset`, `total`. meilisearch#478
- `index.get_documents` and `client.get_documents` now return the following fields: `results`, `limit`, `offset`, `total`. meilisearch#481
- `index.get_documents` query parameter `attributesToRetrieve` is now called `fields` meilisearch#481
- `client.get_dump_status` and `wait_for_dump_creation` have been removed meilisearch#479
- `client.create_dump()` now returns tasks, similar to what add_documents or create_index returns meilisearch#479
- `client.generate_tenant_token(api_key_uid, search_rules, expires_at)` has now a mandatory `api_key_uid` parameter which should contain the uid of a specific API key. meilisearch#484

## 🚀 Enhancements

- `index.get_tasks` and `client.get_tasks` accept pagination metadata, added `limit` (default: 20), `from`. meilisearch#476
- `client.get_indexes` accept pagination metadata, added `limit` (default: 20) and `offset` (default: 0). meilisearch#478
- `client.get_keys` accept pagination metadata, added `limit` (default: 20) and `offset` (default: 0). meilisearch#477
- `client.get_key(key_or_uid)` can now also find keys based on their key uid. meilisearch#477
- `client.create_key(options)` lets you specify a custom uid (optionally) to create a new Key. meilisearch#477
- `index.get_documents` now accepts pagination parameters: `limit` (default: 20) and `offset` (default: 0). meilisearch#481


Co-authored-by: alallema <[email protected]>
Co-authored-by: Amélie <[email protected]>

v0.18.3

Toggle v0.18.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge meilisearch#456

456: Update version for the next release (v0.18.3) r=curquiza a=alallema

This version makes this package compatible with Meilisearch v0.27.0🎉 
Check out the changelog of [Meilisearch v0.27.0](https://github.com/meilisearch/MeiliSearch/releases/tag/v0.27.0) for more information about the changes.

## 🚀 Enhancements

- Add new methods for the new typo tolerance settings meilisearch#443 `@alallema`
`index.get_typo_tolerance()`
`index.update_typo_tolerance(params)`
`index.reset_typo_tolerance()`
- Ensure nested field support meilisearch#444 `@alallema`
- Add new search parameters highlightPreTag, highlightPostTag and cropMarker meilisearch#445 `@alallema`


Co-authored-by: alallema <[email protected]>

v0.18.2

Toggle v0.18.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge meilisearch#434

434: Update version for the next release (v0.18.2) r=alallema a=alallema



Co-authored-by: alallema <[email protected]>

v0.18.1

Toggle v0.18.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge meilisearch#419

419: Update version for the next release (v0.18.1) r=alallema a=alallema



Co-authored-by: alallema <[email protected]>