Skip to content

chore(deps): bump esbuild, @angular-devkit/build-angular and ng-packagr in /packages/desktop-app#586

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/packages/desktop-app/multi-0f79a0fadd
Open

chore(deps): bump esbuild, @angular-devkit/build-angular and ng-packagr in /packages/desktop-app#586
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/packages/desktop-app/multi-0f79a0fadd

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 22, 2025

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

Updates esbuild from 0.17.8 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 15.2.9 to 20.2.0

Release notes

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

20.2.0

@​schematics/angular

Commit Description
feat - 2e3cfd598 add migration to remove default Karma configurations
feat - d80dae276 add schematics to generate ai context files.
fix - ffe6fb916 allow AI config prompt to be skipped without selecting a value
fix - ae2802b7d improve AI config prompt wording
fix - b017f84fd improve coverage directory handling for Karma configuration comparisons
fix - 6a79f9a75 zoneless is now stable

@​angular/cli

Commit Description
feat - b4de9a1bf add --experimental-tool option to mcp command
feat - 755ba70fd add --local-only option to mcp command
feat - 59d7ef343 add --read-only option to mcp command
feat - 4e92eb6f1 add modernize tool to the MCP server
fix - a3b25f675 add choices to command line parser when type is array and has an enum
fix - e19eee614 address Node.js deprecation DEP0190
fix - 4ee6f327a apply default to array types
fix - 8ba6b0bcc use correct path for MCP get_best_practices tool

@​angular-devkit/schematics

Commit Description
fix - c43504d8d address Node.js deprecation DEP0190

@​angular/build

Commit Description
feat - fb06bb505 add headless mode for vitest browser mode

20.2.0-rc.1

@​schematics/angular

Commit Description
fix - ffe6fb916 allow AI config prompt to be skipped without selecting a value
fix - 6a79f9a75 zoneless is now stable

@​angular/cli

Commit Description
fix - 8ba6b0bcc use correct path for MCP get_best_practices tool

20.2.0-rc.0

@​schematics/angular

Commit Description
feat - 2e3cfd598 add migration to remove default Karma configurations
feat - d80dae276 add schematics to generate ai context files.
fix - 6a78ef0ce add extra prettier config
fix - e46d9c54f correct configure the typeSeparator in the library schematic
fix - b017f84fd improve coverage directory handling for Karma configuration comparisons

... (truncated)

Changelog

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

20.2.0 (2025-08-20)

@​angular/cli

Commit Type Description
b4de9a1bf feat add --experimental-tool option to mcp command
755ba70fd feat add --local-only option to mcp command
59d7ef343 feat add --read-only option to mcp command
4e92eb6f1 feat add modernize tool to the MCP server
a3b25f675 fix add choices to command line parser when type is array and has an enum
e19eee614 fix address Node.js deprecation DEP0190
4ee6f327a fix apply default to array types
8ba6b0bcc fix use correct path for MCP get_best_practices tool

@​schematics/angular

Commit Type Description
2e3cfd598 feat add migration to remove default Karma configurations
d80dae276 feat add schematics to generate ai context files.
ffe6fb916 fix allow AI config prompt to be skipped without selecting a value
ae2802b7d fix improve AI config prompt wording
b017f84fd fix improve coverage directory handling for Karma configuration comparisons
6a79f9a75 fix zoneless is now stable

@​angular-devkit/schematics

Commit Type Description
c43504d8d fix address Node.js deprecation DEP0190

@​angular/build

Commit Type Description
fb06bb505 feat add headless mode for vitest browser mode

20.1.6 (2025-08-13)

@​schematics/angular

Commit Type Description
584bc1d41 fix add extra prettier config
02b0506fd fix correct configure the typeSeparator in the library schematic

... (truncated)

Commits
  • 6d139a5 release: cut the v20.2.0 release
  • 344f8b2 build: update Angular versions to 20.2 stable version.
  • 765206d build: update @angular/ng-dev to 4fead3666abc9c5dfff101a8bfdc7a2d02f78982
  • a30f662 Revert "refactor(@​angular/ssr): add workaround for router `lastSuccessfulNavi...
  • fe073a7 refactor(@​angular/cli): use main element extraction for MCP doc search
  • 533ba46 refactor(@​angular/cli): improve discoverability of mcp server options
  • ff719d2 build: add missing @angular/create package.json to npm_translate_lock data
  • 6a83e70 ci: improve error message in validation script
  • ce2d32e build: fix node.js toolchains setup
  • 73fc157 build: move from using WORKSPACE to MODULE.bazel
  • Additional commits viewable in compare view

Updates ng-packagr from 15.2.2 to 20.2.0

Release notes

Sourced from ng-packagr's releases.

20.2.0

Features

  • Add support for TypeScript 5.9

20.2.0-rc.0

No release notes provided.

20.1.0

Bug Fixes

  • prevent 'Unexpected non-whitespace character' error (dfb51b2), closes #3080

20.1.0-rc.0

Bug Fixes

  • prevent 'Unexpected non-whitespace character' error (dfb51b2), closes #3080

20.0.1

Bug Fixes

  • prevent 'Unexpected non-whitespace character' error (d2701fa), closes #3080

20.0.0

⚠ BREAKING CHANGES

  • Node.js versions from 22.0 to 22.10 are no longer supported
  • Node.js v18 is no longer supported
  • TypeScript versions less than 5.8 are no longer supported.

Features

  • expand browser support to widely available Baseline (94f7fbe)
  • add DTS bundles for entry-points (ca9d568), closes #139
  • support Angular version 20 (cebe060)
  • drop support for TypeScript older than 5.8 (a8255ce)
  • support Sass package importers (f767d3c)

Bug Fixes

  • correctly resolve SCSS resources from nested paths (f34a73d), closes #3006
  • correctly update reference to bin (e73db8e), closes #3062
  • update min Node.js support to 20.19, 22.12, and 24.0 (5a7eac4)
  • ensure in package .browserslistrc is correctly resolved (14ed50d)
  • prevent nested CSS in components (e2d9ef0)

... (truncated)

Changelog

Sourced from ng-packagr's changelog.

20.2.0 (2025-08-20)

Features

  • Add support for TypeScript 5.9

20.2.0-next.0 (2025-07-16)

⚠ BREAKING CHANGES

  • Node.js versions from 22.0 to 22.10 are no longer supported
  • Node.js v18 is no longer supported
  • TypeScript versions less than 5.8 are no longer supported.

Features

  • add DTS bundles for entry-points (ca9d568), closes #139
  • drop support for TypeScript older than 5.8 (a8255ce)
  • expand browser support to widely available Baseline (94f7fbe)
  • support Angular version 20 (cebe060)
  • support Sass package importers (f767d3c)

Bug Fixes

  • correctly resolve SCSS resources from nested paths (f34a73d), closes #3006
  • correctly update reference to bin (e73db8e), closes #3062
  • disable emitting empty chunk warning (638c107)
  • disable TypeScript composite option with Angular compiler (5dfbdba)
  • ensure in package .browserslistrc is correctly resolved (14ed50d)
  • prevent 'Unexpected non-whitespace character' error (dfb51b2), closes #3080
  • prevent nested CSS in components (e2d9ef0)
  • remove Node.js v18 support (69d9d9e)
  • update min Node.js support to 20.19, 22.12, and 24.0 (5a7eac4)
  • update minimum supported Node.js 22 version to 22.11.0 (a836a71)

Performance

  • optimize node deletion using Set (a99785c)
  • prevent redundant entry-point builds in watch mode (2f2668b), closes #2936

20.1.0 (2025-07-09)

Bug Fixes

  • prevent 'Unexpected non-whitespace character' error (dfb51b2), closes #3080

20.1.0-rc.0 (2025-07-01)

... (truncated)

Commits
  • eac0105 release: cut 20.2.0
  • e408149 build: update pnpm to v10.15.0
  • 6dbc355 Update package.json
  • 8484b0b build: lock file maintenance
  • 0f5c7d9 build: update cross-repo angular dependencies
  • 1cf4ff2 build: replace file:// with link://
  • 182e320 build: update all non-major dependencies to v8.39.1
  • d472d75 release: cut 20.2.0-rc.0
  • b8f75ca build: update pnpm to v10
  • e3fc71d build: lock file maintenance
  • Additional commits viewable in compare view

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 commands and options

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 22, 2025
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) and [ng-packagr](https://github.com/ng-packagr/ng-packagr). These dependencies need to be updated together.


Updates `esbuild` from 0.17.8 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.17.8...v0.25.9)

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

Updates `ng-packagr` from 15.2.2 to 20.2.0
- [Release notes](https://github.com/ng-packagr/ng-packagr/releases)
- [Changelog](https://github.com/ng-packagr/ng-packagr/blob/main/CHANGELOG.md)
- [Commits](ng-packagr/ng-packagr@15.2.2...20.2.0)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-version: 0.25.9
  dependency-type: indirect
- dependency-name: "@angular-devkit/build-angular"
  dependency-version: 20.2.0
  dependency-type: direct:development
- dependency-name: ng-packagr
  dependency-version: 20.2.0
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/packages/desktop-app/multi-0f79a0fadd branch from abb5aee to 3cab1bc Compare August 22, 2025 09:52
@sonarqubecloud
Copy link

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.

0 participants