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 23 updates #9594

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 Mar 6, 2025

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

Package From To
@chromatic-com/storybook 3.2.4 3.2.5
@playwright/test 1.50.1 1.51.0
@storybook/addon-a11y 8.5.3 8.6.4
@storybook/addon-essentials 8.5.3 8.6.4
@storybook/addon-interactions 8.5.3 8.6.4
@storybook/addon-links 8.5.3 8.6.4
@storybook/addon-onboarding 8.5.3 8.6.4
@storybook/blocks 8.5.3 8.6.4
@storybook/nextjs 8.5.3 8.6.4
@storybook/test-runner 0.21.3 0.22.0
@types/lodash 4.17.15 4.17.16
@types/node 22.13.1 22.13.9
axe-playwright 2.0.3 2.1.0
chromatic 11.25.2 11.27.0
eslint-config-next 15.1.6 15.2.1
eslint-plugin-storybook 0.11.2 0.11.4
msw 2.7.0 2.7.3
postcss 8.5.1 8.5.3
prettier 3.4.2 3.5.3
storybook 8.5.3 8.6.4
typescript 5.7.3 5.8.2

Updates @chromatic-com/storybook from 3.2.4 to 3.2.5

Release notes

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

v3.2.5

🐛 Bug Fix

Authors: 3

v3.2.5-next.0

🐛 Bug Fix

Authors: 2

Commits

Updates @playwright/test from 1.50.1 to 1.51.0

Release notes

Sourced from @​playwright/test's releases.

v1.51.0

StorageState for indexedDB

  • New option indexedDB for browserContext.storageState() allows to save and restore IndexedDB contents. Useful when your application uses IndexedDB API to store authentication tokens, like Firebase Authentication.

    Here is an example following the authentication guide:

    // tests/auth.setup.ts
    import { test as setup, expect } from '@playwright/test';
    import path from 'path';
    const authFile = path.join(__dirname, '../playwright/.auth/user.json');
    setup('authenticate', async ({ page }) => {
    await page.goto('/');
    // ... perform authentication steps ...
    // make sure to save indexedDB
    await page.context().storageState({ path: authFile, indexedDB: true });
    });

Copy prompt

New "Copy prompt" button on errors in the HTML report, trace viewer and UI mode. Click to copy a pre-filled LLM prompt that contains the error message and useful context for fixing the error.

Copy prompt

Filter visible elements

New option visible for locator.filter() allows matching only visible elements.

// example.spec.ts
test('some test', async ({ page }) => {
  // Ignore invisible todo items.
  const todoItems = page.getByTestId('todo-item').filter({ visible: true });
  // Check there are exactly 3 visible ones.
  await expect(todoItems).toHaveCount(3);
});

Git information in HTML report

Set option testConfig.captureGitInfo to capture git information into testConfig.metadata.

// playwright.config.ts
import { defineConfig } from '@playwright/test';
</tr></table>

... (truncated)

Commits

Updates @storybook/addon-a11y from 8.5.3 to 8.6.4

Release notes

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

v8.6.4

8.6.4

v8.6.3

8.6.3

v8.6.2

8.6.2

v8.6.1

8.6.1

v8.6.0

8.6.0

The 8.6 release focuses on Storybook Test, which brings realtime component, accessibility, and visual UI tests to your favorite component workshop.

Here’s what’s new:

  • 🎁 Storybook Test installer for out-of-the-box tests in new projects
  • 🦾 Accessibility “todo” workflow to systematically fix a11y violations
  • 🗜️ 80% smaller create-storybook package for much faster installs
  • 🧪 Dozens of Test fixes based on user feedback
  • 📕 Docs fixes for table of contents, code snippets, and more
  • 🚨 Key security fixes for Vite and ESbuild
  • 💯 Hundreds more improvements

... (truncated)

Changelog

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

8.6.4

8.6.3

8.6.2

8.6.1

8.6.0

The 8.6 release focuses on Storybook Test, which brings realtime component, accessibility, and visual UI tests to your favorite component workshop.

Here’s what’s new:

  • 🎁 Storybook Test installer for out-of-the-box tests in new projects
  • 🦾 Accessibility “todo” workflow to systematically fix a11y violations
  • 🗜️ 80% smaller create-storybook package for much faster installs
  • 🧪 Dozens of Test fixes based on user feedback
  • 📕 Docs fixes for table of contents, code snippets, and more
  • 🚨 Key security fixes for Vite and ESbuild
  • 💯 Hundreds more improvements

... (truncated)

Commits
  • d826042 Bump version from "8.6.3" to "8.6.4" [skip ci]
  • d4e73f5 Bump version from "8.6.2" to "8.6.3" [skip ci]
  • 054974b Bump version from "8.6.1" to "8.6.2" [skip ci]
  • 15ef409 Bump version from "8.6.0" to "8.6.1" [skip ci]
  • a13c741 Bump version from "8.6.0-beta.10" to "8.6.0" [skip ci]
  • 29db3b4 Bump version from "8.6.0-beta.9" to "8.6.0-beta.10" [skip ci]
  • dd5a9fc Bump version from "8.6.0-beta.8" to "8.6.0-beta.9" [skip ci]
  • 8c805b1 Bump version from "8.6.0-beta.7" to "8.6.0-beta.8" [skip ci]
  • acf4f6b Bump version from "8.6.0-beta.6" to "8.6.0-beta.7" [skip ci]
  • 7a0479b Bump version from "8.6.0-beta.5" to "8.6.0-beta.6" [skip ci]
  • Additional commits viewable in compare view

Updates @storybook/addon-essentials from 8.5.3 to 8.6.4

Release notes

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

v8.6.4

8.6.4

v8.6.3

8.6.3

v8.6.2

8.6.2

v8.6.1

8.6.1

v8.6.0

8.6.0

The 8.6 release focuses on Storybook Test, which brings realtime component, accessibility, and visual UI tests to your favorite component workshop.

Here’s what’s new:

  • 🎁 Storybook Test installer for out-of-the-box tests in new projects
  • 🦾 Accessibility “todo” workflow to systematically fix a11y violations
  • 🗜️ 80% smaller create-storybook package for much faster installs
  • 🧪 Dozens of Test fixes based on user feedback
  • 📕 Docs fixes for table of contents, code snippets, and more
  • 🚨 Key security fixes for Vite and ESbuild
  • 💯 Hundreds more improvements

... (truncated)

Changelog

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

8.6.4

8.6.3

8.6.2

8.6.1

8.6.0

The 8.6 release focuses on Storybook Test, which brings realtime component, accessibility, and visual UI tests to your favorite component workshop.

Here’s what’s new:

  • 🎁 Storybook Test installer for out-of-the-box tests in new projects
  • 🦾 Accessibility “todo” workflow to systematically fix a11y violations
  • 🗜️ 80% smaller create-storybook package for much faster installs
  • 🧪 Dozens of Test fixes based on user feedback
  • 📕 Docs fixes for table of contents, code snippets, and more
  • 🚨 Key security fixes for Vite and ESbuild
  • 💯 Hundreds more improvements

... (truncated)

Commits
  • d826042 Bump version from "8.6.3" to "8.6.4" [skip ci]
  • d4e73f5 Bump version from "8.6.2" to "8.6.3" [skip ci]
  • 054974b Bump version from "8.6.1" to "8.6.2" [skip ci]
  • 15ef409 Bump version from "8.6.0" to "8.6.1" [skip ci]
  • a13c741 Bump version from "8.6.0-beta.10" to "8.6.0" [skip ci]
  • 29db3b4 Bump version from "8.6.0-beta.9" to "8.6.0-beta.10" [skip ci]
  • dd5a9fc Bump version from "8.6.0-beta.8" to "8.6.0-beta.9" [skip ci]
  • 2b41092 fix addon essentials preview preset
  • 8c805b1 Bump version from "8.6.0-beta.7" to "8.6.0-beta.8" [skip ci]
  • acf4f6b Bump version from "8.6.0-beta.6" to "8.6.0-beta.7" [skip ci]
  • Additional commits viewable in compare view

Updates @storybook/addon-interactions from 8.5.3 to 8.6.4

Release notes

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

v8.6.4

8.6.4

v8.6.3

8.6.3

v8.6.2

8.6.2

v8.6.1

8.6.1

v8.6.0

8.6.0

The 8.6 release focuses on Storybook Test, which brings realtime component, accessibility, and visual UI tests to your favorite component workshop.

Here’s what’s new:

  • 🎁 Storybook Test installer for out-of-the-box tests in new projects
  • 🦾 Accessibility “todo” workflow to systematically fix a11y violations
  • 🗜️ 80% smaller create-storybook package for much faster installs
  • 🧪 Dozens of Test fixes based on user feedback
  • 📕 Docs fixes for table of contents, code snippets, and more
  • 🚨 Key security fixes for Vite and ESbuild
  • 💯 Hundreds more improvements

... (truncated)

Changelog

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

8.6.4

8.6.3

8.6.2

8.6.1

8.6.0

The 8.6 release focuses on Storybook Test, which brings realtime component, accessibility, and visual UI tests to your favorite component workshop.

Here’s what’s new:

  • 🎁 Storybook Test installer for out-of-the-box tests in new projects
  • 🦾 Accessibility “todo” workflow to systematically fix a11y violations
  • 🗜️ 80% smaller create-storybook package for much faster installs
  • 🧪 Dozens of Test fixes based on user feedback
  • 📕 Docs fixes for table of contents, code snippets, and more
  • 🚨 Key security fixes for Vite and ESbuild
  • 💯 Hundreds more improvements

... (truncated)

Commits
  • d826042 Bump version from "8.6.3" to "8.6.4" [skip ci]
  • d4e73f5 Bump version from "8.6.2" to "8.6.3" [skip ci]
  • 054974b Bump version from "8.6.1" to "8.6.2" [skip ci]
  • 15ef409 Bump version from "8.6.0" to "8.6.1" [skip ci]
  • a13c741 Bump version from "8.6.0-beta.10" to "8.6.0" [skip ci]
  • 29db3b4 Bump version from "8.6.0-beta.9" to "8.6.0-beta.10" [skip ci]
  • dd5a9fc Bump version from "8.6.0-beta.8" to "8.6.0-beta.9" [skip ci]
  • 8c805b1 Bump version from "8.6.0-beta.7" to "8.6.0-beta.8" [skip ci]
  • acf4f6b Bump version from "8.6.0-beta.6" to "8.6.0-beta.7" [skip ci]
  • 7a0479b Bump version from "8.6.0-beta.5" to "8.6.0-beta.6" [skip ci]
  • Additional commits viewable in compare view

Updates @storybook/addon-links from 8.5.3 to 8.6.4

Release notes

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

v8.6.4

8.6.4

v8.6.3

8.6.3

v8.6.2

8.6.2

v8.6.1

8.6.1

v8.6.0

8.6.0

The 8.6 release focuses on Storybook Test, which brings realtime component, accessibility, and visual UI tests to your favorite component workshop.

Here’s what’s new:

  • 🎁 Storybook Test installer for out-of-the-box tests in new projects
  • 🦾 Accessibility “todo” workflow to systematically fix a11y violations
  • 🗜️ 80% smaller create-storybook package for much faster installs
  • 🧪 Dozens of Test fixes based on user feedback
  • 📕 Docs fixes for table of contents, code snippets, and more
  • 🚨 Key security fixes for Vite and ESbuild
  • 💯 Hundreds more improvements

... (truncated)

Changelog

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

8.6.4

8.6.3

8.6.2

8.6.1

8.6.0

The 8.6 release focuses on Storybook Test, which brings realtime component, accessibility, and visual UI tests to your favorite component workshop.

Here’s what’s new:

  • 🎁 Storybook Test installer for out-of-the-box tests in new projects
  • 🦾 Accessibility “todo” workflow to systematically fix a11y violations
  • 🗜️ 80% smaller create-storybook package for much faster installs
  • 🧪 Dozens of Test fixes based on user feedback
  • 📕 Docs fixes for table of contents, code snippets, and more
  • 🚨 Key security fixes for Vite and ESbuild
  • 💯 Hundreds more improvements

... (truncated)

Commits
  • d826042 Bump version from "8.6.3" to "8.6.4" [skip ci]
  • d4e73f5 Bump version from "8.6.2" to "8.6.3" [skip ci]
  • 054974b Bump version from "8.6.1" to "8.6.2" [skip ci]
  • 15ef409 Bump version from "8.6.0" to "8.6.1" [skip ci]
  • a13c741 Bump version from "8.6.0-beta.10" to "8.6.0" [skip ci]
  • 29db3b4 Bump version from "8.6.0-beta.9" to "8.6.0-beta.10" [skip ci]
  • dd5a9fc Bump version from "8.6.0-beta.8" to "8.6.0-beta.9" [skip ci]
  • 8c805b1 Bump version from "8.6.0-beta.7" to "8.6.0-beta.8" [skip ci]
  • acf4f6b Bump version from "8.6.0-beta.6" to "8.6.0-beta.7" [skip ci]
  • 7a0479b Bump version from "8.6.0-beta.5" to "8.6.0-beta.6" [skip ci]
  • Additional commits viewable in compare view

Updates @storybook/addon-onboarding from 8.5.3 to 8.6.4

Release notes

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

v8.6.4

8.6.4

@dependabot dependabot bot requested a review from a team as a code owner March 6, 2025 22:32
@dependabot dependabot bot added the javascript Pull requests that update Javascript code label Mar 6, 2025
@dependabot dependabot bot requested review from ntindle and aarushik93 and removed request for a team March 6, 2025 22:32
@github-actions github-actions bot added platform/frontend AutoGPT Platform - Front end platform/backend AutoGPT Platform - Back end size/xl labels Mar 6, 2025
Copy link

netlify bot commented Mar 6, 2025

Deploy Preview for auto-gpt-docs-dev canceled.

Name Link
🔨 Latest commit 40a8082
🔍 Latest deploy log https://app.netlify.com/sites/auto-gpt-docs-dev/deploys/67d1a19ea52e56000886a858

Copy link

deepsource-io bot commented Mar 6, 2025

Here's the code health analysis summary for commits 02618e1..40a8082. View details on DeepSource ↗.

Analysis Summary

AnalyzerStatusSummaryLink
DeepSource JavaScript LogoJavaScript✅ SuccessView Check ↗
DeepSource Python LogoPython✅ SuccessView Check ↗

💡 If you’re a repository administrator, you can configure the quality gates from the settings.

Copy link

netlify bot commented Mar 6, 2025

Deploy Preview for auto-gpt-docs canceled.

Name Link
🔨 Latest commit 40a8082
🔍 Latest deploy log https://app.netlify.com/sites/auto-gpt-docs/deploys/67d1a19e511200000844930b

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/autogpt_platform/frontend/dev/development-dependencies-56980559b6 branch from 7fe8f8e to 6417a0e Compare March 10, 2025 18:05
…oss 1 directory with 23 updates

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

| Package | From | To |
| --- | --- | --- |
| [@chromatic-com/storybook](https://github.com/chromaui/addon-visual-tests) | `3.2.4` | `3.2.5` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.50.1` | `1.51.0` |
| [@storybook/addon-a11y](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/a11y) | `8.5.3` | `8.6.4` |
| [@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials) | `8.5.3` | `8.6.4` |
| [@storybook/addon-interactions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/interactions) | `8.5.3` | `8.6.4` |
| [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links) | `8.5.3` | `8.6.4` |
| [@storybook/addon-onboarding](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/onboarding) | `8.5.3` | `8.6.4` |
| [@storybook/blocks](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks) | `8.5.3` | `8.6.4` |
| [@storybook/nextjs](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/nextjs) | `8.5.3` | `8.6.4` |
| [@storybook/test-runner](https://github.com/storybookjs/test-runner) | `0.21.3` | `0.22.0` |
| [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) | `4.17.15` | `4.17.16` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.13.1` | `22.13.9` |
| [axe-playwright](https://github.com/abhinaba-ghosh/axe-playwright) | `2.0.3` | `2.1.0` |
| [chromatic](https://github.com/chromaui/chromatic-cli) | `11.25.2` | `11.27.0` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `15.1.6` | `15.2.1` |
| [eslint-plugin-storybook](https://github.com/storybookjs/eslint-plugin-storybook) | `0.11.2` | `0.11.4` |
| [msw](https://github.com/mswjs/msw) | `2.7.0` | `2.7.3` |
| [postcss](https://github.com/postcss/postcss) | `8.5.1` | `8.5.3` |
| [prettier](https://github.com/prettier/prettier) | `3.4.2` | `3.5.3` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) | `8.5.3` | `8.6.4` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.3` | `5.8.2` |



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

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

Updates `@storybook/addon-a11y` from 8.5.3 to 8.6.4
- [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.6.4/code/addons/a11y)

Updates `@storybook/addon-essentials` from 8.5.3 to 8.6.4
- [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.6.4/code/addons/essentials)

Updates `@storybook/addon-interactions` from 8.5.3 to 8.6.4
- [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.6.4/code/addons/interactions)

Updates `@storybook/addon-links` from 8.5.3 to 8.6.4
- [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.6.4/code/addons/links)

Updates `@storybook/addon-onboarding` from 8.5.3 to 8.6.4
- [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.6.4/code/addons/onboarding)

Updates `@storybook/blocks` from 8.5.3 to 8.6.4
- [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.6.4/code/lib/blocks)

Updates `@storybook/nextjs` from 8.5.3 to 8.6.4
- [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.6.4/code/frameworks/nextjs)

Updates `@storybook/react` from 8.5.3 to 8.6.4
- [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.6.4/code/renderers/react)

Updates `@storybook/test` from 8.5.3 to 8.6.4
- [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.6.4/code/lib/test)

Updates `@storybook/test-runner` from 0.21.3 to 0.22.0
- [Release notes](https://github.com/storybookjs/test-runner/releases)
- [Changelog](https://github.com/storybookjs/test-runner/blob/v0.22.0/CHANGELOG.md)
- [Commits](storybookjs/test-runner@v0.21.3...v0.22.0)

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

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

Updates `axe-playwright` from 2.0.3 to 2.1.0
- [Commits](abhinaba-ghosh/axe-playwright@v2.0.3...v2.1.0)

Updates `chromatic` from 11.25.2 to 11.27.0
- [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.25.2...v11.27.0)

Updates `eslint-config-next` from 15.1.6 to 15.2.1
- [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.2.1/packages/eslint-config-next)

Updates `eslint-plugin-storybook` from 0.11.2 to 0.11.4
- [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.2...v0.11.4)

Updates `msw` from 2.7.0 to 2.7.3
- [Release notes](https://github.com/mswjs/msw/releases)
- [Changelog](https://github.com/mswjs/msw/blob/main/CHANGELOG.md)
- [Commits](mswjs/msw@v2.7.0...v2.7.3)

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

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

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

Updates `typescript` from 5.7.3 to 5.8.2
- [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.3...v5.8.2)

---
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: "@storybook/test-runner"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@types/lodash"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: axe-playwright
  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: eslint-config-next
  dependency-type: direct:development
  update-type: version-update:semver-minor
  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: msw
  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-patch
  dependency-group: development-dependencies
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  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-minor
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/autogpt_platform/frontend/dev/development-dependencies-56980559b6 branch from 6417a0e to 40a8082 Compare March 12, 2025 15:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies javascript Pull requests that update Javascript code platform/backend AutoGPT Platform - Back end platform/frontend AutoGPT Platform - Front end size/xl
Projects
Status: 🆕 Needs initial review
Status: No status
Development

Successfully merging this pull request may close these issues.

0 participants