Bumps the development-dependencies group in /autogpt_platform/frontend with 15 updates: | Package | From | To | | --- | --- | --- | | [@playwright/test](https://github.com/microsoft/playwright) | `1.49.1` | `1.50.0` | | [@storybook/addon-a11y](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/a11y) | `8.5.0` | `8.5.2` | | [@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials) | `8.5.0` | `8.5.2` | | [@storybook/addon-interactions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/interactions) | `8.5.0` | `8.5.2` | | [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links) | `8.5.0` | `8.5.2` | | [@storybook/addon-onboarding](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/onboarding) | `8.5.0` | `8.5.2` | | [@storybook/blocks](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks) | `8.5.0` | `8.5.2` | | [@storybook/nextjs](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/nextjs) | `8.5.0` | `8.5.2` | | [@storybook/react](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react) | `8.5.0` | `8.5.2` | | [@storybook/test](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/test) | `8.5.0` | `8.5.2` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.7` | `22.10.10` | | [chromatic](https://github.com/chromaui/chromatic-cli) | `11.25.0` | `11.25.1` | | [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `15.1.5` | `15.1.6` | | [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | `0.6.10` | `0.6.11` | | [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) | `8.5.0` | `8.5.2` | Updates `@playwright/test` from 1.49.1 to 1.50.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/microsoft/playwright/releases"><code>@playwright/test</code>'s releases</a>.</em></p> <blockquote> <h2>v1.50.0</h2> <h2>Test runner</h2> <ul> <li> <p>New option <a href="https://playwright.dev/docs/api/class-test#test-step-option-timeout"><code>timeout</code></a> allows specifying a maximum run time for an individual test step. A timed-out step will fail the execution of the test.</p> <pre lang="js"><code>test('some test', async ({ page }) => { await test.step('a step', async () => { // This step can time out separately from the test }, { timeout: 1000 }); }); </code></pre> </li> <li> <p>New method <a href="https://playwright.dev/docs/api/class-test#test-step-skip">test.step.skip()</a> to disable execution of a test step.</p> <pre lang="js"><code>test('some test', async ({ page }) => { await test.step('before running step', async () => { // Normal step }); <p>await test.step.skip('not yet ready', async () => {<br /> // This step is skipped<br /> });</p> <p>await test.step('after running step', async () => {<br /> // This step still runs even though the previous one was skipped<br /> });<br /> });<br /> </code></pre></p> </li> <li> <p>Expanded <a href="https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-match-aria-snapshot-2">expect(locator).toMatchAriaSnapshot()</a> to allow storing of aria snapshots in separate YAML files.</p> </li> <li> <p>Added method <a href="https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-have-accessible-error-message">expect(locator).toHaveAccessibleErrorMessage()</a> to assert the Locator points to an element with a given <a href="https://w3c.github.io/aria/#aria-errormessage">aria errormessage</a>.</p> </li> <li> <p>Option <a href="https://playwright.dev/docs/api/class-testconfig#test-config-update-snapshots">testConfig.updateSnapshots</a> added the configuration enum <code>changed</code>. <code>changed</code> updates only the snapshots that have changed, whereas <code>all</code> now updates all snapshots, regardless of whether there are any differences.</p> </li> <li> <p>New option <a href="https://playwright.dev/docs/api/class-testconfig#test-config-update-source-method">testConfig.updateSourceMethod</a> defines the way source code is updated when <a href="https://playwright.dev/docs/api/class-testconfig#test-config-update-snapshots">testConfig.updateSnapshots</a> is configured. Added <code>overwrite</code> and <code>3-way</code> modes that write the changes into source code, on top of existing <code>patch</code> mode that creates a patch file.</p> <pre lang="bash"><code>npx playwright test --update-snapshots=changed --update-source-method=3way </code></pre> </li> <li> <p>Option <a href="https://playwright.dev/docs/api/class-testconfig#test-config-web-server">testConfig.webServer</a> added a <code>gracefulShutdown</code> field for specifying a process kill signal other than the default <code>SIGKILL</code>.</p> </li> <li> <p>Exposed <a href="https://playwright.dev/docs/api/class-teststep#test-step-attachments">testStep.attachments</a> from the reporter API to allow retrieval of all attachments created by that step.</p> </li> </ul> <h2>UI updates</h2> <ul> <li>Updated default HTML reporter to improve display of attachments.</li> <li>New button for picking elements to produce aria snapshots.</li> <li>Additional details (such as keys pressed) are now displayed alongside action API calls in traces.</li> <li>Display of <code>canvas</code> content in traces is error-prone. Display is now disabled by default, and can be enabled via the <code>Display canvas content</code> UI setting.</li> <li><code>Call</code> and <code>Network</code> panels now display additional time information.</li> </ul> <h2>Breaking</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="9d22178533"><code>9d22178</code></a> chore: mark v1.50.0 (<a href="https://redirect.github.com/microsoft/playwright/issues/34447">#34447</a>)</li> <li><a href="5d6ac9622d"><code>5d6ac96</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/34442">#34442</a>): fix(test runner): respect updateSourceMethod from the co...</li> <li><a href="97b76b46af"><code>97b76b4</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/34440">#34440</a>): chore(driver): roll driver to recent Node.js LTS version</li> <li><a href="7bbcc3c624"><code>7bbcc3c</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/34353">#34353</a>): chore: move attachment link back to tree item, make it f...</li> <li><a href="2811a1d4f5"><code>2811a1d</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/34430">#34430</a>): docs: switch gracefulShutdown to primarily mention SIGTE...</li> <li><a href="2b8d1ce260"><code>2b8d1ce</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/34380">#34380</a>): docs: release notes for v1.50 js (<a href="https://redirect.github.com/microsoft/playwright/issues/34425">#34425</a>)</li> <li><a href="715eb250e7"><code>715eb25</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/34409">#34409</a>): fix(aria snapshot): make rebase work when options are sp...</li> <li><a href="6106ef020f"><code>6106ef0</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/34410">#34410</a>): fix(list reporter): do not break after output without tr...</li> <li><a href="09cd74f7b0"><code>09cd74f</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/34407">#34407</a>): fix(step.skip): show a skipped indicator in UI mode (<a href="https://redirect.github.com/microsoft/playwright/issues/34">#34</a>...</li> <li><a href="cc6eb090ec"><code>cc6eb09</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/34386">#34386</a>): chore: step timeout improvements (<a href="https://redirect.github.com/microsoft/playwright/issues/34387">#34387</a>)</li> <li>Additional commits viewable in <a href="https://github.com/microsoft/playwright/compare/v1.49.1...v1.50.0">compare view</a></li> </ul> </details> <br /> Updates `@storybook/addon-a11y` from 8.5.0 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@storybook/addon-a11y</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@zhyd1997</code></a>!</li> </ul> <h2>v8.5.1</h2> <h2>8.5.1</h2> <ul> <li>Addon Test: Replace <code>interaction test</code> -> <code>component test</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/30333">#30333</a>, thanks <a href="https://github.com/kylegach"><code>@kylegach</code></a>!</li> <li>Manager: Fix escaping of single quotes in dynamic import paths - <a href="https://redirect.github.com/storybookjs/storybook/pull/30278">#30278</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>RNW-Vite: Support requires for images/fonts - <a href="https://redirect.github.com/storybookjs/storybook/pull/30305">#30305</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@storybook/addon-a11y</code>'s changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@zhyd1997</code></a>!</li> </ul> <h2>8.5.1</h2> <ul> <li>Addon Test: Replace <code>interaction test</code> -> <code>component test</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/30333">#30333</a>, thanks <a href="https://github.com/kylegach"><code>@kylegach</code></a>!</li> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Manager: Fix escaping of single quotes in dynamic import paths - <a href="https://redirect.github.com/storybookjs/storybook/pull/30278">#30278</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>RNW-Vite: Support requires for images/fonts - <a href="https://redirect.github.com/storybookjs/storybook/pull/30305">#30305</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="7dac855e80"><code>7dac855</code></a> Bump version from "8.5.1" to "8.5.2" [skip ci]</li> <li><a href="600af05703"><code>600af05</code></a> Bump version from "8.5.0" to "8.5.1" [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/addons/a11y">compare view</a></li> </ul> </details> <br /> Updates `@storybook/addon-essentials` from 8.5.0 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@storybook/addon-essentials</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@zhyd1997</code></a>!</li> </ul> <h2>v8.5.1</h2> <h2>8.5.1</h2> <ul> <li>Addon Test: Replace <code>interaction test</code> -> <code>component test</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/30333">#30333</a>, thanks <a href="https://github.com/kylegach"><code>@kylegach</code></a>!</li> <li>Manager: Fix escaping of single quotes in dynamic import paths - <a href="https://redirect.github.com/storybookjs/storybook/pull/30278">#30278</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>RNW-Vite: Support requires for images/fonts - <a href="https://redirect.github.com/storybookjs/storybook/pull/30305">#30305</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@storybook/addon-essentials</code>'s changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@zhyd1997</code></a>!</li> </ul> <h2>8.5.1</h2> <ul> <li>Addon Test: Replace <code>interaction test</code> -> <code>component test</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/30333">#30333</a>, thanks <a href="https://github.com/kylegach"><code>@kylegach</code></a>!</li> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Manager: Fix escaping of single quotes in dynamic import paths - <a href="https://redirect.github.com/storybookjs/storybook/pull/30278">#30278</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>RNW-Vite: Support requires for images/fonts - <a href="https://redirect.github.com/storybookjs/storybook/pull/30305">#30305</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="7dac855e80"><code>7dac855</code></a> Bump version from "8.5.1" to "8.5.2" [skip ci]</li> <li><a href="600af05703"><code>600af05</code></a> Bump version from "8.5.0" to "8.5.1" [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/addons/essentials">compare view</a></li> </ul> </details> <br /> Updates `@storybook/addon-interactions` from 8.5.0 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@storybook/addon-interactions</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@zhyd1997</code></a>!</li> </ul> <h2>v8.5.1</h2> <h2>8.5.1</h2> <ul> <li>Addon Test: Replace <code>interaction test</code> -> <code>component test</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/30333">#30333</a>, thanks <a href="https://github.com/kylegach"><code>@kylegach</code></a>!</li> <li>Manager: Fix escaping of single quotes in dynamic import paths - <a href="https://redirect.github.com/storybookjs/storybook/pull/30278">#30278</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>RNW-Vite: Support requires for images/fonts - <a href="https://redirect.github.com/storybookjs/storybook/pull/30305">#30305</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@storybook/addon-interactions</code>'s changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@zhyd1997</code></a>!</li> </ul> <h2>8.5.1</h2> <ul> <li>Addon Test: Replace <code>interaction test</code> -> <code>component test</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/30333">#30333</a>, thanks <a href="https://github.com/kylegach"><code>@kylegach</code></a>!</li> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Manager: Fix escaping of single quotes in dynamic import paths - <a href="https://redirect.github.com/storybookjs/storybook/pull/30278">#30278</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>RNW-Vite: Support requires for images/fonts - <a href="https://redirect.github.com/storybookjs/storybook/pull/30305">#30305</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="7dac855e80"><code>7dac855</code></a> Bump version from "8.5.1" to "8.5.2" [skip ci]</li> <li><a href="600af05703"><code>600af05</code></a> Bump version from "8.5.0" to "8.5.1" [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/addons/interactions">compare view</a></li> </ul> </details> <br /> Updates `@storybook/addon-links` from 8.5.0 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@storybook/addon-links</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@zhyd1997</code></a>!</li> </ul> <h2>v8.5.1</h2> <h2>8.5.1</h2> <ul> <li>Addon Test: Replace <code>interaction test</code> -> <code>component test</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/30333">#30333</a>, thanks <a href="https://github.com/kylegach"><code>@kylegach</code></a>!</li> <li>Manager: Fix escaping of single quotes in dynamic import paths - <a href="https://redirect.github.com/storybookjs/storybook/pull/30278">#30278</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>RNW-Vite: Support requires for images/fonts - <a href="https://redirect.github.com/storybookjs/storybook/pull/30305">#30305</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@storybook/addon-links</code>'s changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@zhyd1997</code></a>!</li> </ul> <h2>8.5.1</h2> <ul> <li>Addon Test: Replace <code>interaction test</code> -> <code>component test</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/30333">#30333</a>, thanks <a href="https://github.com/kylegach"><code>@kylegach</code></a>!</li> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Manager: Fix escaping of single quotes in dynamic import paths - <a href="https://redirect.github.com/storybookjs/storybook/pull/30278">#30278</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>RNW-Vite: Support requires for images/fonts - <a href="https://redirect.github.com/storybookjs/storybook/pull/30305">#30305</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="7dac855e80"><code>7dac855</code></a> Bump version from "8.5.1" to "8.5.2" [skip ci]</li> <li><a href="600af05703"><code>600af05</code></a> Bump version from "8.5.0" to "8.5.1" [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/addons/links">compare view</a></li> </ul> </details> <br /> Updates `@storybook/addon-onboarding` from 8.5.0 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@storybook/addon-onboarding</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@zhyd1997</code></a>!</li> </ul> <h2>v8.5.1</h2> <h2>8.5.1</h2> <ul> <li>Addon Test: Replace <code>interaction test</code> -> <code>component test</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/30333">#30333</a>, thanks <a href="https://github.com/kylegach"><code>@kylegach</code></a>!</li> <li>Manager: Fix escaping of single quotes in dynamic import paths - <a href="https://redirect.github.com/storybookjs/storybook/pull/30278">#30278</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>RNW-Vite: Support requires for images/fonts - <a href="https://redirect.github.com/storybookjs/storybook/pull/30305">#30305</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@storybook/addon-onboarding</code>'s changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@zhyd1997</code></a>!</li> </ul> <h2>8.5.1</h2> <ul> <li>Addon Test: Replace <code>interaction test</code> -> <code>component test</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/30333">#30333</a>, thanks <a href="https://github.com/kylegach"><code>@kylegach</code></a>!</li> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Manager: Fix escaping of single quotes in dynamic import paths - <a href="https://redirect.github.com/storybookjs/storybook/pull/30278">#30278</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>RNW-Vite: Support requires for images/fonts - <a href="https://redirect.github.com/storybookjs/storybook/pull/30305">#30305</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="7dac855e80"><code>7dac855</code></a> Bump version from "8.5.1" to "8.5.2" [skip ci]</li> <li><a href="600af05703"><code>600af05</code></a> Bump version from "8.5.0" to "8.5.1" [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/addons/onboarding">compare view</a></li> </ul> </details> <br /> Updates `@storybook/blocks` from 8.5.0 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@storybook/blocks</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@zhyd1997</code></a>!</li> </ul> <h2>v8.5.1</h2> <h2>8.5.1</h2> <ul> <li>Addon Test: Replace <code>interaction test</code> -> <code>component test</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/30333">#30333</a>, thanks <a href="https://github.com/kylegach"><code>@kylegach</code></a>!</li> <li>Manager: Fix escaping of single quotes in dynamic import paths - <a href="https://redirect.github.com/storybookjs/storybook/pull/30278">#30278</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>RNW-Vite: Support requires for images/fonts - <a href="https://redirect.github.com/storybookjs/storybook/pull/30305">#30305</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@storybook/blocks</code>'s changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@zhyd1997</code></a>!</li> </ul> <h2>8.5.1</h2> <ul> <li>Addon Test: Replace <code>interaction test</code> -> <code>component test</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/30333">#30333</a>, thanks <a href="https://github.com/kylegach"><code>@kylegach</code></a>!</li> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Manager: Fix escaping of single quotes in dynamic import paths - <a href="https://redirect.github.com/storybookjs/storybook/pull/30278">#30278</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>RNW-Vite: Support requires for images/fonts - <a href="https://redirect.github.com/storybookjs/storybook/pull/30305">#30305</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="7dac855e80"><code>7dac855</code></a> Bump version from "8.5.1" to "8.5.2" [skip ci]</li> <li><a href="600af05703"><code>600af05</code></a> Bump version from "8.5.0" to "8.5.1" [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/lib/blocks">compare view</a></li> </ul> </details> <br /> Updates `@storybook/nextjs` from 8.5.0 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@storybook/nextjs</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@zhyd1997</code></a>!</li> </ul> <h2>v8.5.1</h2> <h2>8.5.1</h2> <ul> <li>Addon Test: Replace <code>interaction test</code> -> <code>component test</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/30333">#30333</a>, thanks <a href="https://github.com/kylegach"><code>@kylegach</code></a>!</li> <li>Manager: Fix escaping of single quotes in dynamic import paths - <a href="https://redirect.github.com/storybookjs/storybook/pull/30278">#30278</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>RNW-Vite: Support requires for images/fonts - <a href="https://redirect.github.com/storybookjs/storybook/pull/30305">#30305</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@storybook/nextjs</code>'s changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@zhyd1997</code></a>!</li> </ul> <h2>8.5.1</h2> <ul> <li>Addon Test: Replace <code>interaction test</code> -> <code>component test</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/30333">#30333</a>, thanks <a href="https://github.com/kylegach"><code>@kylegach</code></a>!</li> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Manager: Fix escaping of single quotes in dynamic import paths - <a href="https://redirect.github.com/storybookjs/storybook/pull/30278">#30278</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>RNW-Vite: Support requires for images/fonts - <a href="https://redirect.github.com/storybookjs/storybook/pull/30305">#30305</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="7dac855e80"><code>7dac855</code></a> Bump version from "8.5.1" to "8.5.2" [skip ci]</li> <li><a href="600af05703"><code>600af05</code></a> Bump version from "8.5.0" to "8.5.1" [skip ci]</li> <li><a href="032a7658ed"><code>032a765</code></a> Merge pull request <a href="https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/nextjs/issues/30333">#30333</a> from storybookjs/interactions-to-component-2</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/frameworks/nextjs">compare view</a></li> </ul> </details> <br /> Updates `@storybook/react` from 8.5.0 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@storybook/react</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@zhyd1997</code></a>!</li> </ul> <h2>v8.5.1</h2> <h2>8.5.1</h2> <ul> <li>Addon Test: Replace <code>interaction test</code> -> <code>component test</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/30333">#30333</a>, thanks <a href="https://github.com/kylegach"><code>@kylegach</code></a>!</li> <li>Manager: Fix escaping of single quotes in dynamic import paths - <a href="https://redirect.github.com/storybookjs/storybook/pull/30278">#30278</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>RNW-Vite: Support requires for images/fonts - <a href="https://redirect.github.com/storybookjs/storybook/pull/30305">#30305</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@storybook/react</code>'s changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@zhyd1997</code></a>!</li> </ul> <h2>8.5.1</h2> <ul> <li>Addon Test: Replace <code>interaction test</code> -> <code>component test</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/30333">#30333</a>, thanks <a href="https://github.com/kylegach"><code>@kylegach</code></a>!</li> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Manager: Fix escaping of single quotes in dynamic import paths - <a href="https://redirect.github.com/storybookjs/storybook/pull/30278">#30278</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>RNW-Vite: Support requires for images/fonts - <a href="https://redirect.github.com/storybookjs/storybook/pull/30305">#30305</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="7dac855e80"><code>7dac855</code></a> Bump version from "8.5.1" to "8.5.2" [skip ci]</li> <li><a href="600af05703"><code>600af05</code></a> Bump version from "8.5.0" to "8.5.1" [skip ci]</li> <li><a href="032a7658ed"><code>032a765</code></a> Merge pull request <a href="https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react/issues/30333">#30333</a> from storybookjs/interactions-to-component-2</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/renderers/react">compare view</a></li> </ul> </details> <br /> Updates `@storybook/test` from 8.5.0 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@storybook/test</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@zhyd1997</code></a>!</li> </ul> <h2>v8.5.1</h2> <h2>8.5.1</h2> <ul> <li>Addon Test: Replace <code>interaction test</code> -> <code>component test</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/30333">#30333</a>, thanks <a href="https://github.com/kylegach"><code>@kylegach</code></a>!</li> <li>Manager: Fix escaping of single quotes in dynamic import paths - <a href="https://redirect.github.com/storybookjs/storybook/pull/30278">#30278</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>RNW-Vite: Support requires for images/fonts - <a href="https://redirect.github.com/storybookjs/storybook/pull/30305">#30305</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@storybook/test</code>'s changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@zhyd1997</code></a>!</li> </ul> <h2>8.5.1</h2> <ul> <li>Addon Test: Replace <code>interaction test</code> -> <code>component test</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/30333">#30333</a>, thanks <a href="https://github.com/kylegach"><code>@kylegach</code></a>!</li> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Manager: Fix escaping of single quotes in dynamic import paths - <a href="https://redirect.github.com/storybookjs/storybook/pull/30278">#30278</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>RNW-Vite: Support requires for images/fonts - <a href="https://redirect.github.com/storybookjs/storybook/pull/30305">#30305</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="7dac855e80"><code>7dac855</code></a> Bump version from "8.5.1" to "8.5.2" [skip ci]</li> <li><a href="600af05703"><code>600af05</code></a> Bump version from "8.5.0" to "8.5.1" [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/lib/test">compare view</a></li> </ul> </details> <br /> Updates `@types/node` from 22.10.7 to 22.10.10 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node">compare view</a></li> </ul> </details> <br /> Updates `chromatic` from 11.25.0 to 11.25.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/chromaui/chromatic-cli/releases">chromatic's releases</a>.</em></p> <blockquote> <h2>v11.25.1</h2> <h4>🐛 Bug Fix</h4> <ul> <li>Don't normalize package.json fields <a href="https://redirect.github.com/chromaui/chromatic-cli/pull/1143">#1143</a> (<a href="https://github.com/codykaup"><code>@codykaup</code></a>)</li> </ul> <h4>Authors: 1</h4> <ul> <li>Cody Kaup (<a href="https://github.com/codykaup"><code>@codykaup</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/chromaui/chromatic-cli/blob/main/CHANGELOG.md">chromatic's changelog</a>.</em></p> <blockquote> <h1>v11.25.1 (Wed Jan 22 2025)</h1> <h4>🐛 Bug Fix</h4> <ul> <li>Don't normalize package.json fields <a href="https://redirect.github.com/chromaui/chromatic-cli/pull/1143">#1143</a> (<a href="https://github.com/codykaup"><code>@codykaup</code></a>)</li> </ul> <h4>Authors: 1</h4> <ul> <li>Cody Kaup (<a href="https://github.com/codykaup"><code>@codykaup</code></a>)</li> </ul> <hr /> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="035a1bf6ef"><code>035a1bf</code></a> Bump version to: 11.25.1 [skip ci]</li> <li><a href="f9af9e6ca4"><code>f9af9e6</code></a> Update CHANGELOG.md [skip ci]</li> <li><a href="e69d42b2f6"><code>e69d42b</code></a> Merge pull request <a href="https://redirect.github.com/chromaui/chromatic-cli/issues/1143">#1143</a> from chromaui/cody/cap-2409-cli-exits-silently-when-...</li> <li><a href="e9d7fa8a68"><code>e9d7fa8</code></a> Don't normalize package.json fields</li> <li>See full diff in <a href="https://github.com/chromaui/chromatic-cli/compare/v11.25.0...v11.25.1">compare view</a></li> </ul> </details> <br /> Updates `eslint-config-next` from 15.1.5 to 15.1.6 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vercel/next.js/releases">eslint-config-next's releases</a>.</em></p> <blockquote> <h2>v15.1.6</h2> <blockquote> <p>[!NOTE]<br /> This release is backporting bug fixes. It does <strong>not</strong> include all pending features/changes on canary.</p> </blockquote> <h3>Core Changes</h3> <ul> <li>fix: don't memory-leak promises passed to waitUntil (<a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/75041">#75041</a>)</li> <li>backport: fix prerender issue with intercepting routes + generateStaticParams (<a href="https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next/issues/75170">#75170</a>)</li> </ul> <h3>Credits</h3> <p>Huge thanks to <a href="https://github.com/lubieowoce"><code>@lubieowoce</code></a> and <a href="https://github.com/ztanner"><code>@ztanner</code></a> for helping!</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="38a6d0177e"><code>38a6d01</code></a> v15.1.6</li> <li>See full diff in <a href="https://github.com/vercel/next.js/commits/v15.1.6/packages/eslint-config-next">compare view</a></li> </ul> </details> <br /> Updates `prettier-plugin-tailwindcss` from 0.6.10 to 0.6.11 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/prettier-plugin-tailwindcss/releases">prettier-plugin-tailwindcss's releases</a>.</em></p> <blockquote> <h2>v0.6.11</h2> <ul> <li>Support TypeScript configs and plugins when using v4 (<a href="https://redirect.github.com/tailwindlabs/prettier-plugin-tailwindcss/pull/342">#342</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/main/CHANGELOG.md">prettier-plugin-tailwindcss's changelog</a>.</em></p> <blockquote> <h2>[0.6.11] - 2025-01-23</h2> <ul> <li>Support TypeScript configs and plugins when using v4 (<a href="https://redirect.github.com/tailwindlabs/prettier-plugin-tailwindcss/pull/342">#342</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="b5fb12c15b"><code>b5fb12c</code></a> 0.6.11</li> <li><a href="be269bd5e4"><code>be269bd</code></a> Fix import</li> <li><a href="253033556b"><code>2530335</code></a> Support loading TypeScript configs in v4 (<a href="https://redirect.github.com/tailwindlabs/prettier-plugin-tailwindcss/issues/342">#342</a>)</li> <li><a href="6d3fa0786f"><code>6d3fa07</code></a> Update changelog</li> <li><a href="95fce37f64"><code>95fce37</code></a> Update changelog</li> <li><a href="f8a2244735"><code>f8a2244</code></a> Update changelog</li> <li>See full diff in <a href="https://github.com/tailwindlabs/prettier-plugin-tailwindcss/compare/v0.6.10...v0.6.11">compare view</a></li> </ul> </details> <br /> Updates `storybook` from 8.5.0 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases">storybook's releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@zhyd1997</code></a>!</li> </ul> <h2>v8.5.1</h2> <h2>8.5.1</h2> <ul> <li>Addon Test: Replace <code>interaction test</code> -> <code>component test</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/30333">#30333</a>, thanks <a href="https://github.com/kylegach"><code>@kylegach</code></a>!</li> <li>Manager: Fix escaping of single quotes in dynamic import paths - <a href="https://redirect.github.com/storybookjs/storybook/pull/30278">#30278</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>RNW-Vite: Support requires for images/fonts - <a href="https://redirect.github.com/storybookjs/storybook/pull/30305">#30305</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md">storybook's changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@zhyd1997</code></a>!</li> </ul> <h2>8.5.1</h2> <ul> <li>Addon Test: Replace <code>interaction test</code> -> <code>component test</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/30333">#30333</a>, thanks <a href="https://github.com/kylegach"><code>@kylegach</code></a>!</li> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>Manager: Fix escaping of single quotes in dynamic import paths - <a href="https://redirect.github.com/storybookjs/storybook/pull/30278">#30278</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@valentinpalkovic</code></a>!</li> <li>RNW-Vite: Support requires for images/fonts - <a href="https://redirect.github.com/storybookjs/storybook/pull/30305">#30305</a>, thanks <a href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="7dac855e80"><code>7dac855</code></a> Bump version from "8.5.1" to "8.5.2" [skip ci]</li> <li><a href="600af05703"><code>600af05</code></a> Bump version from "8.5.0" to "8.5.1" [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/lib/cli">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AutoGPT: Build, Deploy, and Run AI Agents
AutoGPT is a powerful platform that allows you to create, deploy, and manage continuous AI agents that automate complex workflows.
Hosting Options
- Download to self-host
- Join the Waitlist for the cloud-hosted beta
How to Setup for Self-Hosting
Note
Setting up and hosting the AutoGPT Platform yourself is a technical process. If you'd rather something that just works, we recommend joining the waitlist for the cloud-hosted beta.
https://github.com/user-attachments/assets/d04273a5-b36a-4a37-818e-f631ce72d603
This tutorial assumes you have Docker, VSCode, git and npm installed.
🧱 AutoGPT Frontend
The AutoGPT frontend is where users interact with our powerful AI automation platform. It offers multiple ways to engage with and leverage our AI agents. This is the interface where you'll bring your AI automation ideas to life:
Agent Builder: For those who want to customize, our intuitive, low-code interface allows you to design and configure your own AI agents.
Workflow Management: Build, modify, and optimize your automation workflows with ease. You build your agent by connecting blocks, where each block performs a single action.
Deployment Controls: Manage the lifecycle of your agents, from testing to production.
Ready-to-Use Agents: Don't want to build? Simply select from our library of pre-configured agents and put them to work immediately.
Agent Interaction: Whether you've built your own or are using pre-configured agents, easily run and interact with them through our user-friendly interface.
Monitoring and Analytics: Keep track of your agents' performance and gain insights to continually improve your automation processes.
Read this guide to learn how to build your own custom blocks.
💽 AutoGPT Server
The AutoGPT Server is the powerhouse of our platform This is where your agents run. Once deployed, agents can be triggered by external sources and can operate continuously. It contains all the essential components that make AutoGPT run smoothly.
Source Code: The core logic that drives our agents and automation processes.
Infrastructure: Robust systems that ensure reliable and scalable performance.
Marketplace: A comprehensive marketplace where you can find and deploy a wide range of pre-built agents.
🐙 Example Agents
Here are two examples of what you can do with AutoGPT:
-
Generate Viral Videos from Trending Topics
- This agent reads topics on Reddit.
- It identifies trending topics.
- It then automatically creates a short-form video based on the content.
-
Identify Top Quotes from Videos for Social Media
- This agent subscribes to your YouTube channel.
- When you post a new video, it transcribes it.
- It uses AI to identify the most impactful quotes to generate a summary.
- Then, it writes a post to automatically publish to your social media.
These examples show just a glimpse of what you can achieve with AutoGPT! You can create customized workflows to build agents for any use case.
Mission and Licencing
Our mission is to provide the tools, so that you can focus on what matters:
- 🏗️ Building - Lay the foundation for something amazing.
- 🧪 Testing - Fine-tune your agent to perfection.
- 🤝 Delegating - Let AI work for you, and have your ideas come to life.
Be part of the revolution! AutoGPT is here to stay, at the forefront of AI innovation.
📖 Documentation | 🚀 Contributing
Licensing:
MIT License: The majority of the AutoGPT repository is under the MIT License.
Polyform Shield License: This license applies to the autogpt_platform folder.
For more information, see https://agpt.co/blog/introducing-the-autogpt-platform
🤖 AutoGPT Classic
Below is information about the classic version of AutoGPT.
🛠️ Build your own Agent - Quickstart
🏗️ Forge
Forge your own agent! – Forge is a ready-to-go toolkit to build your own agent application. It handles most of the boilerplate code, letting you channel all your creativity into the things that set your agent apart. All tutorials are located here. Components from forge can also be used individually to speed up development and reduce boilerplate in your agent project.
🚀 Getting Started with Forge – This guide will walk you through the process of creating your own agent and using the benchmark and user interface.
📘 Learn More about Forge
🎯 Benchmark
Measure your agent's performance! The agbenchmark can be used with any agent that supports the agent protocol, and the integration with the project's CLI makes it even easier to use with AutoGPT and forge-based agents. The benchmark offers a stringent testing environment. Our framework allows for autonomous, objective performance evaluations, ensuring your agents are primed for real-world action.
📦 agbenchmark on Pypi
|
📘 Learn More about the Benchmark
💻 UI
Makes agents easy to use! The frontend gives you a user-friendly interface to control and monitor your agents. It connects to agents through the agent protocol, ensuring compatibility with many agents from both inside and outside of our ecosystem.
The frontend works out-of-the-box with all agents in the repo. Just use the CLI to run your agent of choice!
📘 Learn More about the Frontend
⌨️ CLI
To make it as easy as possible to use all of the tools offered by the repository, a CLI is included at the root of the repo:
$ ./run
Usage: cli.py [OPTIONS] COMMAND [ARGS]...
Options:
--help Show this message and exit.
Commands:
agent Commands to create, start and stop agents
benchmark Commands to start the benchmark and list tests and categories
setup Installs dependencies needed for your system.
Just clone the repo, install dependencies with ./run setup, and you should be good to go!
🤔 Questions? Problems? Suggestions?
Get help - Discord 💬
To report a bug or request a feature, create a GitHub Issue. Please ensure someone else hasn’t created an issue for the same topic.
🤝 Sister projects
🔄 Agent Protocol
To maintain a uniform standard and ensure seamless compatibility with many current and future applications, AutoGPT employs the agent protocol standard by the AI Engineer Foundation. This standardizes the communication pathways from your agent to the frontend and benchmark.