Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps-dev): bump the js-deps group across 1 directory with 38 updates #4287

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

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the js-deps group with 38 updates in the / directory:

Package From To
@apollo/client 3.12.4 3.13.1
@babel/core 7.26.0 7.26.9
@codemirror/commands 6.7.1 6.8.0
@codemirror/state 6.5.0 6.5.2
@codemirror/view 6.36.1 6.36.3
@playwright/test 1.49.1 1.50.1
@storybook/addon-essentials 8.4.7 8.6.3
@storybook/addon-interactions 8.4.7 8.6.3
@storybook/addon-links 8.4.7 8.6.3
@storybook/blocks 8.4.7 8.6.3
@storybook/preview-api 8.4.7 8.6.3
@storybook/react 8.4.7 8.6.3
@storybook/react-vite 8.4.7 8.6.3
@storybook/test 8.4.7 8.6.3
@storybook/test-runner 0.21.0 0.22.0
@storybook/types 8.4.7 8.6.3
@types/k6 0.54.2 0.57.1
@types/lodash 4.17.14 4.17.16
@types/node 22.10.5 22.13.8
@typescript-eslint/eslint-plugin 8.19.0 8.25.0
@typescript-eslint/parser 8.19.0 8.25.0
@uiw/codemirror-theme-vscode 4.23.7 4.23.9
@uiw/react-codemirror 4.23.7 4.23.9
eslint-plugin-prettier 5.2.1 5.2.3
eslint-plugin-react 7.37.3 7.37.4
eslint-plugin-storybook 0.11.2 0.11.3
fuse.js 7.0.0 7.1.0
glob 11.0.0 11.0.1
msw 2.7.0 2.7.3
prettier 3.4.2 3.5.2
react-big-calendar 1.17.1 1.18.0
@types/react-big-calendar 1.16.0 1.16.1
recharts 2.15.0 2.15.1
remark-gfm 4.0.0 4.0.1
semver 7.6.3 7.7.1
storybook 8.4.7 8.6.3
stylelint 16.12.0 16.15.0
typescript 5.7.2 5.8.2

Updates @apollo/client from 3.12.4 to 3.13.1

Release notes

Sourced from @​apollo/client's releases.

v3.13.1

Patch Changes

v3.13.0

Apollo Client v3.13.0 introduces a new hook, useSuspenseFragment, as a drop-in replacement for useFragment in apps that are using React Suspense. This is the “last” React hook we are introducing in 3.x - we think this rounds out the “big concepts” in our React Suspense and GraphQL fragment story. See the docs for information on this and our other Suspense-supporting hooks. There are some TypeScript quality-of-life improvements shipped in this release for observableQuery.updateQuery and subscribeToMore. Additionally, the return type of updateQuery now includes undefined to allow an early exit from updates. This was always supported at runtime, but was missed on the TypeScript side. On the runtime side, we’ve fixed query deduplication behavior for multipart responses and corrected the error handling in useMutation callbacks. onCompleted and onError in useQuery and useLazyQuery have been deprecated for multiple reasons. See below for full details 👀

Minor Changes

  • #12066 c01da5d Thanks @​jerelmiller! - Adds a new useSuspenseFragment hook.

    useSuspenseFragment suspends until data is complete. It is a drop-in replacement for useFragment when you prefer to use Suspense to control the loading state of a fragment. See the documentation for more details.

  • #12174 ba5cc33 Thanks @​jerelmiller! - Ensure errors thrown in the onCompleted callback from useMutation don't call onError.

  • #12340 716d02e Thanks @​phryneas! - Deprecate the onCompleted and onError callbacks of useQuery and useLazyQuery. For more context, please see the related issue on GitHub.

  • #12276 670f112 Thanks @​Cellule! - Provide a more type-safe option for the previous data value passed to observableQuery.updateQuery. Using it could result in crashes at runtime as this callback could be called with partial data even though its type reported the value as a complete result.

    The updateQuery callback function is now called with a new type-safe previousData property and a new complete property in the 2nd argument that determines whether previousData is a complete or partial result.

    As a result of this change, it is recommended to use the previousData property passed to the 2nd argument of the callback rather than using the previous data value from the first argument since that value is not type-safe. The first argument is now deprecated and will be removed in a future version of Apollo Client.

    observableQuery.updateQuery(
      (unsafePreviousData, { previousData, complete }) => {
        previousData;
        // ^? TData | DeepPartial<TData> | undefined
    if (complete) {
      previousData;
      // ^? TData
    } else {
      previousData;
      // ^? DeepPartial&lt;TData&gt; | undefined
    }
    
    }
    );

  • #12174 ba5cc33 Thanks @​jerelmiller! - Reject the mutation promise if errors are thrown in the onCompleted callback of useMutation.

Patch Changes

  • #12276 670f112 Thanks @​Cellule! - Fix the return type of the updateQuery function to allow for undefined. updateQuery had the ability to bail out of the update by returning a falsey value, but the return type enforced a query value.

... (truncated)

Changelog

Sourced from @​apollo/client's changelog.

3.13.1

Patch Changes

3.13.0

Minor Changes

  • #12066 c01da5d Thanks @​jerelmiller! - Adds a new useSuspenseFragment hook.

    useSuspenseFragment suspends until data is complete. It is a drop-in replacement for useFragment when you prefer to use Suspense to control the loading state of a fragment. See the documentation for more details.

  • #12174 ba5cc33 Thanks @​jerelmiller! - Ensure errors thrown in the onCompleted callback from useMutation don't call onError.

  • #12340 716d02e Thanks @​phryneas! - Deprecate the onCompleted and onError callbacks of useQuery and useLazyQuery. For more context, please see the related issue on GitHub.

  • #12276 670f112 Thanks @​Cellule! - Provide a more type-safe option for the previous data value passed to observableQuery.updateQuery. Using it could result in crashes at runtime as this callback could be called with partial data even though its type reported the value as a complete result.

    The updateQuery callback function is now called with a new type-safe previousData property and a new complete property in the 2nd argument that determines whether previousData is a complete or partial result.

    As a result of this change, it is recommended to use the previousData property passed to the 2nd argument of the callback rather than using the previous data value from the first argument since that value is not type-safe. The first argument is now deprecated and will be removed in a future version of Apollo Client.

    observableQuery.updateQuery(
      (unsafePreviousData, { previousData, complete }) => {
        previousData;
        // ^? TData | DeepPartial<TData> | undefined
    if (complete) {
      previousData;
      // ^? TData
    } else {
      previousData;
      // ^? DeepPartial&lt;TData&gt; | undefined
    }
    
    }
    );

  • #12174 ba5cc33 Thanks @​jerelmiller! - Reject the mutation promise if errors are thrown in the onCompleted callback of useMutation.

Patch Changes

  • #12276 670f112 Thanks @​Cellule! - Fix the return type of the updateQuery function to allow for undefined. updateQuery had the ability to bail out of the update by returning a falsey value, but the return type enforced a query value.

... (truncated)

Commits
  • 356fcc9 Version Packages (#12377)
  • d3f8f13 Export UseSuspenseFragmentOptions (#12375)
  • bdfc5b2 ObervableQuery.refetch: don't refetch with cache-and-network, swich to `n...
  • e93d19f Version Packages (#12372)
  • c6cac25 Merge pull request #12180 from apollographql/release-3.13
  • b30b06c Exit prerelease mode
  • 3904103 Merge branch 'main' into release-3.13
  • d71f2e8 Require variables option in useSuspenseFragment when there are required v...
  • 66dc5b9 Update ROADMAP.md
  • 27e1532 Add documentation for useSuspenseFragment (#12356)
  • Additional commits viewable in compare view

Updates @babel/core from 7.26.0 to 7.26.9

Release notes

Sourced from @​babel/core's releases.

v7.26.9 (2025-02-14)

🐛 Bug Fix

🏠 Internal

Committers: 5

v7.26.8 (2025-02-08)

🏠 Internal

  • babel-preset-env
    • #17097 Update dependency babel-plugin-polyfill-corejs3 to ^0.11.0

v7.26.7 (2025-01-24)

Thanks @​branchseer and @​tquetano-netflix for your first PRs!

🐛 Bug Fix

  • babel-helpers, babel-preset-env, babel-runtime-corejs3
  • babel-plugin-transform-typeof-symbol
  • babel-parser
  • babel-core
  • babel-plugin-transform-typescript
  • babel-plugin-transform-typescript, babel-traverse, babel-types

Committers: 6

... (truncated)

Changelog

Sourced from @​babel/core's changelog.

v7.26.9 (2025-02-14)

🐛 Bug Fix

🏠 Internal

v7.26.7 (2025-01-24)

🐛 Bug Fix

  • babel-helpers, babel-preset-env, babel-runtime-corejs3
  • babel-plugin-transform-typeof-symbol
  • babel-parser
  • babel-core
  • babel-plugin-transform-typescript
  • babel-plugin-transform-typescript, babel-traverse, babel-types

v7.26.6 (2025-01-13)

🐛 Bug Fix

  • babel-plugin-transform-nullish-coalescing-operator

v7.26.5 (2025-01-10)

👓 Spec Compliance

🐛 Bug Fix

  • babel-plugin-transform-block-scoped-functions
  • babel-plugin-transform-typescript
  • babel-parser
  • babel-generator, babel-parser, babel-plugin-transform-flow-strip-types, babel-types

... (truncated)

Commits

Updates @codemirror/commands from 6.7.1 to 6.8.0

Changelog

Sourced from @​codemirror/commands's changelog.

6.8.0 (2025-01-08)

New features

The new cursorGroupForwardWin and selectGroupForwardWin commands implement Windows-style forward motion by group.

Commits

Updates @codemirror/state from 6.5.0 to 6.5.2

Changelog

Sourced from @​codemirror/state's changelog.

6.5.2 (2025-02-03)

Bug fixes

Fix a bug where reconfiguring a field with a new init value didn't update the value of the field.

6.5.1 (2025-01-10)

Bug fixes

countColumn no longer loops infinitely when given a to that's higher than the input string's length.

Commits
  • 64cba4b Mark version 6.5.2
  • 6c7eb3d Make sure reconfigurations that change a field's init value update the field
  • aba3881 Mark version 6.5.1
  • 27e1977 Make countColumn robust to passing in an invalid end pos
  • 04a4ad7 Hide Text[Symbol.iterator] from docs
  • See full diff in compare view

Updates @codemirror/view from 6.36.1 to 6.36.3

Changelog

Sourced from @​codemirror/view's changelog.

6.36.3 (2025-02-18)

Bug fixes

Make sure event handlers registered with domEventHandlers are not called during view updates, to avoid triggering nested update errors.

Don't include the window scrollbars in the space available for displaying tooltips.

Work around an issue with Chrome's EditContext that shows up when using autocompletion while composing with Samsung's virtual Android keyboard.

6.36.2 (2025-01-09)

Bug fixes

Fix an issue where some kinds of relayouts could put the editor in a state where it believed it wasn't in window, preventing relayout, though it in fact was.

Make sure macOS double-space-to-period conversions are properly suppressed.

Fix an issue where native selection changes, such as mobile spacebar-drag, weren't being picked up in edit context mode.

Commits
  • 68ea201 Mark version 6.36.3
  • ee2c8aa Limit EditContext change-while-composition trick
  • 4bdec39 Don't include window scrollbars in the space available for tooltips
  • 22860a1 Delay dispatch of DOM events during view updates
  • b20446d Mark version 6.36.2
  • 4415fa9 React to selection-only changes in the edit context
  • 9c77d6d Fix double-space-to-period supppression on macOS Chrome
  • 26af8ea Fix macOS double-space-period suppression on Firefox
  • 3dca895 Drop use of event type no longer supported by TS definitions
  • 495a461 Add a usage section to readme
  • Additional commits viewable in compare view

Updates @playwright/test from 1.49.1 to 1.50.1

Release notes

Sourced from @​playwright/test's releases.

v1.50.1

Highlights

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

Browser Versions

  • Chromium 133.0.6943.16
  • Mozilla Firefox 134.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 132
  • Microsoft Edge 132

v1.50.0

Test runner

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

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

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

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

... (truncated)

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

This version was pushed to npm by dgozman-ms, a new releaser for @​playwright/test since your current version.


Updates @storybook/addon-essentials from 8.4.7 to 8.6.3

Release notes

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

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.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
  • 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]
  • 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-interactions from 8.4.7 to 8.6.3

Release notes

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

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

8.6.2

8....

Description has been truncated

…dates

Bumps the js-deps group with 38 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@apollo/client](https://github.com/apollographql/apollo-client) | `3.12.4` | `3.13.1` |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.26.0` | `7.26.9` |
| [@codemirror/commands](https://github.com/codemirror/commands) | `6.7.1` | `6.8.0` |
| [@codemirror/state](https://github.com/codemirror/state) | `6.5.0` | `6.5.2` |
| [@codemirror/view](https://github.com/codemirror/view) | `6.36.1` | `6.36.3` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.49.1` | `1.50.1` |
| [@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials) | `8.4.7` | `8.6.3` |
| [@storybook/addon-interactions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/interactions) | `8.4.7` | `8.6.3` |
| [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links) | `8.4.7` | `8.6.3` |
| [@storybook/blocks](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks) | `8.4.7` | `8.6.3` |
| [@storybook/preview-api](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/preview-api) | `8.4.7` | `8.6.3` |
| [@storybook/react](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react) | `8.4.7` | `8.6.3` |
| [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `8.4.7` | `8.6.3` |
| [@storybook/test](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/test) | `8.4.7` | `8.6.3` |
| [@storybook/test-runner](https://github.com/storybookjs/test-runner) | `0.21.0` | `0.22.0` |
| [@storybook/types](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/types) | `8.4.7` | `8.6.3` |
| [@types/k6](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/k6) | `0.54.2` | `0.57.1` |
| [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) | `4.17.14` | `4.17.16` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.5` | `22.13.8` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.19.0` | `8.25.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.19.0` | `8.25.0` |
| [@uiw/codemirror-theme-vscode](https://github.com/uiwjs/react-codemirror) | `4.23.7` | `4.23.9` |
| [@uiw/react-codemirror](https://github.com/uiwjs/react-codemirror) | `4.23.7` | `4.23.9` |
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | `5.2.1` | `5.2.3` |
| [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) | `7.37.3` | `7.37.4` |
| [eslint-plugin-storybook](https://github.com/storybookjs/eslint-plugin-storybook) | `0.11.2` | `0.11.3` |
| [fuse.js](https://github.com/krisk/Fuse) | `7.0.0` | `7.1.0` |
| [glob](https://github.com/isaacs/node-glob) | `11.0.0` | `11.0.1` |
| [msw](https://github.com/mswjs/msw) | `2.7.0` | `2.7.3` |
| [prettier](https://github.com/prettier/prettier) | `3.4.2` | `3.5.2` |
| [react-big-calendar](https://github.com/jquense/react-big-calendar) | `1.17.1` | `1.18.0` |
| [@types/react-big-calendar](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-big-calendar) | `1.16.0` | `1.16.1` |
| [recharts](https://github.com/recharts/recharts) | `2.15.0` | `2.15.1` |
| [remark-gfm](https://github.com/remarkjs/remark-gfm) | `4.0.0` | `4.0.1` |
| [semver](https://github.com/npm/node-semver) | `7.6.3` | `7.7.1` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) | `8.4.7` | `8.6.3` |
| [stylelint](https://github.com/stylelint/stylelint) | `16.12.0` | `16.15.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.2` | `5.8.2` |



Updates `@apollo/client` from 3.12.4 to 3.13.1
- [Release notes](https://github.com/apollographql/apollo-client/releases)
- [Changelog](https://github.com/apollographql/apollo-client/blob/main/CHANGELOG.md)
- [Commits](apollographql/apollo-client@v3.12.4...v3.13.1)

Updates `@babel/core` from 7.26.0 to 7.26.9
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.26.9/packages/babel-core)

Updates `@codemirror/commands` from 6.7.1 to 6.8.0
- [Changelog](https://github.com/codemirror/commands/blob/main/CHANGELOG.md)
- [Commits](codemirror/commands@6.7.1...6.8.0)

Updates `@codemirror/state` from 6.5.0 to 6.5.2
- [Changelog](https://github.com/codemirror/state/blob/main/CHANGELOG.md)
- [Commits](codemirror/state@6.5.0...6.5.2)

Updates `@codemirror/view` from 6.36.1 to 6.36.3
- [Changelog](https://github.com/codemirror/view/blob/main/CHANGELOG.md)
- [Commits](codemirror/view@6.36.1...6.36.3)

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

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

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

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

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

Updates `@storybook/preview-api` from 8.4.7 to 8.6.3
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.6.3/code/lib/preview-api)

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

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

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

Updates `@storybook/test-runner` from 0.21.0 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.0...v0.22.0)

Updates `@storybook/types` from 8.4.7 to 8.6.3
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.6.3/code/lib/types)

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

Updates `@types/lodash` from 4.17.14 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.10.5 to 22.13.8
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@typescript-eslint/eslint-plugin` from 8.19.0 to 8.25.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.25.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.19.0 to 8.25.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.25.0/packages/parser)

Updates `@uiw/codemirror-theme-vscode` from 4.23.7 to 4.23.9
- [Release notes](https://github.com/uiwjs/react-codemirror/releases)
- [Commits](uiwjs/react-codemirror@v4.23.7...v4.23.9)

Updates `@uiw/react-codemirror` from 4.23.7 to 4.23.9
- [Release notes](https://github.com/uiwjs/react-codemirror/releases)
- [Commits](uiwjs/react-codemirror@v4.23.7...v4.23.9)

Updates `eslint-plugin-prettier` from 5.2.1 to 5.2.3
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/master/CHANGELOG.md)
- [Commits](prettier/eslint-plugin-prettier@v5.2.1...v5.2.3)

Updates `eslint-plugin-react` from 7.37.3 to 7.37.4
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-react@v7.37.3...v7.37.4)

Updates `eslint-plugin-storybook` from 0.11.2 to 0.11.3
- [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.3)

Updates `fuse.js` from 7.0.0 to 7.1.0
- [Release notes](https://github.com/krisk/Fuse/releases)
- [Changelog](https://github.com/krisk/Fuse/blob/main/CHANGELOG.md)
- [Commits](krisk/Fuse@v7.0.0...v7.1.0)

Updates `glob` from 11.0.0 to 11.0.1
- [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md)
- [Commits](isaacs/node-glob@v11.0.0...v11.0.1)

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 `prettier` from 3.4.2 to 3.5.2
- [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.2)

Updates `react-big-calendar` from 1.17.1 to 1.18.0
- [Release notes](https://github.com/jquense/react-big-calendar/releases)
- [Changelog](https://github.com/jquense/react-big-calendar/blob/master/CHANGELOG.md)
- [Commits](jquense/react-big-calendar@v1.17.1...v1.18.0)

Updates `@types/react-big-calendar` from 1.16.0 to 1.16.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-big-calendar)

Updates `recharts` from 2.15.0 to 2.15.1
- [Release notes](https://github.com/recharts/recharts/releases)
- [Changelog](https://github.com/recharts/recharts/blob/3.x/CHANGELOG.md)
- [Commits](recharts/recharts@v2.15.0...v2.15.1)

Updates `remark-gfm` from 4.0.0 to 4.0.1
- [Release notes](https://github.com/remarkjs/remark-gfm/releases)
- [Commits](remarkjs/remark-gfm@4.0.0...4.0.1)

Updates `semver` from 7.6.3 to 7.7.1
- [Release notes](https://github.com/npm/node-semver/releases)
- [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md)
- [Commits](npm/node-semver@v7.6.3...v7.7.1)

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

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

Updates `typescript` from 5.7.2 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.2...v5.8.2)

---
updated-dependencies:
- dependency-name: "@apollo/client"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-deps
- dependency-name: "@babel/core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-deps
- dependency-name: "@codemirror/commands"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-deps
- dependency-name: "@codemirror/state"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-deps
- dependency-name: "@codemirror/view"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-deps
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-deps
- dependency-name: "@storybook/addon-essentials"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-deps
- dependency-name: "@storybook/addon-interactions"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-deps
- dependency-name: "@storybook/addon-links"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-deps
- dependency-name: "@storybook/blocks"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-deps
- dependency-name: "@storybook/preview-api"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-deps
- dependency-name: "@storybook/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-deps
- dependency-name: "@storybook/react-vite"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-deps
- dependency-name: "@storybook/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-deps
- dependency-name: "@storybook/test-runner"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-deps
- dependency-name: "@storybook/types"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-deps
- dependency-name: "@types/k6"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-deps
- dependency-name: "@types/lodash"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-deps
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-deps
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-deps
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-deps
- dependency-name: "@uiw/codemirror-theme-vscode"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-deps
- dependency-name: "@uiw/react-codemirror"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-deps
- dependency-name: eslint-plugin-prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-deps
- dependency-name: eslint-plugin-react
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-deps
- dependency-name: eslint-plugin-storybook
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-deps
- dependency-name: fuse.js
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-deps
- dependency-name: glob
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-deps
- dependency-name: msw
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-deps
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-deps
- dependency-name: react-big-calendar
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-deps
- dependency-name: "@types/react-big-calendar"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-deps
- dependency-name: recharts
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-deps
- dependency-name: remark-gfm
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-deps
- dependency-name: semver
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-deps
- dependency-name: storybook
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-deps
- dependency-name: stylelint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-deps
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 1, 2025
@github-actions github-actions bot added the size/s label Mar 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code size/s
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants