Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 1, 2025

Bumps the production group with 3 updates: meilisearch, @strapi/sdk-plugin and @strapi/strapi.

Updates meilisearch from 0.45.0 to 0.47.0

Release notes

Sourced from meilisearch's releases.

v0.47.0 🌻

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:

</tr></table> 

... (truncated)

Commits

Updates @strapi/sdk-plugin from 5.2.7 to 5.2.8

Release notes

Sourced from @​strapi/sdk-plugin's releases.

v5.2.8

Patch Changes

Changelog

Sourced from @​strapi/sdk-plugin's changelog.

5.2.8

Patch Changes

Commits

Updates @strapi/strapi from 5.4.2 to 5.6.0

Release notes

Sourced from @​strapi/strapi's releases.

v5.6.0

5.6.0 (2024-12-18)

🚀 New feature

  • add content preview (remove future flag) (81b62a508e)
  • content-manager: add syntax highlighting in the code block type in the Blocks field original solution (#22332)

🔥 Bug fix

  • preview back button behavior (#22432)
  • multiple requests locale (#22273)
  • add component button style (#22425)
  • remove double conversion that causes date shift (#22410)
  • blocks: various ui issues (#22423)

⚙️ Chore

  • fix tests (59cb734ff4)
  • deps: bump nanoid from 3.3.7 to 3.3.8 in /docs (#22389)

💅 Enhancement

  • update purchase page links (#22419)
  • database: add repair manager with component deletion fix (#22267)

🚨 Security

  • deps: bump nanoid to 3.3.8 in yarn.lock (#22397)

❤️ Thank You

v5.5.2

5.5.2 (2024-12-17)

⚠️ Security Fix Notice ⚠️

This version was released to patch a security vulnerability, detailed disclosure has been delayed as per our security policy. We advise all users to update their applications as soon as possible.

🔥 Bug fix

  • remove lookup param from doc service (0c6e0953ae)

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file skip-changelog The PR will not appear in the release changelogs labels Jan 1, 2025
Bumps the production group with 3 updates: [meilisearch](https://github.com/meilisearch/meilisearch-js), [@strapi/sdk-plugin](https://github.com/strapi/sdk-plugin) and [@strapi/strapi](https://github.com/strapi/strapi).


Updates `meilisearch` from 0.45.0 to 0.47.0
- [Release notes](https://github.com/meilisearch/meilisearch-js/releases)
- [Commits](meilisearch/meilisearch-js@v0.45.0...v0.47.0)

Updates `@strapi/sdk-plugin` from 5.2.7 to 5.2.8
- [Release notes](https://github.com/strapi/sdk-plugin/releases)
- [Changelog](https://github.com/strapi/sdk-plugin/blob/main/CHANGELOG.md)
- [Commits](strapi/sdk-plugin@v5.2.7...v5.2.8)

Updates `@strapi/strapi` from 5.4.2 to 5.6.0
- [Release notes](https://github.com/strapi/strapi/releases)
- [Commits](strapi/strapi@v5.4.2...v5.6.0)

---
updated-dependencies:
- dependency-name: meilisearch
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production
- dependency-name: "@strapi/sdk-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: production
- dependency-name: "@strapi/strapi"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/production-7b54300ff4 branch from 8bd0d2b to 82280b7 Compare January 6, 2025 01:00
Copy link
Member

@brunoocasali brunoocasali left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bors merge

@meili-bors
Copy link
Contributor

meili-bors bot commented Jan 6, 2025

@meili-bors meili-bors bot merged commit 1271aaa into main Jan 6, 2025
7 checks passed
@meili-bors meili-bors bot deleted the dependabot/npm_and_yarn/production-7b54300ff4 branch January 6, 2025 13:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file skip-changelog The PR will not appear in the release changelogs

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants