Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 19, 2025

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps esbuild, @storybook/addon-designs, @storybook/addon-docs, @storybook/addon-essentials, @storybook/blocks, @storybook/react, @storybook/react-native, @storybook/react-webpack5 and storybook. These dependencies needed to be updated together.
Updates esbuild from 0.18.20 to 0.25.10

Release notes

Sourced from esbuild's releases.

v0.25.10

  • Fix a panic in a minification edge case (#4287)

    This release fixes a panic due to a null pointer that could happen when esbuild inlines a doubly-nested identity function and the final result is empty. It was fixed by emitting the value undefined in this case, which avoids the panic. This case must be rare since it hasn't come up until now. Here is an example of code that previously triggered the panic (which only happened when minifying):

    function identity(x) { return x }
    identity({ y: identity(123) })
  • Fix @supports nested inside pseudo-element (#4265)

    When transforming nested CSS to non-nested CSS, esbuild is supposed to filter out pseudo-elements such as ::placeholder for correctness. The CSS nesting specification says the following:

    The nesting selector cannot represent pseudo-elements (identical to the behavior of the ':is()' pseudo-class). We’d like to relax this restriction, but need to do so simultaneously for both ':is()' and '&', since they’re intentionally built on the same underlying mechanisms.

    However, it seems like this behavior is different for nested at-rules such as @supports, which do work with pseudo-elements. So this release modifies esbuild's behavior to now take that into account:

    /* Original code */
    ::placeholder {
      color: red;
      body & { color: green }
      @supports (color: blue) { color: blue }
    }
    /* Old output (with --supported:nesting=false) */
    ::placeholder {
    color: red;
    }
    body :is() {
    color: green;
    }
    @​supports (color: blue) {
    {
    color: blue;
    }
    }
    /* New output (with --supported:nesting=false) */
    ::placeholder {
    color: red;
    }
    body :is() {
    color: green;
    }
    @​supports (color: blue) {
    ::placeholder {
    color: blue;
    }

... (truncated)

Changelog

Sourced from esbuild's changelog.

Changelog: 2023

This changelog documents all esbuild versions published in the year 2023 (versions 0.16.13 through 0.19.11).

0.19.11

  • Fix TypeScript-specific class transform edge case (#3559)

    The previous release introduced an optimization that avoided transforming super() in the class constructor for TypeScript code compiled with useDefineForClassFields set to false if all class instance fields have no initializers. The rationale was that in this case, all class instance fields are omitted in the output so no changes to the constructor are needed. However, if all of this is the case and there are #private instance fields with initializers, those private instance field initializers were still being moved into the constructor. This was problematic because they were being inserted before the call to super() (since super() is now no longer transformed in that case). This release introduces an additional optimization that avoids moving the private instance field initializers into the constructor in this edge case, which generates smaller code, matches the TypeScript compiler's output more closely, and avoids this bug:

    // Original code
    class Foo extends Bar {
      #private = 1;
      public: any;
      constructor() {
        super();
      }
    }
    // Old output (with esbuild v0.19.9)
    class Foo extends Bar {
    constructor() {
    super();
    this.#private = 1;
    }
    #private;
    }
    // Old output (with esbuild v0.19.10)
    class Foo extends Bar {
    constructor() {
    this.#private = 1;
    super();
    }
    #private;
    }
    // New output
    class Foo extends Bar {
    #private = 1;
    constructor() {
    super();
    }
    }

  • Minifier: allow reording a primitive past a side-effect (#3568)

    The minifier previously allowed reordering a side-effect past a primitive, but didn't handle the case of reordering a primitive past a side-effect. This additional case is now handled:

... (truncated)

Commits

Updates @storybook/addon-designs from 7.0.9 to 10.0.2

Release notes

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

v10.0.2

🐛 Bug Fix

Authors: 1

v10.0.2-next.0

⚠️ Pushed to next

Authors: 1

v10.0.1

🐛 Bug Fix

⚠️ Pushed to master

Authors: 2

v10.0.0

💥 Breaking Change

  • Support Storybook 9 (drops support for <= Storybook 8)

Authors: 2

v9.0.0-next.3

🐛 Bug Fix

  • Refactor imports to use @storybook/addon-docs instead of @storybook/blocks in various documentation files and update package dependencies to reflect this change. #261 (@​ndelangen)

Authors: 1

... (truncated)

Commits
  • 8e3c5b0 Update CHANGELOG.md [skip ci]
  • 83c4f65 Merge pull request #270 from roigiladi/feature/embed-kit-v2
  • 77be2a4 Update packages/storybook-addon-designs/src/manager/components/Figma.tsx
  • 31c18c2 feat(figma): change migrateEmbedURL to a cleaner createEmbedURL
  • 460b5b5 feat(figma): migrate urls to use embed kit v2
  • ae59b03 Update CHANGELOG.md [skip ci]
  • 783d1af Upgrade to Storybook 9
  • 597bc85 Merge pull request #265 from storybookjs/valentin/bump-node-version-on-ci
  • 596fd64 Use Node.js 22 on CI
  • 0454c0c Merge pull request #264 from storybookjs/valentin/fix-versions
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by valentinpalkovic, a new releaser for @​storybook/addon-designs since your current version.


Updates @storybook/addon-docs from 7.6.20 to 9.1.7

Release notes

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

v9.1.7

9.1.7

v9.1.6

9.1.6

v9.1.5

9.1.5

v9.1.4

9.1.4

v9.1.3

9.1.3

v9.1.2

9.1.2

v9.1.1

9.1.1

... (truncated)

Changelog

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

9.1.7

9.1.6

9.1.5

9.1.4

9.1.3

9.1.2

9.1.1

9.1.0

... (truncated)

Commits
  • 006b304 Bump version from "9.1.6" to "9.1.7" [skip ci]
  • 304edc3 Bump version from "9.1.5" to "9.1.6" [skip ci]
  • 56c04b0 Bump version from "9.1.4" to "9.1.5" [skip ci]
  • 9f02684 Bump version from "9.1.3" to "9.1.4" [skip ci]
  • ce39157 Bump version from "9.1.2" to "9.1.3" [skip ci]
  • 730bbf0 Merge pull request #32284 from storybookjs/shilman/package-json-keywords
  • 0f86613 Merge pull request #32287 from storybookjs/shilman/error-utm
  • 2bae930 Merge pull request #32283 from storybookjs/shilman/readme-utm-params
  • f8ff03a Merge pull request #32238 from storybookjs/sidnioulz/issue-31436-table
  • 99c205c Bump version from "9.1.1" to "9.1.2" [skip ci]
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by storybook-bot, a new releaser for @​storybook/addon-docs since your current version.


Updates @storybook/addon-essentials from 7.6.20 to 8.6.14

Release notes

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

v8.6.14

8.6.14

v8.6.13

8.6.13

v8.6.12

8.6.12

v8.6.11

8.6.11

v8.6.10

8.6.10

v8.6.9

8.6.9

v8.6.8

8.6.8

... (truncated)

Changelog

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

8.6.14

8.6.13

8.6.12

8.6.11

8.6.10

8.6.9

8.6.8

8.6.7

8.6.6

  • Angular: Make sure that polyfills are loaded before the storybook is loaded - #30811, thanks @​kasperpeulen!

... (truncated)

Commits
  • ab87178 Bump version from "8.6.13" to "8.6.14" [skip ci]
  • 8fa9049 Bump version from "8.6.12" to "8.6.13" [skip ci]
  • 1c35b29 Bump version from "8.6.11" to "8.6.12" [skip ci]
  • 2afd30d Bump version from "8.6.10" to "8.6.11" [skip ci]
  • 23d2037 Bump version from "8.6.9" to "8.6.10" [skip ci]
  • 207c2f4 Bump version from "8.6.8" to "8.6.9" [skip ci]
  • d4960ea Bump version from "8.6.7" to "8.6.8" [skip ci]
  • 019cd1f Bump version from "8.6.6" to "8.6.7" [skip ci]
  • 9a7a795 Bump version from "8.6.5" to "8.6.6" [skip ci]
  • 4e23d75 Bump version from "8.6.4" to "8.6.5" [skip ci]
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by storybook-bot, a new releaser for @​storybook/addon-essentials since your current version.


Updates @storybook/blocks from 7.6.20 to 8.6.14

Release notes

Sourced from @​storybook/blocks's releases.

v8.6.14

8.6.14

v8.6.13

8.6.13

v8.6.12

8.6.12

v8.6.11

8.6.11

v8.6.10

8.6.10

v8.6.9

8.6.9

v8.6.8

8.6.8

... (truncated)

Changelog

Sourced from @​storybook/blocks's changelog.

8.6.14

8.6.13

8.6.12

8.6.11

8.6.10

8.6.9

8.6.8

8.6.7

8.6.6

  • Angular: Make sure that polyfills are loaded before the storybook is loaded - #30811, thanks @​kasperpeulen!

... (truncated)

Commits
  • ab87178 Bump version from "8.6.13" to "8.6.14" [skip ci]
  • 8fa9049 Bump version from "8.6.12" to "8.6.13" [skip ci]
  • f1838f9 Merge pull request #27193 from H0onnn/fix/#27187
  • 1c35b29 Bump version from "8.6.11" to "8.6.12" [skip ci]
  • 2afd30d Bump version from "8.6.10" to "8.6.11" [skip ci]
  • 23d2037 Bump version from "8.6.9" to "8.6.10" [skip ci]
  • 549b913 Merge pull request #30913 from JamesIves/next
  • 207c2f4 Bump version from "8.6.8" to "8.6.9" [skip ci]
  • d4960ea Bump version from "8.6.7" to "8.6.8" [skip ci]
  • 019cd1f Bump version from "8.6.6" to "8.6.7" [skip ci]
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by storybook-bot, a new releaser for @​storybook/blocks since your current version.


Updates @storybook/react from 7.6.20 to 9.1.7

Release notes

Sourced from @​storybook/react's releases.

v9.1.7

9.1.7

v9.1.6

9.1.6

v9.1.5

9.1.5

v9.1.4

9.1.4

v9.1.3

9.1.3

v9.1.2

9.1.2

v9.1.1

9.1.1

... (truncated)

Changelog

Sourced from @​storybook/react's changelog.

9.1.7

9.1.6

  • CLI: Capture the version specifier used in create-storybook - #32344, thanks @​shilman!
  • Instrumenter: Fix userEvent.type performance regression - #32439, thanks @​ndelangen!
  • React Native Web: Fix RNW peer dependency version - #32438, thanks @​dannyhw!
  • Telemetry: Record known CLI integrations -

…ddon-docs, @storybook/addon-essentials, @storybook/blocks, @storybook/react, @storybook/react-native, @storybook/react-webpack5 and storybook

Bumps [esbuild](https://github.com/evanw/esbuild), [@storybook/addon-designs](https://github.com/storybookjs/addon-designs), [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs), [@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials), [@storybook/blocks](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks), [@storybook/react](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react), [@storybook/react-native](https://github.com/storybookjs/react-native/tree/HEAD/packages/react-native), [@storybook/react-webpack5](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-webpack5) and [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/core). These dependencies needed to be updated together.

Updates `esbuild` from 0.18.20 to 0.25.10
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2023.md)
- [Commits](evanw/esbuild@v0.18.20...v0.25.10)

Updates `@storybook/addon-designs` from 7.0.9 to 10.0.2
- [Release notes](https://github.com/storybookjs/addon-designs/releases)
- [Changelog](https://github.com/storybookjs/addon-designs/blob/master/CHANGELOG.v1-6.md)
- [Commits](storybookjs/addon-designs@v7.0.9...v10.0.2)

Updates `@storybook/addon-docs` from 7.6.20 to 9.1.7
- [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/v9.1.7/code/addons/docs)

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

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

Updates `@storybook/react` from 7.6.20 to 9.1.7
- [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/v9.1.7/code/renderers/react)

Updates `@storybook/react-native` from 7.6.20 to 9.1.2
- [Release notes](https://github.com/storybookjs/react-native/releases)
- [Changelog](https://github.com/storybookjs/react-native/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/react-native/commits/v9.1.2/packages/react-native)

Updates `@storybook/react-webpack5` from 7.6.20 to 9.1.7
- [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/v9.1.7/code/frameworks/react-webpack5)

Updates `storybook` from 7.6.20 to 9.1.7
- [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/v9.1.7/code/core)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-version: 0.25.10
  dependency-type: direct:development
- dependency-name: "@storybook/addon-designs"
  dependency-version: 10.0.2
  dependency-type: direct:development
- dependency-name: "@storybook/addon-docs"
  dependency-version: 9.1.7
  dependency-type: direct:development
- dependency-name: "@storybook/addon-essentials"
  dependency-version: 8.6.14
  dependency-type: direct:development
- dependency-name: "@storybook/blocks"
  dependency-version: 8.6.14
  dependency-type: direct:development
- dependency-name: "@storybook/react"
  dependency-version: 9.1.7
  dependency-type: direct:development
- dependency-name: "@storybook/react-native"
  dependency-version: 9.1.2
  dependency-type: direct:development
- dependency-name: "@storybook/react-webpack5"
  dependency-version: 9.1.7
  dependency-type: direct:development
- dependency-name: storybook
  dependency-version: 9.1.7
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies javascript Pull requests that update javascript code labels Sep 19, 2025
@dependabot dependabot bot requested a review from a team as a code owner September 19, 2025 15:24
@dependabot dependabot bot added dependencies javascript Pull requests that update javascript code labels Sep 19, 2025
@cloudflare-workers-and-pages
Copy link

Deploying atlantis with  Cloudflare Pages  Cloudflare Pages

Latest commit: 0e254a1
Status:🚫  Build failed.

View logs

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Development

Successfully merging this pull request may close these issues.

1 participant