Skip to content

chore: bump esbuild and @angular-devkit/build-angular#1680

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/multi-d561e21540
Open

chore: bump esbuild and @angular-devkit/build-angular#1680
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/multi-d561e21540

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Jan 12, 2026

Bumps esbuild to 0.26.0 and updates ancestor dependency @angular-devkit/build-angular. These dependencies need to be updated together.

Updates esbuild from 0.13.8 to 0.26.0

Release notes

Sourced from esbuild's releases.

v0.26.0

  • Enable trusted publishing (#4281)

    GitHub and npm are recommending that maintainers for packages such as esbuild switch to trusted publishing. With this release, a VM on GitHub will now build and publish all of esbuild's packages to npm instead of me. In theory.

    Unfortunately there isn't really a way to test that this works other than to do it live. So this release is that live test. Hopefully this release is uneventful and is exactly the same as the previous one (well, except for the green provenance attestation checkmark on npm that happens with trusted publishing).

v0.25.12

  • Fix a minification regression with CSS media queries (#4315)

    The previous release introduced support for parsing media queries which unintentionally introduced a regression with the removal of duplicate media rules during minification. Specifically the grammar for @media <media-type> and <media-condition-without-or> { ... } was missing an equality check for the <media-condition-without-or> part, so rules with different suffix clauses in this position would incorrectly compare equal and be deduplicated. This release fixes the regression.

  • Update the list of known JavaScript globals (#4310)

    This release updates esbuild's internal list of known JavaScript globals. These are globals that are known to not have side-effects when the property is accessed. For example, accessing the global Array property is considered to be side-effect free but accessing the global scrollY property can trigger a layout, which is a side-effect. This is used by esbuild's tree-shaking to safely remove unused code that is known to be side-effect free. This update adds the following global properties:

    From ES2017:

    • Atomics
    • SharedArrayBuffer

    From ES2020:

    • BigInt64Array
    • BigUint64Array

    From ES2021:

    • FinalizationRegistry
    • WeakRef

    From ES2025:

    • Float16Array
    • Iterator

    Note that this does not indicate that constructing any of these objects is side-effect free, just that accessing the identifier is side-effect free. For example, this now allows esbuild to tree-shake classes that extend from Iterator:

    // This can now be tree-shaken by esbuild:
    class ExampleIterator extends Iterator {}
  • Add support for the new @view-transition CSS rule (#4313)

    With this release, esbuild now has improved support for pretty-printing and minifying the new @view-transition rule (which esbuild was previously unaware of):

    /* Original code */
    @view-transition {
      navigation: auto;
      types: check;
    }

... (truncated)

Changelog

Sourced from esbuild's changelog.

Changelog: 2021

This changelog documents all esbuild versions published in the year 2021 (versions 0.8.29 through 0.14.10).

0.14.10

  • Enable tree shaking of classes with lowered static fields (#175)

    If the configured target environment doesn't support static class fields, they are converted into a call to esbuild's __publicField function instead. However, esbuild's tree-shaking pass treated this call as a side effect, which meant that all classes with static fields were ineligible for tree shaking. This release fixes the problem by explicitly ignoring calls to the __publicField function during tree shaking side-effect determination. Tree shaking is now enabled for these classes:

    // Original code
    class Foo { static foo = 'foo' }
    class Bar { static bar = 'bar' }
    new Bar()
    // Old output (with --tree-shaking=true --target=es6)
    class Foo {
    }
    __publicField(Foo, "foo", "foo");
    class Bar {
    }
    __publicField(Bar, "bar", "bar");
    new Bar();
    // New output (with --tree-shaking=true --target=es6)
    class Bar {
    }
    __publicField(Bar, "bar", "bar");
    new Bar();

  • Treat --define:foo=undefined as an undefined literal instead of an identifier (#1407)

    References to the global variable undefined are automatically replaced with the literal value for undefined, which appears as void 0 when printed. This allows for additional optimizations such as collapsing undefined ?? bar into just bar. However, this substitution was not done for values specified via --define:. As a result, esbuild could potentially miss out on certain optimizations in these cases. With this release, it's now possible to use --define: to substitute something with an undefined literal:

    // Original code
    let win = typeof window !== 'undefined' ? window : {}
    // Old output (with --define:window=undefined --minify)
    let win=typeof undefined!="undefined"?undefined:{};
    // New output (with --define:window=undefined --minify)
    let win={};

  • Add the --drop:debugger flag (#1809)

    Passing this flag causes all debugger; statements to be removed from the output. This is similar to the drop_debugger: true flag available in the popular UglifyJS and Terser JavaScript minifiers.

... (truncated)

Commits
  • 17ff82b publish 0.26.0 to npm
  • f87181f enable trusted publishing (#4319)
  • fdece95 some deno-related fixes
  • 38cf8bc add a dummy publish.yml
  • 208f539 publish 0.25.12 to npm
  • 5f03afd update release notes
  • 6b2ee78 minify: remove css rules containing empty :is()
  • f361deb add some additional known static methods
  • 07aa646 automatically mark "RegExp.escape()" calls as pure
  • 9039c46 simplify some call expression checks
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for esbuild since your current version.


Updates @angular-devkit/build-angular from 12.2.18 to 21.0.5

Release notes

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

21.0.5

@​schematics/angular

Commit Description
fix - cbd0718b9 move 'provideZoneChangeDetection' to the root module
fix - 33f7cf761 update application schematics for module-based apps to use 'provideZoneChangeDetection'
fix - 37b14d1f7 update default app component message
fix - c37dccb09 update default app component welcome message

@​angular/cli

Commit Description
fix - 249563749 use narrower types for new MCP TS SDK compatibility

@​angular/build

Commit Description
fix - 2b9be3a7c ensure correct project targeting during Vitest debugging

21.0.4

@​schematics/angular

Commit Description
fix - b671245b9 improve VS Code background compilation start/end detection
fix - 85a28dec7 remove inlineSources from library tsconfig template

@​angular/build

Commit Description
fix - deb4fff61 add browser condition to resolver for vitest
fix - 570ce8d3e allow non-prefixed requests when using SSR and base href
fix - 4dd3c1a32 conditionally manage Vitest UI option
fix - 4b8b7caec ensure tests run when compilation error is resolved
fix - bef4fcecb remove LmdbCacheStore export from private API

@​angular/ssr

Commit Description
fix - bb54747da add leading slash to well-known non-Angular URLs
fix - 0cfe2e749 propagate status code to redirect
fix - eadadb848 skip SSR processing for well-known non-Angular URLs like favicon.ico

21.0.3

@​angular-devkit/build-angular

Commit Description
fix - 5d85f416f conditionally provide Zone.js change detection in the built-in test main file

@​angular/build

Commit Description
fix - 778b4cffc Add custom middleware for to present an Angular-tailored message
fix - 9b02ab2ee Ensure disposal of close-javascript-transformer
fix - 0fc7d576e ensure locale base href retains leading slash (#32040)
fix - b141670a2 inject testing polyfills in Karma unit-test executor

... (truncated)

Changelog

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

21.0.5 (2026-01-07)

@​angular/cli

Commit Type Description
249563749 fix use narrower types for new MCP TS SDK compatibility

@​schematics/angular

Commit Type Description
cbd0718b9 fix move 'provideZoneChangeDetection' to the root module
33f7cf761 fix update application schematics for module-based apps to use 'provideZoneChangeDetection'
37b14d1f7 fix update default app component message
c37dccb09 fix update default app component welcome message

@​angular/build

Commit Type Description
2b9be3a7c fix ensure correct project targeting during Vitest debugging

20.3.14 (2026-01-07)

@​angular/cli

Commit Type Description
ff366499e fix update dependency @​modelcontextprotocol/sdk to v1.25.2

21.1.0-next.3 (2025-12-18)

@​angular/cli

Commit Type Description
348096623 fix enhance list_projects MCP tool file system traversal and symlink handling
032257a6d fix improve signal forms lesson examples in AI tutor
18d74dde8 fix rename mcp devserver tools to comply with naming spec
a15db28b2 perf cache resolved specific version in package manager abstraction

... (truncated)

Commits
  • 3b3247c release: cut the v21.0.5 release
  • 0f9b8c8 build: update cross-repo angular dependencies
  • cbd0718 fix(@​schematics/angular): move 'provideZoneChangeDetection' to the root module
  • 33f7cf7 fix(@​schematics/angular): update application schematics for module-based apps...
  • 2495637 fix(@​angular/cli): use narrower types for new MCP TS SDK compatibility
  • fdbb65d build: update dependency @​modelcontextprotocol/sdk to v1.25.1
  • 2b9be3a fix(@​angular/build): ensure correct project targeting during Vitest debugging
  • 8456da3 refactor: update copyright year in license
  • ac26f4a build: update cross-repo angular dependencies
  • e010583 build: update cross-repo angular dependencies
  • Additional commits viewable in compare view

You can trigger a rebase of this PR 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.

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jan 12, 2026
@github-actions
Copy link
Copy Markdown

🤖 GitHub comments

Just comment with:

  • run docs-build : Re-trigger the docs validation. (use unformatted text in the comment!)

@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/multi-d561e21540 branch from 563808b to 968c3e1 Compare January 28, 2026 08:28
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Feb 9, 2026

Dependabot couldn't access the repository. Because of this, Dependabot cannot update this pull request.

Bumps [esbuild](https://github.com/evanw/esbuild) to 0.26.0 and updates ancestor dependency [@angular-devkit/build-angular](https://github.com/angular/angular-cli). These dependencies need to be updated together.


Updates `esbuild` from 0.13.8 to 0.26.0
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2021.md)
- [Commits](evanw/esbuild@v0.13.8...v0.26.0)

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

---
updated-dependencies:
- dependency-name: esbuild
  dependency-version: 0.26.0
  dependency-type: indirect
- dependency-name: "@angular-devkit/build-angular"
  dependency-version: 21.0.5
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/multi-d561e21540 branch from 968c3e1 to dcc3e91 Compare February 9, 2026 20:54
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