Skip to content

Bump esbuild, @storybook/addon-essentials, @storybook/addon-interactions, @storybook/addon-styling, @storybook/blocks, @storybook/react, @storybook/react-webpack5 and storybook in /docs #2827

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

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 7, 2025

Bumps esbuild to 0.25.2 and updates ancestor dependencies esbuild, @storybook/addon-essentials, @storybook/addon-interactions, @storybook/addon-styling, @storybook/blocks, @storybook/react, @storybook/react-webpack5 and storybook. These dependencies need to be updated together.

Updates esbuild from 0.17.19 to 0.25.2

Release notes

Sourced from esbuild's releases.

v0.25.2

  • Support flags in regular expressions for the API (#4121)

    The JavaScript plugin API for esbuild takes JavaScript regular expression objects for the filter option. Internally these are translated into Go regular expressions. However, this translation previously ignored the flags property of the regular expression. With this release, esbuild will now translate JavaScript regular expression flags into Go regular expression flags. Specifically the JavaScript regular expression /\.[jt]sx?$/i is turned into the Go regular expression `(?i)\.[jt]sx?$` internally inside of esbuild's API. This should make it possible to use JavaScript regular expressions with the i flag. Note that JavaScript and Go don't support all of the same regular expression features, so this mapping is only approximate.

  • Fix node-specific annotations for string literal export names (#4100)

    When node instantiates a CommonJS module, it scans the AST to look for names to expose via ESM named exports. This is a heuristic that looks for certain patterns such as exports.NAME = ... or module.exports = { ... }. This behavior is used by esbuild to "annotate" CommonJS code that was converted from ESM with the original ESM export names. For example, when converting the file export let foo, bar from ESM to CommonJS, esbuild appends this to the end of the file:

    // Annotate the CommonJS export names for ESM import in node:
    0 && (module.exports = {
      bar,
      foo
    });

    However, this feature previously didn't work correctly for export names that are not valid identifiers, which can be constructed using string literal export names. The generated code contained a syntax error. That problem is fixed in this release:

    // Original code
    let foo
    export { foo as "foo!" }
    // Old output (with --format=cjs --platform=node)
    ...
    0 && (module.exports = {
    "foo!"
    });
    // New output (with --format=cjs --platform=node)
    ...
    0 && (module.exports = {
    "foo!": null
    });

  • Basic support for index source maps (#3439, #4109)

    The source map specification has an optional mode called index source maps that makes it easier for tools to create an aggregate JavaScript file by concatenating many smaller JavaScript files with source maps, and then generate an aggregate source map by simply providing the original source maps along with some offset information. My understanding is that this is rarely used in practice. I'm only aware of two uses of it in the wild: ClojureScript and Turbopack.

    This release provides basic support for indexed source maps. However, the implementation has not been tested on a real app (just on very simple test input). If you are using index source maps in a real app, please try this out and report back if anything isn't working for you.

    Note that this is also not a complete implementation. For example, index source maps technically allows nesting source maps to an arbitrary depth, while esbuild's implementation in this release only supports a single level of nesting. It's unclear whether supporting more than one level of nesting is important or not given the lack of available test cases.

    This feature was contributed by @​clyfish.

v0.25.1

... (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-essentials from 7.0.27 to 8.6.12

Release notes

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

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

v8.6.7

8.6.7

v8.6.6

8.6.6

v8.6.5

8.6.5

... (truncated)

Changelog

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

8.6.12

8.6.11

8.6.10

8.6.9

8.6.8

8.6.7

8.6.6

8.6.5

... (truncated)

Commits
  • 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]
  • d826042 Bump version from "8.6.3" to "8.6.4" [skip ci]
  • d4e73f5 Bump version from "8.6.2" to "8.6.3" [skip ci]
  • 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/addon-interactions from 7.0.27 to 7.6.20

Changelog

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

7.6.20

7.6.19

7.6.18

7.6.17

7.6.16

  • Addon Themes: Make type generic less strict - #26042, thanks @​yannbf!
  • Interaction: Make sure that adding spies doesn't cause infinite loops with self referencing args #26019, thanks @​kasperpeulen!

7.6.15

This release accidentally didn't contain anything.

7.6.14

7.6.13

7.6.12

  • CLI: Fix upgrade detecting the wrong version of existing Storybooks - #25752, thanks @​JReinhold!

7.6.11

7.6.10

... (truncated)

Commits
  • 1fe1c39 Bump version from 7.6.19 to 7.6.20 [skip ci]
  • 0264a14 Bump version from 7.6.18 to 7.6.19 (manual) [skip ci]
  • 5622242 Bump version from 7.6.17 to 7.6.18 MANUALLY (again)
  • 6e6cbcf temporarily decrease version number for CI
  • 2f3744f Bump version from 7.6.17 to 7.6.18 MANUALLY
  • 60bf2b5 Bump version from "7.6.16" to "7.6.17" [skip ci]
  • 287300b Bump version from "7.6.15" to "7.6.16" [skip ci]
  • 91a8921 Revert 24451
  • 8bcc3b4 Bump version from "7.6.14" to "7.6.15" [skip ci]
  • 8d42c55 Bump version from "7.6.13" to "7.6.14" [skip ci]
  • Additional commits viewable in compare view
Maintainer changes

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


Updates @storybook/addon-styling from 1.3.3 to 2.0.0

Release notes

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

v1.3.7

🐛 Bug Fix

Authors: 1

v1.3.6

🐛 Bug Fix

Authors: 1

v1.3.5

🐛 Bug Fix

🏠 Internal

Authors: 2

v1.3.4

🐛 Bug Fix

Authors: 1

Changelog

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

v1.3.7 (Fri Aug 25 2023)

🐛 Bug Fix

Authors: 1


v1.3.6 (Wed Aug 09 2023)

🐛 Bug Fix

Authors: 1


v1.3.5 (Fri Jul 28 2023)

🐛 Bug Fix

🏠 Internal

Authors: 2


v1.3.4 (Fri Jul 14 2023)

🐛 Bug Fix

Authors: 1

... (truncated)

Commits

Updates @storybook/blocks from 7.0.27 to 8.6.12

Release notes

Sourced from @​storybook/blocks's releases.

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

v8.6.7

8.6.7

v8.6.6

8.6.6

v8.6.5

8.6.5

... (truncated)

Changelog

Sourced from @​storybook/blocks's changelog.

8.6.12

8.6.11

8.6.10

8.6.9

8.6.8

8.6.7

8.6.6

8.6.5

... (truncated)

Commits
  • 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]
  • 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]
  • d826042 Bump version from "8.6.3" to "8.6.4" [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.0.27 to 8.6.12

Release notes

Sourced from @​storybook/react's releases.

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

v8.6.7

8.6.7

v8.6.6

8.6.6

v8.6.5

8.6.5

... (truncated)

Changelog

Sourced from @​storybook/react's changelog.

8.6.12

8.6.11

8.6.10

8.6.9

8.6.8

8.6.7

8.6.6

8.6.5

... (truncated)

Commits
  • 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]
  • c988182 Merge pull request #30929 from storybookjs/kasper/fix-act
  • 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]
  • 623184b Merge pull request #30847 from storybookjs/kasper/ssr-portable-stories
  • 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/react since your current version.


