Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps esbuild to 0.25.9 and updates ancestor dependencies esbuild, @angular-devkit/build-angular, @storybook/addon-docs, @storybook/addon-essentials, @storybook/angular, @storybook/blocks, ng-packagr and storybook. These dependencies need to be updated together.

Updates esbuild from 0.18.20 to 0.25.9

Release notes

Sourced from esbuild's releases.

v0.25.9

  • Better support building projects that use Yarn on Windows (#3131, #3663)

    With this release, you can now use esbuild to bundle projects that use Yarn Plug'n'Play on Windows on drives other than the C: drive. The problem was as follows:

    1. Yarn in Plug'n'Play mode on Windows stores its global module cache on the C: drive
    2. Some developers put their projects on the D: drive
    3. Yarn generates relative paths that use ../.. to get from the project directory to the cache directory
    4. Windows-style paths don't support directory traversal between drives via .. (so D:\.. is just D:)
    5. I didn't have access to a Windows machine for testing this edge case

    Yarn works around this edge case by pretending Windows-style paths beginning with C:\ are actually Unix-style paths beginning with /C:/, so the ../.. path segments are able to navigate across drives inside Yarn's implementation. This was broken for a long time in esbuild but I finally got access to a Windows machine and was able to debug and fix this edge case. So you should now be able to bundle these projects with esbuild.

  • Preserve parentheses around function expressions (#4252)

    The V8 JavaScript VM uses parentheses around function expressions as an optimization hint to immediately compile the function. Otherwise the function would be lazily-compiled, which has additional overhead if that function is always called immediately as lazy compilation involves parsing the function twice. You can read V8's blog post about this for more details.

    Previously esbuild did not represent parentheses around functions in the AST so they were lost during compilation. With this change, esbuild will now preserve parentheses around function expressions when they are present in the original source code. This means these optimization hints will not be lost when bundling with esbuild. In addition, esbuild will now automatically add this optimization hint to immediately-invoked function expressions. Here's an example:

    // Original code
    const fn0 = () => 0
    const fn1 = (() => 1)
    console.log(fn0, function() { return fn1() }())
    // Old output
    const fn0 = () => 0;
    const fn1 = () => 1;
    console.log(fn0, function() {
    return fn1();
    }());
    // New output
    const fn0 = () => 0;
    const fn1 = (() => 1);
    console.log(fn0, (function() {
    return fn1();
    })());

    Note that you do not want to wrap all function expressions in parentheses. This optimization hint should only be used for functions that are called on initial load. Using this hint for functions that are not called on initial load will unnecessarily delay the initial load. Again, see V8's blog post linked above for details.

  • Update Go from 1.23.10 to 1.23.12 (#4257, #4258)

    This should have no effect on existing code as this version change does not change Go's operating system support. It may remove certain false positive reports (specifically CVE-2025-4674 and CVE-2025-47907) from vulnerability scanners that only detect which version of the Go compiler esbuild uses.

v0.25.8

  • Fix another TypeScript parsing edge case (#4248)

    This fixes a regression with a change in the previous release that tries to more accurately parse TypeScript arrow functions inside the ?: operator. The regression specifically involves parsing an arrow function containing a #private identifier inside the middle of a ?: ternary operator inside a class body. This was fixed by propagating private identifier state into the parser clone used to speculatively parse the arrow function body. Here is an example of some affected code:

... (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 @angular-devkit/build-angular from 17.3.17 to 20.3.3

Release notes

Sourced from @​angular-devkit/build-angular's releases.

20.3.3

@​schematics/angular

Commit Description
fix - b7f92da78 add __screenshots__/ to .gitignore

@​angular/ssr

Commit Description
fix - a4c9a2007 avoid retaining rendered HTML in memory post-request

20.3.2

No release notes provided.

20.3.1

@​angular/build

Commit Description
fix - be60be499 add timestamp to bundle generation log
fix - d60f4e53d update vite to version 7.1.5

20.3.0

@​angular/cli

Commit Description
fix - f6ad41c13 improve bun lockfile detection and optimize lockfile checks

@​schematics/angular

Commit Description
fix - ef20a278d align labels in ai-config schema

@​angular-devkit/build-angular

Commit Description
fix - 1a7890873 avoid extra tick in SSR builds

@​angular/build

Commit Description
fix - 5d46d6ec1 preserve names in esbuild for improved debugging in dev mode

@​angular/ssr

Commit Description
feat - 7eacb4187 introduce BootstrapContext for isolated server-side rendering

Breaking Changes

@​angular/ssr

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

... (truncated)

Changelog

Sourced from @​angular-devkit/build-angular's changelog.

20.3.3 (2025-09-24)

@​schematics/angular

Commit Type Description
b7f92da78 fix add __screenshots__/ to .gitignore

@​angular/ssr

Commit Type Description
a4c9a2007 fix avoid retaining rendered HTML in memory post-request

21.0.0-next.4 (2025-09-17)

@​angular/build

Commit Type Description
a908bf3d4 feat add 'filter' option to unit-test builder
c0b00d78e feat add reporter output file option for unit-test
66dd6dd83 feat allow options for unit test reporters
43fc5536f fix add timestamp to bundle generation log
c6176f6df fix add upfront dependency validation for unit-test runners
69c3b1226 fix improve error handling in unit-test builder
dae732059 fix serve build assets and styles in vitest

20.3.2 (2025-09-17)

19.2.17 (2025-09-17)

@​angular/build

Commit Type Description
365d525b5 fix update vite to 6.3.6

... (truncated)

Commits
  • 2b45442 release: cut the v20.3.3 release
  • b7f92da fix(@​schematics/angular): add __screenshots__/ to .gitignore
  • 94583c5 build: update pnpm to v10.17.1
  • 3ed3b7c build: update bazel dependencies
  • a4c9a20 fix(@​angular/ssr): avoid retaining rendered HTML in memory post-request
  • 0b5cef0 refactor(@​angular/ssr): disable streaming when rendering SSG page
  • aa5581b build: update rolldown to v1.0.0-beta.38
  • d7f392b build: lock file maintenance
  • 24e1638 build: update cross-repo angular dependencies
  • 94c7ec1 build: update rules_sass digest to 4a54e0e
  • Additional commits viewable in compare view

Updates @storybook/addon-docs from 7.6.20 to 9.1.8

Release notes

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

v9.1.8

9.1.8

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

... (truncated)

Changelog

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

9.1.8

9.1.7

9.1.6

9.1.5

9.1.4

9.1.3

9.1.2

9.1.1

... (truncated)

Commits
  • 28833d4 Bump version from "9.1.7" to "9.1.8" [skip ci]
  • 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
  • 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/angular from 7.6.20 to 9.1.8

Release notes

Sourced from @​storybook/angular's releases.

v9.1.8

9.1.8

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

... (truncated)

Changelog

Sourced from @​storybook/angular's changelog.

9.1.8

9.1.7

9.1.6

9.1.5

9.1.4

9.1.3

9.1.2

9.1.1

... (truncated)

Commits
  • 28833d4 Bump version from "9.1.7" to "9.1.8" [skip ci]
  • 006b304 Bump version from "9.1.6" to "9.1.7" [skip ci]
  • aedc053 Update form component to use ngNativeValidate for improved validation handling
  • 32a783b modernize the form component for angular
  • 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]
  • 6b36e49 Merge pull request #32272 from storybookjs/kroeder/angular-config-merge-bug
  • ce39157 Bump version from "9.1.2" to "9.1.3" [skip ci]
  • 730bbf0 Merge pull request #32284 from storybookjs/shilman/package-json-keywords
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by storybook-bot, a new releaser for @​storybook/angular 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

  • CLI: Add skip onboarding, recommended/minimal config - #30930, thanks @​shilman!
  • Core: Fix using dates in expect statements - #28413, thanks @​yann-combarnous!
  • React Native Web: F...

    Description has been truncated

…addon-docs, @storybook/addon-essentials, @storybook/angular, @storybook/blocks, ng-packagr and storybook

Bumps [esbuild](https://github.com/evanw/esbuild) to 0.25.9 and updates ancestor dependencies [esbuild](https://github.com/evanw/esbuild), [@angular-devkit/build-angular](https://github.com/angular/angular-cli), [@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/angular](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/angular), [@storybook/blocks](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks), [ng-packagr](https://github.com/ng-packagr/ng-packagr) and [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/core). These dependencies need to be updated together.


Updates `esbuild` from 0.18.20 to 0.25.9
- [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.9)

Updates `@angular-devkit/build-angular` from 17.3.17 to 20.3.3
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Changelog](https://github.com/angular/angular-cli/blob/main/CHANGELOG.md)
- [Commits](angular/angular-cli@17.3.17...20.3.3)

Updates `@storybook/addon-docs` from 7.6.20 to 9.1.8
- [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.8/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/angular` from 7.6.20 to 9.1.8
- [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.8/code/frameworks/angular)

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 `ng-packagr` from 17.3.0 to 20.3.0
- [Release notes](https://github.com/ng-packagr/ng-packagr/releases)
- [Changelog](https://github.com/ng-packagr/ng-packagr/blob/20.3.0/CHANGELOG.md)
- [Commits](ng-packagr/ng-packagr@17.3.0...20.3.0)

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

---
updated-dependencies:
- dependency-name: esbuild
  dependency-version: 0.25.9
  dependency-type: indirect
- dependency-name: "@angular-devkit/build-angular"
  dependency-version: 20.3.3
  dependency-type: direct:development
- dependency-name: "@storybook/addon-docs"
  dependency-version: 9.1.8
  dependency-type: direct:development
- dependency-name: "@storybook/addon-essentials"
  dependency-version: 8.6.14
  dependency-type: direct:development
- dependency-name: "@storybook/angular"
  dependency-version: 9.1.8
  dependency-type: direct:development
- dependency-name: "@storybook/blocks"
  dependency-version: 8.6.14
  dependency-type: direct:development
- dependency-name: ng-packagr
  dependency-version: 20.3.0
  dependency-type: direct:development
- dependency-name: storybook
  dependency-version: 9.1.8
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 29, 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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant