Skip to content

Conversation

@dependabot
Copy link
Contributor

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

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

Package From To
@chromatic-com/storybook 4.1.2 4.1.3
@playwright/test 1.56.1 1.57.0
@tanstack/react-query-devtools 5.90.2 5.91.1
@types/lodash 4.17.20 4.17.21
@types/node 24.10.0 24.10.1
chromatic 13.3.3 13.3.4
msw 2.11.6 2.12.3
orval 7.13.0 7.17.0
prettier 3.6.2 3.7.3
prettier-plugin-tailwindcss 0.7.1 0.7.2

Updates @chromatic-com/storybook from 4.1.2 to 4.1.3

Release notes

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

v4.1.3

🐛 Bug Fix

Authors: 1

v4.1.3-next.0

🐛 Bug Fix

Authors: 1

Changelog

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

v4.1.3 (Mon Nov 17 2025)

🐛 Bug Fix

Authors: 1


Commits

Updates @playwright/test from 1.56.1 to 1.57.0

Release notes

Sourced from @​playwright/test's releases.

v1.57.0

Speedboard

In HTML reporter, there's a new tab we call "Speedboard":

It shows you all your executed tests sorted by slowness, and can help you understand where your test suite is taking longer than expected. Take a look at yours - maybe you'll find some tests that are spending a longer time waiting than they should!

Chrome for Testing

Starting with this release, Playwright switches from Chromium, to using Chrome for Testing builds. Both headed and headless browsers are subject to this. Your tests should still be passing after upgrading to Playwright 1.57.

We're expecting no functional changes to come from this switch. The biggest change is the new icon and title in your toolbar.

If you still see an unexpected behaviour change, please file an issue.

On Arm64 Linux, Playwright continues to use Chromium.

Waiting for webserver output

testConfig.webServer added a wait field. Pass a regular expression, and Playwright will wait until the webserver logs match it.

import { defineConfig } from '@playwright/test';
export default defineConfig({
webServer: {
command: 'npm run start',
wait: {
stdout: '/Listening on port (?<my_server_port>\d+)/'
},
},
});

If you include a named capture group into the expression, then Playwright will provide the capture group contents via environment variables:

import { test, expect } from '@playwright/test';
test.use({ baseUrl: http://localhost:${process.env.MY_SERVER_PORT ?? 3000} });
test('homepage', async ({ page }) => {
await page.goto('/');
});
</tr></table>

... (truncated)

Commits

Updates @tanstack/react-query-devtools from 5.90.2 to 5.91.1

Release notes

Sourced from @​tanstack/react-query-devtools's releases.

@​tanstack/react-query-devtools@​5.91.1

Patch Changes

  • Updated dependencies [b261b6f]:
    • @​tanstack/query-devtools@​5.91.1

@​tanstack/react-query-devtools@​5.91.0

Minor Changes

  • feat(devtools): allow passing a theme via prop (#9887)

Patch Changes

  • Updated dependencies [0e9d5b5]:
    • @​tanstack/query-devtools@​5.91.0
Changelog

Sourced from @​tanstack/react-query-devtools's changelog.

5.91.1

Patch Changes

  • Updated dependencies [b261b6f]:
    • @​tanstack/query-devtools@​5.91.1

5.91.0

Minor Changes

  • feat(devtools): allow passing a theme via prop (#9887)

Patch Changes

  • Updated dependencies [0e9d5b5]:
    • @​tanstack/query-devtools@​5.91.0
Commits

Updates @types/lodash from 4.17.20 to 4.17.21

Commits

Updates @types/node from 24.10.0 to 24.10.1

Commits

Updates chromatic from 13.3.3 to 13.3.4

Release notes

Sourced from chromatic's releases.

v13.3.4

🐛 Bug Fix

Authors: 1

Changelog

Sourced from chromatic's changelog.

v13.3.4 (Tue Nov 18 2025)

🐛 Bug Fix

Authors: 1


Commits

Updates msw from 2.11.6 to 2.12.3

Release notes

Sourced from msw's releases.

v2.12.3 (2025-11-23)

Bug Fixes

v2.12.2 (2025-11-14)

Bug Fixes

  • node: move browser and react-native export conditions lower (#2627) (102d85a1fdb60558f07e778621edf33393ae18b5) @​vidschofelix

v2.12.1 (2025-11-09)

Bug Fixes

  • setupWorker: fix response init in response:* events (#2621) (7f48f21189f1c04349890bb8523f772f6ae9eb08) @​jbms

v2.12.0 (2025-11-05)

Features

Commits

Updates orval from 7.13.0 to 7.17.0

Release notes

Sourced from orval's releases.

Release v7.17.0

What's Changed

Full Changelog: orval-labs/orval@v7.16.1...v7.17.0

Release v7.16.1

What's Changed

[!IMPORTANT]
Security fix for js-yaml 4.1.1

Full Changelog: orval-labs/orval@v7.16.0...v7.16.1

Release v7.16.0

What's Changed

Full Changelog: orval-labs/orval@v7.15.0...v7.16.0

Release v7.15.0

What's Changed

[!IMPORTANT]
Breaking change: Node 22.18.0 or higher is required

New Contributors

Full Changelog: orval-labs/orval@v7.14.0...v7.15.0

Release v7.14.0

[!IMPORTANT]

... (truncated)

Commits
  • 551ee7f chore(release): bump version to v7.17.0 (#2588)
  • 631d257 Fix useSWRInfinite pagination and header support (v7) (#2586)
  • 6b25d06 chore(release): bump version to v7.16.1 (#2582)
  • a887b2b js-yaml 4.1.1
  • 253ae76 chore(release): bump version to v7.16.0 (#2519)
  • 1d22214 Update base branch for release preparation
  • 13d6a8a Add step to remove stableVersion fields from package.json
  • cf0f1e1 Process config file with jiti - v7 (#2518)
  • bdacff4 chore(release): bump version to v7.15.0 (#2474)
  • 0dfe795 fix(axios): "responseType: text" incorrectly being added (#2473)
  • Additional commits viewable in compare view

Updates prettier from 3.6.2 to 3.7.3

Release notes

Sourced from prettier's releases.

3.7.3

What's Changed

🔗 Changelog

3.7.2

What's Changed

🔗 Changelog

3.7.1

🔗 Changelog

3.7.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.7.3

diff

API: Fix prettier.getFileInfo() change that breaks VSCode extension (#18375 by @​fisker)

An internal refactor accidentally broke the VSCode extension plugin loading.

3.7.2

diff

JavaScript: Fix string print when switching quotes (#18351 by @​fisker)

// Input
console.log("A descriptor\\'s .kind must be \"method\" or \"field\".")
// Prettier 3.7.1
console.log('A descriptor\'s .kind must be "method" or "field".');
// Prettier 3.7.2
console.log('A descriptor\'s .kind must be "method" or "field".');

JavaScript: Preserve quote for embedded HTML attribute values (#18352 by @​kovsu)

// Input
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;
// Prettier 3.7.1
const html = /* HTML */ &lt;div class=${styles.banner}&gt;&lt;/div&gt;;
// Prettier 3.7.2
const html = /* HTML */ &lt;div class=&quot;${styles.banner}&quot;&gt;&lt;/div&gt;;

TypeScript: Fix comment in empty type literal (#18364 by @​fisker)

// Input
export type XXX = {
  // tbd
};
// Prettier 3.7.1
</tr></table>

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for prettier since your current version.


Updates prettier-plugin-tailwindcss from 0.7.1 to 0.7.2

Release notes

Sourced from prettier-plugin-tailwindcss's releases.

v0.7.2

Fixed

  • Load compatible plugins sequentially to work around race conditions in Node.js (#412)
  • Fix compatibility with prettier-plugin-svelte when using Prettier v3.7+ (#418)
Changelog

Sourced from prettier-plugin-tailwindcss's changelog.

[0.7.2] - 2025-12-01

Fixed

  • Load compatible plugins sequentially to work around race conditions in Node.js (#412)
  • Fix compatibility with prettier-plugin-svelte when using Prettier v3.7+ (#418)
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

…oss 1 directory with 10 updates

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

| Package | From | To |
| --- | --- | --- |
| [@chromatic-com/storybook](https://github.com/chromaui/addon-visual-tests) | `4.1.2` | `4.1.3` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.56.1` | `1.57.0` |
| [@tanstack/react-query-devtools](https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools) | `5.90.2` | `5.91.1` |
| [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) | `4.17.20` | `4.17.21` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.10.0` | `24.10.1` |
| [chromatic](https://github.com/chromaui/chromatic-cli) | `13.3.3` | `13.3.4` |
| [msw](https://github.com/mswjs/msw) | `2.11.6` | `2.12.3` |
| [orval](https://github.com/orval-labs/orval) | `7.13.0` | `7.17.0` |
| [prettier](https://github.com/prettier/prettier) | `3.6.2` | `3.7.3` |
| [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | `0.7.1` | `0.7.2` |



Updates `@chromatic-com/storybook` from 4.1.2 to 4.1.3
- [Release notes](https://github.com/chromaui/addon-visual-tests/releases)
- [Changelog](https://github.com/chromaui/addon-visual-tests/blob/v4.1.3/CHANGELOG.md)
- [Commits](chromaui/addon-visual-tests@v4.1.2...v4.1.3)

Updates `@playwright/test` from 1.56.1 to 1.57.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.56.1...v1.57.0)

Updates `@tanstack/react-query-devtools` from 5.90.2 to 5.91.1
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/react-query-devtools/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/react-query-devtools@5.91.1/packages/react-query-devtools)

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

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

Updates `chromatic` from 13.3.3 to 13.3.4
- [Release notes](https://github.com/chromaui/chromatic-cli/releases)
- [Changelog](https://github.com/chromaui/chromatic-cli/blob/main/CHANGELOG.md)
- [Commits](chromaui/chromatic-cli@v13.3.3...v13.3.4)

Updates `msw` from 2.11.6 to 2.12.3
- [Release notes](https://github.com/mswjs/msw/releases)
- [Changelog](https://github.com/mswjs/msw/blob/main/CHANGELOG.md)
- [Commits](mswjs/msw@v2.11.6...v2.12.3)

Updates `orval` from 7.13.0 to 7.17.0
- [Release notes](https://github.com/orval-labs/orval/releases)
- [Commits](orval-labs/orval@v7.13.0...v7.17.0)

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

Updates `prettier-plugin-tailwindcss` from 0.7.1 to 0.7.2
- [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.7.1...v0.7.2)

---
updated-dependencies:
- dependency-name: "@chromatic-com/storybook"
  dependency-version: 4.1.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@playwright/test"
  dependency-version: 1.57.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@tanstack/react-query-devtools"
  dependency-version: 5.91.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@types/lodash"
  dependency-version: 4.17.21
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@types/node"
  dependency-version: 24.10.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: chromatic
  dependency-version: 13.3.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: msw
  dependency-version: 2.12.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: orval
  dependency-version: 7.17.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: prettier
  dependency-version: 3.7.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: prettier-plugin-tailwindcss
  dependency-version: 0.7.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies javascript Pull requests that update Javascript code labels Dec 1, 2025
@dependabot dependabot bot requested a review from a team as a code owner December 1, 2025 20:37
@dependabot dependabot bot removed the request for review from a team December 1, 2025 20:37
@dependabot dependabot bot requested review from kcze and majdyz December 1, 2025 20:37
@dependabot dependabot bot added the javascript Pull requests that update Javascript code label Dec 1, 2025
@github-project-automation github-project-automation bot moved this to 🆕 Needs initial review in AutoGPT development kanban Dec 1, 2025
@netlify
Copy link

netlify bot commented Dec 1, 2025

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

Name Link
🔨 Latest commit 41fa9de
🔍 Latest deploy log https://app.netlify.com/projects/auto-gpt-docs-dev/deploys/692dfc8c91518d000886eece

@coderabbitai
Copy link

coderabbitai bot commented Dec 1, 2025

Important

Review skipped

Ignore keyword(s) in the title.

⛔ Ignored keywords (1)
  • chore

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

@netlify
Copy link

netlify bot commented Dec 1, 2025

Deploy Preview for auto-gpt-docs canceled.

Name Link
🔨 Latest commit 41fa9de
🔍 Latest deploy log https://app.netlify.com/projects/auto-gpt-docs/deploys/692dfc8cd3770600089d45f2

@github-actions github-actions bot added platform/frontend AutoGPT Platform - Front end size/xl labels Dec 1, 2025
@deepsource-io
Copy link

deepsource-io bot commented Dec 1, 2025

Here's the code health analysis summary for commits 3b2a67a..41fa9de. 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.

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/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.

1 participant