xlanex6 / nuxt-meilisearch

🔎 Meilisearch module for Nuxt 3
https://nuxt-meilisearch.vercel.app
MIT License
117 stars 16 forks source link

fix(deps): update dependency @meilisearch/instant-meilisearch to v0.17.0 #86

Closed renovate-bot closed 7 months ago

renovate-bot commented 8 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@meilisearch/instant-meilisearch (source) 0.13.6 -> 0.17.0 age adoption passing confidence

Release Notes

meilisearch/meilisearch-js-plugins (@​meilisearch/instant-meilisearch) ### [`v0.17.0`](https://togithub.com/meilisearch/meilisearch-js-plugins/releases/tag/%40meilisearch/instant-meilisearch%400.17.0) [Compare Source](https://togithub.com/meilisearch/meilisearch-js-plugins/compare/@meilisearch/instant-meilisearch@0.16.0...@meilisearch/instant-meilisearch@0.17.0) ##### Minor Changes - [`234d699`](https://togithub.com/meilisearch/meilisearch-js-plugins/commit/234d699): - exposed created `MeiliSearch` instance - re-exported all of `"meilisearch"` package These improvements make it so that no separate `"meilisearch"` package has to be installed in order to use its exports directly. This way a single `MeiliSearch` instance can be re-used, and we can potentially save on bundle size by avoiding a separate different version installation of `"meilisearch"`. ```typescript import { instantMeiliSearch, meilisearch, } from "@​meilisearch/instant-meilisearch"; // re-exported "meilisearch" ^ const { meiliSearchInstance, // ^ re-usable MeiliSearch instance searchClient, } = instantMeiliSearch(/*...*/); ``` - [`767a334`](https://togithub.com/meilisearch/meilisearch-js-plugins/commit/767a334): Update meilisearch-js version ### [`v0.16.0`](https://togithub.com/meilisearch/meilisearch-js-plugins/releases/tag/%40meilisearch/instant-meilisearch%400.16.0) [Compare Source](https://togithub.com/meilisearch/meilisearch-js-plugins/compare/@meilisearch/instant-meilisearch@0.15.0...@meilisearch/instant-meilisearch@0.16.0) ##### Minor Changes - [`b1343c1`](https://togithub.com/meilisearch/meilisearch-js-plugins/commit/b1343c1): Enable experimental hybrid search ### [`v0.15.0`](https://togithub.com/meilisearch/meilisearch-js-plugins/releases/tag/%40meilisearch/instant-meilisearch%400.15.0) [Compare Source](https://togithub.com/meilisearch/meilisearch-js-plugins/compare/@meilisearch/instant-meilisearch@0.14.0...@meilisearch/instant-meilisearch@0.15.0) ##### Minor Changes - [`72726ac`](https://togithub.com/meilisearch/meilisearch-js-plugins/commit/72726ac): Update meilisearch-js version - [`36b5a62`](https://togithub.com/meilisearch/meilisearch-js-plugins/commit/36b5a62): Fixed RegExp in filter-adapter.ts and sort-context.ts to work in Safari ### [`v0.14.0`](https://togithub.com/meilisearch/meilisearch-js-plugins/releases/tag/%40meilisearch/instant-meilisearch%400.14.0) [Compare Source](https://togithub.com/meilisearch/meilisearch-js-plugins/compare/@meilisearch/instant-meilisearch@0.13.6...@meilisearch/instant-meilisearch@0.14.0) ##### Minor Changes - [`5b6be19`](https://togithub.com/meilisearch/meilisearch-js-plugins/commit/5b6be19) & [`ed8b6a3`](https://togithub.com/meilisearch/meilisearch-js-plugins/commit/ed8b6a3): Added ability to override a selection of Meilisearch search parameters. ⚠️ The returned value of the core `instantMeiliSearch` function has changed! This change was necessary for the aforementioned ability to be implemented and applied in a clean manner. The necessary migration should be of minimal impact. ##### Migration Change the following ```js // 1. const client = instantMeiliSearch(/*...*/); // 2. const searchClient = instantMeiliSearch(/*...*/); // 3. instantsearch({ indexName: "movies", searchClient: instantMeiliSearch(/*...*/), }); ``` to the following ```js // 1. const { searchClient: client } = instantMeiliSearch(/*...*/); // 2. const { searchClient } = instantMeiliSearch(/*...*/); // 3. instantsearch({ indexName: "movies", searchClient: instantMeiliSearch(/*...*/).searchClient, }); ``` ##### Patch Changes - [`06377ef`](https://togithub.com/meilisearch/meilisearch-js-plugins/commit/06377ef): Fixes issue where backslashes ("\\") and quotes (`"`) are not escaped in filters.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Mend Renovate. View repository job log here.

vercel[bot] commented 8 months ago

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
nuxt-meilisearch ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 11, 2024 3:23pm
netlify[bot] commented 8 months ago

Deploy Preview for nuxt-meilisearch-docs canceled.

Name Link
Latest commit e0851335593337000953297c2ad9472ecbeeda9d
Latest deploy log https://app.netlify.com/sites/nuxt-meilisearch-docs/deploys/65ef21bc21e97b0008783db6
forking-renovate[bot] commented 7 months ago

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update (0.17.0). You will get a PR once a newer version is released. To ignore this dependency forever, add it to the ignoreDeps array of your Renovate config.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.