Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update dependency meilisearch to v0.47.0 #162

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 2, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
meilisearch 0.42.0 -> 0.47.0 age adoption passing confidence

Release Notes

meilisearch/meilisearch-js (meilisearch)

v0.47.0: 🌻

Compare Source

This version introduces features released on Meilisearch v1.12.0 🎉

Check out the Meilisearch v1.12.0 changelog for more information.

🚀 Enhancements

Introducing new methods to get one or several batches, respectively getBatch() and getBatches().

// fetch one batch using batch UID
const batch = await client.getBatch(123)

// fetch all batches
const batches = await client.getBatches()

The getTasks() methods now accept a reverse parameter to retrieve tasks in reverse chronological order.

const tasks = await client.getTasks({ reverse: true });

Index settings now allow disabling prefix search and facet search. They're both enabled by default. The SDK now comes with dedicated methods to configure these settings.

// disable prefix search
await client.index('myIndex').updatePrefixSearch('disabled')
// reset prefix search settings
await client.index('myIndex').resetPrefixSearch()

// disable facet search
await client.index('myIndex').updateFacetSearch(false)
// reset facet search settings
await client.index('myIndex').resetFacetSearch()

The _matchesPosition array now contains an indices array the text was matched in an array.

When searching for fantasy in a document that has a searchable genre field with the value genre: ["fantasy", "adventure"], the matches position will be as follow:

{
  genre: [{ start: 0, length: 7, indices: [0] }]
}

Which means:

  • There was a single match in the genre array (array length == 1)
  • The match started as position 0 (the first character, "f")
  • The match has a length of 7 (the entire "fantasy" word)
  • The match was in the first item of the array (indices == [0])

⚙️ Maintenance/misc

Thanks again to @​Barabasbalazs, @​irevoire, @​curquiza, and @​Strift. 🎉

v0.46.0: 🌻

Compare Source

⚠️ Breaking changes

Old:

import { MeiliSearch } from "meilisearch";

const client = new MeiliSearch({ host: "http://127.0.0.1:7700", apiKey: "masterKey" });
const token = await client.generateTenantToken("e489fe16-3381-431b-bee3-00430192915d");

// ...

New:

import { generateTenantToken } from "meilisearch/token";

const token = await generateTenantToken("e489fe16-3381-431b-bee3-00430192915d", [], { apiKey: "masterKey" });

// ...

🐛 Bug Fixes

🔒 Security

Thanks again to @​Barabasbalazs, @​flevi29, @​mdubus! 🎉

v0.45.0: 🌻

Compare Source

This version introduces features released on Meilisearch v1.11.0 🎉
Check out the changelog of Meilisearch v1.11.0 for more information on the changes.

⚠️ Breaking changes (experimental feature only)

🚀 Enhancements

⚙️ Maintenance/misc

Thanks again to @​Barabasbalazs, @​brunoocasali, @​curquiza, @​mdubus! 🎉

v0.44.1: 🌻

Compare Source

🐛 Bug Fixes

Thanks again to @​flevi29 and @​knd775 for the report! 🎉

v0.44.0: 🌻

Compare Source

⚠️ Breaking changes

  • Add package.json "exports" field (#​1611) @​flevi29
    Could be a breaking change for anyone who was importing anything other than what we have in the "exports" package.json field.

⚙️ Maintenance/misc

Thanks again to @​flevi29, @​meili-bors[bot] ! 🎉

v0.43.0: 🌻

Compare Source

⚠️ Breaking changes

🔒 Security

  • build(deps): bump elliptic from 6.5.4 to 6.5.7 in /playgrounds/javascript (#​1699)
  • build(deps): bump serve-static from 1.14.1 to 1.16.2 in /playgrounds/javascript (#​1700)

⚙️ Maintenance/misc

Thanks again to @​brunoocasali, @​curquiza, @​flevi29, @​meili-bors[bot] ! 🎉


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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link
Contributor

github-actions bot commented Oct 2, 2024

Package Changes Through 6ac70ff

No changes.

Add a change file through the GitHub UI by following this link.


Read about change files or the docs at github.com/jbolda/covector

Copy link

socket-security bot commented Oct 2, 2024

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/[email protected] network 0 766 kB meili-bot

🚮 Removed packages: npm/[email protected]

View full report↗︎

@renovate renovate bot changed the title fix(deps): update dependency meilisearch to v0.43.0 fix(deps): update dependency meilisearch to v0.44.0 Oct 3, 2024
@renovate renovate bot force-pushed the renovate/meilisearch-0.x branch 2 times, most recently from 1fe4f16 to 5a76518 Compare October 4, 2024 10:28
@renovate renovate bot changed the title fix(deps): update dependency meilisearch to v0.44.0 fix(deps): update dependency meilisearch to v0.44.1 Oct 4, 2024
@renovate renovate bot changed the title fix(deps): update dependency meilisearch to v0.44.1 fix(deps): update dependency meilisearch to v0.45.0 Oct 28, 2024
@renovate renovate bot force-pushed the renovate/meilisearch-0.x branch from 5a76518 to ee3bb34 Compare October 28, 2024 14:37
@renovate renovate bot changed the title fix(deps): update dependency meilisearch to v0.45.0 fix(deps): update dependency meilisearch to v0.46.0 Dec 2, 2024
@renovate renovate bot force-pushed the renovate/meilisearch-0.x branch from ee3bb34 to bd11b77 Compare December 2, 2024 13:55
@renovate renovate bot changed the title fix(deps): update dependency meilisearch to v0.46.0 fix(deps): update dependency meilisearch to v0.47.0 Dec 23, 2024
@renovate renovate bot force-pushed the renovate/meilisearch-0.x branch from bd11b77 to 6ac70ff Compare December 23, 2024 14:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants