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

build(deps): bump the playground group in /playground with 27 updates #994

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

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the playground group in /playground with 27 updates:

Package From To
@strapi/plugin-users-permissions 5.4.2 5.6.0
@strapi/strapi 5.4.2 5.6.0
meilisearch 0.45.0 0.47.0
@strapi/admin 5.4.2 5.6.0
@strapi/cloud-cli 5.4.2 5.6.0
@strapi/content-manager 5.4.2 5.6.0
@strapi/content-releases 5.4.2 5.6.0
@strapi/content-type-builder 5.4.2 5.6.0
@strapi/core 5.4.2 5.6.0
@strapi/data-transfer 5.4.2 5.6.0
@strapi/database 5.4.2 5.6.0
@strapi/design-system 2.0.0-rc.13 2.0.0-rc.14
@strapi/email 5.4.2 5.6.0
@strapi/generators 5.4.2 5.6.0
@strapi/i18n 5.4.2 5.6.0
@strapi/icons 2.0.0-rc.13 2.0.0-rc.14
@strapi/logger 5.4.2 5.6.0
@strapi/pack-up 5.0.0 5.0.2
@strapi/permissions 5.4.2 5.6.0
@strapi/provider-email-sendmail 5.4.2 5.6.0
@strapi/provider-upload-local 5.4.2 5.6.0
@strapi/review-workflows 5.4.2 5.6.0
@strapi/types 5.4.2 5.6.0
@strapi/typescript-utils 5.4.2 5.6.0
@strapi/ui-primitives 2.0.0-rc.13 2.0.0-rc.14
@strapi/upload 5.4.2 5.6.0
@strapi/utils 5.4.2 5.6.0

Updates @strapi/plugin-users-permissions from 5.4.2 to 5.6.0

Release notes

Sourced from @​strapi/plugin-users-permissions'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

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

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/admin from 5.4.2 to 5.6.0

Release notes

Sourced from @​strapi/admin'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

Updates @strapi/cloud-cli from 5.4.2 to 5.6.0

Release notes

Sourced from @​strapi/cloud-cli'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

Updates @strapi/content-manager from 5.4.2 to 5.6.0

Release notes

Sourced from @​strapi/content-manager'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

Updates @strapi/content-releases from 5.4.2 to 5.6.0

Release notes

Sourced from @​strapi/content-releases'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

Updates @strapi/content-type-builder from 5.4.2 to 5.6.0

Release notes

Sourced from @​strapi/content-type-builder'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

Updates @strapi/core from 5.4.2 to 5.6.0

Release notes

Sourced from @​strapi/core'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

Updates @strapi/data-transfer from 5.4.2 to 5.6.0

Updates @strapi/database from 5.4.2 to 5.6.0

Release notes

Sourced from @​strapi/database'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

Updates @strapi/design-system from 2.0.0-rc.13 to 2.0.0-rc.14

Updates @strapi/email from 5.4.2 to 5.6.0

Release notes

Sourced from @​strapi/email'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

Updates @strapi/generators from 5.4.2 to 5.6.0

Release notes

Sourced from @​strapi/generators'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

Updates @strapi/i18n from 5.4.2 to 5.6.0

Release notes

Sourced from @​strapi/i18n'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

Bumps the playground group in /playground with 27 updates:

| Package | From | To |
| --- | --- | --- |
| [@strapi/plugin-users-permissions](https://github.com/strapi/strapi) | `5.4.2` | `5.6.0` |
| [@strapi/strapi](https://github.com/strapi/strapi) | `5.4.2` | `5.6.0` |
| [meilisearch](https://github.com/meilisearch/meilisearch-js) | `0.45.0` | `0.47.0` |
| [@strapi/admin](https://github.com/strapi/strapi) | `5.4.2` | `5.6.0` |
| [@strapi/cloud-cli](https://github.com/strapi/strapi) | `5.4.2` | `5.6.0` |
| [@strapi/content-manager](https://github.com/strapi/strapi) | `5.4.2` | `5.6.0` |
| [@strapi/content-releases](https://github.com/strapi/strapi) | `5.4.2` | `5.6.0` |
| [@strapi/content-type-builder](https://github.com/strapi/strapi) | `5.4.2` | `5.6.0` |
| [@strapi/core](https://github.com/strapi/strapi) | `5.4.2` | `5.6.0` |
| @strapi/data-transfer | `5.4.2` | `5.6.0` |
| [@strapi/database](https://github.com/strapi/strapi) | `5.4.2` | `5.6.0` |
| @strapi/design-system | `2.0.0-rc.13` | `2.0.0-rc.14` |
| [@strapi/email](https://github.com/strapi/strapi) | `5.4.2` | `5.6.0` |
| [@strapi/generators](https://github.com/strapi/strapi) | `5.4.2` | `5.6.0` |
| [@strapi/i18n](https://github.com/strapi/strapi/tree/HEAD/packages/plugins/i18n) | `5.4.2` | `5.6.0` |
| @strapi/icons | `2.0.0-rc.13` | `2.0.0-rc.14` |
| [@strapi/logger](https://github.com/strapi/strapi) | `5.4.2` | `5.6.0` |
| [@strapi/pack-up](https://github.com/strapi/pack-up) | `5.0.0` | `5.0.2` |
| [@strapi/permissions](https://github.com/strapi/strapi) | `5.4.2` | `5.6.0` |
| [@strapi/provider-email-sendmail](https://github.com/strapi/strapi) | `5.4.2` | `5.6.0` |
| [@strapi/provider-upload-local](https://github.com/strapi/strapi) | `5.4.2` | `5.6.0` |
| [@strapi/review-workflows](https://github.com/strapi/strapi) | `5.4.2` | `5.6.0` |
| [@strapi/types](https://github.com/strapi/strapi) | `5.4.2` | `5.6.0` |
| [@strapi/typescript-utils](https://github.com/strapi/strapi/tree/HEAD/packages/utils/typescript) | `5.4.2` | `5.6.0` |
| @strapi/ui-primitives | `2.0.0-rc.13` | `2.0.0-rc.14` |
| [@strapi/upload](https://github.com/strapi/strapi) | `5.4.2` | `5.6.0` |
| [@strapi/utils](https://github.com/strapi/strapi) | `5.4.2` | `5.6.0` |


Updates `@strapi/plugin-users-permissions` 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)

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)

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/admin` 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)

Updates `@strapi/cloud-cli` 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)

Updates `@strapi/content-manager` 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)

Updates `@strapi/content-releases` 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)

Updates `@strapi/content-type-builder` 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)

Updates `@strapi/core` 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)

Updates `@strapi/data-transfer` from 5.4.2 to 5.6.0

Updates `@strapi/database` 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)

Updates `@strapi/design-system` from 2.0.0-rc.13 to 2.0.0-rc.14

Updates `@strapi/email` 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)

Updates `@strapi/generators` 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)

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

Updates `@strapi/icons` from 2.0.0-rc.13 to 2.0.0-rc.14

Updates `@strapi/logger` 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)

Updates `@strapi/pack-up` from 5.0.0 to 5.0.2
- [Release notes](https://github.com/strapi/pack-up/releases)
- [Commits](https://github.com/strapi/pack-up/compare/@strapi/[email protected]...@strapi/[email protected])

Updates `@strapi/permissions` 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)

Updates `@strapi/provider-email-sendmail` 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)

Updates `@strapi/provider-upload-local` 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)

Updates `@strapi/review-workflows` 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)

Updates `@strapi/types` 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)

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

Updates `@strapi/ui-primitives` from 2.0.0-rc.13 to 2.0.0-rc.14

Updates `@strapi/upload` 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)

Updates `@strapi/utils` 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: "@strapi/plugin-users-permissions"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: playground
- dependency-name: "@strapi/strapi"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: playground
- dependency-name: meilisearch
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: playground
- dependency-name: "@strapi/admin"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: playground
- dependency-name: "@strapi/cloud-cli"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: playground
- dependency-name: "@strapi/content-manager"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: playground
- dependency-name: "@strapi/content-releases"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: playground
- dependency-name: "@strapi/content-type-builder"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: playground
- dependency-name: "@strapi/core"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: playground
- dependency-name: "@strapi/data-transfer"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: playground
- dependency-name: "@strapi/database"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: playground
- dependency-name: "@strapi/design-system"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: playground
- dependency-name: "@strapi/email"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: playground
- dependency-name: "@strapi/generators"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: playground
- dependency-name: "@strapi/i18n"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: playground
- dependency-name: "@strapi/icons"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: playground
- dependency-name: "@strapi/logger"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: playground
- dependency-name: "@strapi/pack-up"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: playground
- dependency-name: "@strapi/permissions"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: playground
- dependency-name: "@strapi/provider-email-sendmail"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: playground
- dependency-name: "@strapi/provider-upload-local"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: playground
- dependency-name: "@strapi/review-workflows"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: playground
- dependency-name: "@strapi/types"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: playground
- dependency-name: "@strapi/typescript-utils"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: playground
- dependency-name: "@strapi/ui-primitives"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: playground
- dependency-name: "@strapi/upload"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: playground
- dependency-name: "@strapi/utils"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: playground
...

Signed-off-by: dependabot[bot] <[email protected]>
@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
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.

0 participants