Updates @storybook/react-webpack5 from 7.0.27 to 8.6.12

Release notes

Sourced from @​storybook/react-webpack5's releases.

v8.6.12

8.6.12

  • CLI: Only install Visual Test Addon if test feature is selected - #30966, thanks @​ghengeveld!
  • Core: Fix telemetry error on Storybook UI - #30953, thanks @​yannbf!
  • Ember: Fix ember-template-compiler import for ember 6+ - #30682, thanks @​leoeuclids!
  • Next: Upgrade vite-plugin-storybook-nextjs for Next v14 compatibility - #30997, thanks @​kasperpeulen!
  • Svelte: Exclude node_modules from docgen -

…ons, @storybook/addon-styling, @storybook/blocks, @storybook/react, @storybook/react-webpack5 and storybook

Bumps [esbuild](https://github.com/evanw/esbuild) to 0.25.2 and updates ancestor dependencies [esbuild](https://github.com/evanw/esbuild), [@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials), [@storybook/addon-interactions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/interactions), [@storybook/addon-styling](https://github.com/storybookjs/addon-styling), [@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-webpack5](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-webpack5) and [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli). These dependencies need to be updated together.


Updates `esbuild` from 0.17.19 to 0.25.2
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2023.md)
- [Commits](evanw/esbuild@v0.17.19...v0.25.2)

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

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

Updates `@storybook/addon-styling` from 1.3.3 to 2.0.0
- [Release notes](https://github.com/storybookjs/addon-styling/releases)
- [Changelog](https://github.com/storybookjs/addon-styling/blob/main/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/addon-styling/commits)

Updates `@storybook/blocks` from 7.0.27 to 8.6.12
- [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.12/code/lib/blocks)

Updates `@storybook/react` from 7.0.27 to 8.6.12
- [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.12/code/renderers/react)

Updates `@storybook/react-webpack5` from 7.0.27 to 8.6.12
- [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.12/code/frameworks/react-webpack5)

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

---
updated-dependencies:
- dependency-name: esbuild
  dependency-version: 0.25.2
  dependency-type: indirect
- dependency-name: "@storybook/addon-essentials"
  dependency-version: 8.6.12
  dependency-type: direct:production
- dependency-name: "@storybook/addon-interactions"
  dependency-version: 7.6.20
  dependency-type: direct:production
- dependency-name: "@storybook/addon-styling"
  dependency-version: 2.0.0
  dependency-type: direct:production
- dependency-name: "@storybook/blocks"
  dependency-version: 8.6.12
  dependency-type: direct:production
- dependency-name: "@storybook/react"
  dependency-version: 8.6.12
  dependency-type: direct:production
- dependency-name: "@storybook/react-webpack5"
  dependency-version: 8.6.12
  dependency-type: direct:production
- dependency-name: storybook
  dependency-version: 8.6.12
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner April 7, 2025 16:12
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 7, 2025
@dependabot dependabot bot requested a review from a team as a code owner April 7, 2025 16:12
@dependabot dependabot bot added the javascript Pull requests that update Javascript code label Apr 7, 2025
@dependabot dependabot bot requested a review from langermank April 7, 2025 16:12
Copy link

changeset-bot bot commented Apr 7, 2025

⚠️ No Changeset found

Latest commit: 228543f

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 14, 2025

OK, I won't notify you again about this release, but will get in touch when a new version is available. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/docs/multi-ec94b4f536 branch April 14, 2025 21:00
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 skip changeset
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant