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

chore(frontend/deps-dev): bump the development-dependencies group across 1 directory with 20 updates #40

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 3, 2025

Bumps the development-dependencies group with 18 updates in the /autogpt_platform/frontend directory:

Package From To
@chromatic-com/storybook 3.2.3 3.2.4
@playwright/test 1.49.1 1.50.1
@storybook/addon-a11y 8.4.7 8.5.3
@storybook/addon-essentials 8.4.7 8.5.3
@storybook/addon-interactions 8.4.7 8.5.3
@storybook/addon-links 8.4.7 8.5.3
@storybook/addon-onboarding 8.4.7 8.5.3
@storybook/blocks 8.4.7 8.5.3
@storybook/nextjs 8.4.7 8.5.3
@types/node 22.10.2 22.13.0
chromatic 11.20.2 11.25.2
concurrently 9.1.1 9.1.2
eslint-config-next 15.1.3 15.1.6
eslint-plugin-storybook 0.11.1 0.11.2
postcss 8.4.49 8.5.1
prettier-plugin-tailwindcss 0.6.9 0.6.11
storybook 8.4.7 8.5.3
typescript 5.7.2 5.7.3

Updates @chromatic-com/storybook from 3.2.3 to 3.2.4

Changelog

Sourced from @​chromatic-com/storybook's changelog.

v3.2.4 (Fri Jan 17 2025)

🐛 Bug Fix

Authors: 2


Commits
  • a490548 Bump version to: 3.2.4 [skip ci]
  • d86ecff Update CHANGELOG.md [skip ci]
  • dcee165 Merge pull request #351 from chromaui/valentin/remove-connection-timeout-noti...
  • 127a468 Remove the connection timeout notification
  • a7a43da Merge pull request #350 from chromaui/set-up-codecov
  • 8499c6a Upload coverage reports to Codecov
  • 476a673 Set up vitest coverage reporting
  • 74d3d8d Update vitest to 2.1.8
  • See full diff in compare view

Updates @playwright/test from 1.49.1 to 1.50.1

Release notes

Sourced from @​playwright/test's releases.

v1.50.1

Highlights

microsoft/playwright#34483 - [Feature]: single aria snapshot for different engines/browsers microsoft/playwright#34497 - [Bug]: Firefox not handling keepalive: true fetch requests microsoft/playwright#34504 - [Bug]: update snapshots not creating good diffs microsoft/playwright#34507 - [Bug]: snapshotPathTemplate doesnt work when multiple projects microsoft/playwright#34462 - [Bug]: updateSnapshots "changed" throws an error

Browser Versions

  • Chromium 133.0.6943.16
  • Mozilla Firefox 134.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 132
  • Microsoft Edge 132

v1.50.0

Test runner

  • New option timeout allows specifying a maximum run time for an individual test step. A timed-out step will fail the execution of the test.

    test('some test', async ({ page }) => {
      await test.step('a step', async () => {
        // This step can time out separately from the test
      }, { timeout: 1000 });
    });
  • New method test.step.skip() to disable execution of a test step.

    test('some test', async ({ page }) => {
      await test.step('before running step', async () => {
        // Normal step
      });
    await test.step.skip('not yet ready', async () => {
    // This step is skipped
    });
    await test.step('after running step', async () => {
    // This step still runs even though the previous one was skipped
    });
    });

  • Expanded expect(locator).toMatchAriaSnapshot() to allow storing of aria snapshots in separate YAML files.

... (truncated)

Commits
  • dbc685c chore: mark v1.50.1 (#34575)
  • 13d80f1 cherry-pick(#34560): chore(docs): clarify connection method via BrowserType.c...
  • 159210d cherry-pick(#34556): fix(toMatchAriaSnapshot): fail test run when updating mi...
  • fbad9f7 cherry-pick(#34537): feat: per-assertion snapshot path template in config (#3...
  • 67313fa cherry-pick(#34550): roll follow-ups for .NET and Python
  • 4b7794b cherry-pick(#34544): fix(aria): disregard text area textContent
  • 1efbedd cherry-pick(#34535): Revert "Reapply "fix(har timing): record connect timing ...
  • 1e258e0 cherry-pick(#34420): chore(deps): bump vite from 5.4.6 to 5.4.14 (#34539)
  • 7be4ef5 cherry-pick(#34522): test: fetch request through socks proxy over ipv4
  • 7b3e590 cherry-pick(#34530): fix(firefox): disable fetch keep-alive for now before a ...
  • Additional commits viewable in compare view

Updates @storybook/addon-a11y from 8.4.7 to 8.5.3

Release notes

Sourced from @​storybook/addon-a11y's releases.

v8.5.3

8.5.3

v8.5.2

8.5.2

v8.5.1

8.5.1

v8.5.0

8.5.0

Storybook 8.5 is packed with powerful features to enhance your development workflow. This release makes it easier than ever to build accessible, well-tested UIs. Here’s what’s new:

  • 🦾 Realtime accessibility tests to help build UIs for everybody
  • 🛡️ Project code coverage to measure the completeness of your tests
  • 🎯 Focused tests for faster test feedback
  • ⚛️ React Native Web Vite framework (experimental) for testing mobile UI
  • ⚛️ React 19 support
  • 🎁 Storybook test early access program to level up your testing game
  • 💯 Hundreds more improvements

... (truncated)

Changelog

Sourced from @​storybook/addon-a11y's changelog.

8.5.3

8.5.2

8.5.1

8.5.0

Storybook 8.5 is packed with powerful features to enhance your development workflow. This release makes it easier than ever to build accessible, well-tested UIs. Here’s what’s new:

  • 🦾 Realtime accessibility tests to help build UIs for everybody
  • 🛡️ Project code coverage to measure the completeness of your tests
  • 🎯 Focused tests for faster test feedback
  • ⚛️ React Native Web Vite framework (experimental) for testing mobile UI⚛️
  • 🎁 Storybook test early access program to level up your testing game
  • 💯 Hundreds more improvements

... (truncated)

Commits
  • 81d183f Bump version from "8.5.2" to "8.5.3" [skip ci]
  • 7dac855 Bump version from "8.5.1" to "8.5.2" [skip ci]
  • 600af05 Bump version from "8.5.0" to "8.5.1" [skip ci]
  • 9277067 Bump version from "8.5.0-beta.11" to "8.5.0" [skip ci]
  • d8fe93a Bump version from "8.5.0-beta.10" to "8.5.0-beta.11" [skip ci]
  • 426586d Bump version from "8.5.0-beta.9" to "8.5.0-beta.10" [skip ci]
  • 6b33750 Addon A11y: Change default element selector
  • a6a633a Merge branch 'next-release' into next
  • b607dbe Bump version from "8.5.0-beta.8" to "8.5.0-beta.9" [skip ci]
  • 7e75f73 Merge remote-tracking branch 'origin/next' into valentin/a11y-refactorings
  • Additional commits viewable in compare view

Updates @storybook/addon-essentials from 8.4.7 to 8.5.3

Release notes

Sourced from @​storybook/addon-essentials's releases.

v8.5.3

8.5.3

v8.5.2

8.5.2

v8.5.1

8.5.1

v8.5.0

8.5.0

Storybook 8.5 is packed with powerful features to enhance your development workflow. This release makes it easier than ever to build accessible, well-tested UIs. Here’s what’s new:

  • 🦾 Realtime accessibility tests to help build UIs for everybody
  • 🛡️ Project code coverage to measure the completeness of your tests
  • 🎯 Focused tests for faster test feedback
  • ⚛️ React Native Web Vite framework (experimental) for testing mobile UI
  • ⚛️ React 19 support
  • 🎁 Storybook test early access program to level up your testing game
  • 💯 Hundreds more improvements

... (truncated)

Changelog

Sourced from @​storybook/addon-essentials's changelog.

8.5.3

8.5.2

8.5.1

8.5.0

Storybook 8.5 is packed with powerful features to enhance your development workflow. This release makes it easier than ever to build accessible, well-tested UIs. Here’s what’s new:

  • 🦾 Realtime accessibility tests to help build UIs for everybody
  • 🛡️ Project code coverage to measure the completeness of your tests
  • 🎯 Focused tests for faster test feedback
  • ⚛️ React Native Web Vite framework (experimental) for testing mobile UI⚛️
  • 🎁 Storybook test early access program to level up your testing game
  • 💯 Hundreds more improvements

... (truncated)

Commits
  • 81d183f Bump version from "8.5.2" to "8.5.3" [skip ci]
  • 7dac855 Bump version from "8.5.1" to "8.5.2" [skip ci]
  • 600af05 Bump version from "8.5.0" to "8.5.1" [skip ci]
  • 9277067 Bump version from "8.5.0-beta.11" to "8.5.0" [skip ci]
  • d8fe93a Bump version from "8.5.0-beta.10" to "8.5.0-beta.11" [skip ci]
  • 426586d Bump version from "8.5.0-beta.9" to "8.5.0-beta.10" [skip ci]
  • b607dbe Bump version from "8.5.0-beta.8" to "8.5.0-beta.9" [skip ci]
  • 3b979ee Bump version from "8.5.0-beta.7" to "8.5.0-beta.8" [skip ci]
  • 2b9f1cf Bump version from "8.5.0-beta.6" to "8.5.0-beta.7" [skip ci]
  • 91f53fd Bump version from "8.5.0-beta.5" to "8.5.0-beta.6" [skip ci]
  • Additional commits viewable in compare view

Updates @storybook/addon-interactions from 8.4.7 to 8.5.3

Release notes

Sourced from @​storybook/addon-interactions's releases.

v8.5.3

8.5.3

v8.5.2

8.5.2

v8.5.1

8.5.1

v8.5.0

8.5.0

Storybook 8.5 is packed with powerful features to enhance your development workflow. This release makes it easier than ever to build accessible, well-tested UIs. Here’s what’s new:

  • 🦾 Realtime accessibility tests to help build UIs for everybody
  • 🛡️ Project code coverage to measure the completeness of your tests
  • 🎯 Focused tests for faster test feedback
  • ⚛️ React Native Web Vite framework (experimental) for testing mobile UI
  • ⚛️ React 19 support
  • 🎁 Storybook test early access program to level up your testing game
  • 💯 Hundreds more improvements

... (truncated)

Changelog

Sourced from @​storybook/addon-interactions's changelog.

8.5.3

8.5.2

8.5.1

8.5.0

Storybook 8.5 is packed with powerful features to enhance your development workflow. This release makes it easier than ever to build accessible, well-tested UIs. Here’s what’s new:

  • 🦾 Realtime accessibility tests to help build UIs for everybody
  • 🛡️ Project code coverage to measure the completeness of your tests
  • 🎯 Focused tests for faster test feedback
  • ⚛️ React Native Web Vite framework (experimental) for testing mobile UI⚛️
  • 🎁 Storybook test early access program to level up your testing game
  • 💯 Hundreds more improvements

... (truncated)

Commits
  • 81d183f Bump version from "8.5.2" to "8.5.3" [skip ci]
  • 7dac855 Bump version from "8.5.1" to "8.5.2" [skip ci]
  • 600af05 Bump version from "8.5.0" to "8.5.1" [skip ci]
  • 9277067 Bump version from "8.5.0-beta.11" to "8.5.0" [skip ci]
  • e447db6 Merge branch 'next' into jeppe/fix-interactions-removal
  • 1a0d0ea move addon order check from preset.js to dist/preset.js
  • d8fe93a Bump version from "8.5.0-beta.10" to "8.5.0-beta.11" [skip ci]
  • 426586d Bump version from "8.5.0-beta.9" to "8.5.0-beta.10" [skip ci]
  • b607dbe Bump version from "8.5.0-beta.8" to "8.5.0-beta.9" [skip ci]
  • 3b979ee Bump version from "8.5.0-beta.7" to "8.5.0-beta.8" [skip ci]
  • Additional commits viewable in compare view

Updates @storybook/addon-links from 8.4.7 to 8.5.3

Release notes

Sourced from @​storybook/addon-links's releases.

v8.5.3

8.5.3

v8.5.2

8.5.2

v8.5.1

8.5.1

v8.5.0

8.5.0

Storybook 8.5 is packed with powerful features to enhance your development workflow. This release makes it easier than ever to build accessible, well-tested UIs. Here’s what’s new:

  • 🦾 Realtime accessibility tests to help build UIs for everybody
  • 🛡️ Project code coverage to measure the completeness of your tests
  • 🎯 Focused tests for faster test feedback
  • ⚛️ React Native Web Vite framework (experimental) for testing mobile UI
  • ⚛️ React 19 support
  • 🎁 Storybook test early access program to level up your testing game
  • 💯 Hundreds more improvements

... (truncated)

Changelog

Sourced from @​storybook/addon-links's changelog.

8.5.3

8.5.2

…oss 1 directory with 20 updates

Bumps the development-dependencies group with 18 updates in the /autogpt_platform/frontend directory:

| Package | From | To |
| --- | --- | --- |
| [@chromatic-com/storybook](https://github.com/chromaui/addon-visual-tests) | `3.2.3` | `3.2.4` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.49.1` | `1.50.1` |
| [@storybook/addon-a11y](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/a11y) | `8.4.7` | `8.5.3` |
| [@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials) | `8.4.7` | `8.5.3` |
| [@storybook/addon-interactions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/interactions) | `8.4.7` | `8.5.3` |
| [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links) | `8.4.7` | `8.5.3` |
| [@storybook/addon-onboarding](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/onboarding) | `8.4.7` | `8.5.3` |
| [@storybook/blocks](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks) | `8.4.7` | `8.5.3` |
| [@storybook/nextjs](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/nextjs) | `8.4.7` | `8.5.3` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.2` | `22.13.0` |
| [chromatic](https://github.com/chromaui/chromatic-cli) | `11.20.2` | `11.25.2` |
| [concurrently](https://github.com/open-cli-tools/concurrently) | `9.1.1` | `9.1.2` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `15.1.3` | `15.1.6` |
| [eslint-plugin-storybook](https://github.com/storybookjs/eslint-plugin-storybook) | `0.11.1` | `0.11.2` |
| [postcss](https://github.com/postcss/postcss) | `8.4.49` | `8.5.1` |
| [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | `0.6.9` | `0.6.11` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) | `8.4.7` | `8.5.3` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.2` | `5.7.3` |



Updates `@chromatic-com/storybook` from 3.2.3 to 3.2.4
- [Release notes](https://github.com/chromaui/addon-visual-tests/releases)
- [Changelog](https://github.com/chromaui/addon-visual-tests/blob/v3.2.4/CHANGELOG.md)
- [Commits](chromaui/addon-visual-tests@v3.2.3...v3.2.4)

Updates `@playwright/test` from 1.49.1 to 1.50.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.49.1...v1.50.1)

Updates `@storybook/addon-a11y` from 8.4.7 to 8.5.3
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.5.3/code/addons/a11y)

Updates `@storybook/addon-essentials` from 8.4.7 to 8.5.3
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.5.3/code/addons/essentials)

Updates `@storybook/addon-interactions` from 8.4.7 to 8.5.3
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.5.3/code/addons/interactions)

Updates `@storybook/addon-links` from 8.4.7 to 8.5.3
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.5.3/code/addons/links)

Updates `@storybook/addon-onboarding` from 8.4.7 to 8.5.3
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.5.3/code/addons/onboarding)

Updates `@storybook/blocks` from 8.4.7 to 8.5.3
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.5.3/code/lib/blocks)

Updates `@storybook/nextjs` from 8.4.7 to 8.5.3
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.5.3/code/frameworks/nextjs)

Updates `@storybook/react` from 8.4.7 to 8.5.3
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.5.3/code/renderers/react)

Updates `@storybook/test` from 8.4.7 to 8.5.3
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.5.3/code/lib/test)

Updates `@types/node` from 22.10.2 to 22.13.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `chromatic` from 11.20.2 to 11.25.2
- [Release notes](https://github.com/chromaui/chromatic-cli/releases)
- [Changelog](https://github.com/chromaui/chromatic-cli/blob/main/CHANGELOG.md)
- [Commits](chromaui/chromatic-cli@v11.20.2...v11.25.2)

Updates `concurrently` from 9.1.1 to 9.1.2
- [Release notes](https://github.com/open-cli-tools/concurrently/releases)
- [Commits](open-cli-tools/concurrently@v9.1.1...v9.1.2)

Updates `eslint-config-next` from 15.1.3 to 15.1.6
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v15.1.6/packages/eslint-config-next)

Updates `eslint-plugin-storybook` from 0.11.1 to 0.11.2
- [Release notes](https://github.com/storybookjs/eslint-plugin-storybook/releases)
- [Changelog](https://github.com/storybookjs/eslint-plugin-storybook/blob/main/CHANGELOG.md)
- [Commits](storybookjs/eslint-plugin-storybook@v0.11.1...v0.11.2)

Updates `postcss` from 8.4.49 to 8.5.1
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.4.49...8.5.1)

Updates `prettier-plugin-tailwindcss` from 0.6.9 to 0.6.11
- [Release notes](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/prettier-plugin-tailwindcss@v0.6.9...v0.6.11)

Updates `storybook` from 8.4.7 to 8.5.3
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.5.3/code/lib/cli)

Updates `typescript` from 5.7.2 to 5.7.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.7.2...v5.7.3)

---
updated-dependencies:
- dependency-name: "@chromatic-com/storybook"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@storybook/addon-a11y"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@storybook/addon-essentials"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@storybook/addon-interactions"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@storybook/addon-links"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@storybook/addon-onboarding"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@storybook/blocks"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@storybook/nextjs"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@storybook/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@storybook/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: chromatic
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: concurrently
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: eslint-config-next
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: eslint-plugin-storybook
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: prettier-plugin-tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: storybook
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
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 javascript Pull requests that update Javascript code platform/backend platform/frontend size/l
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants