Skip to content

Chore(deps): Bump esbuild, @angular-devkit/build-angular and ng-packagr#112

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/multi-54f7a8565c
Open

Chore(deps): Bump esbuild, @angular-devkit/build-angular and ng-packagr#112
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/multi-54f7a8565c

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Apr 29, 2026

Copy link
Copy Markdown

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

Updates esbuild from 0.24.2 to 0.25.4

Release notes

Sourced from esbuild's releases.

v0.25.4

  • Add simple support for CORS to esbuild's development server (#4125)

    Starting with version 0.25.0, esbuild's development server is no longer configured to serve cross-origin requests. This was a deliberate change to prevent any website you visit from accessing your running esbuild development server. However, this change prevented (by design) certain use cases such as "debugging in production" by having your production website load code from localhost where the esbuild development server is running.

    To enable this use case, esbuild is adding a feature to allow Cross-Origin Resource Sharing (a.k.a. CORS) for simple requests. Specifically, passing your origin to the new cors option will now set the Access-Control-Allow-Origin response header when the request has a matching Origin header. Note that this currently only works for requests that don't send a preflight OPTIONS request, as esbuild's development server doesn't currently support OPTIONS requests.

    Some examples:

    • CLI:

      esbuild --servedir=. --cors-origin=https://example.com
      
    • JS:

      const ctx = await esbuild.context({})
      await ctx.serve({
        servedir: '.',
        cors: {
          origin: 'https://example.com',
        },
      })
    • Go:

      ctx, _ := api.Context(api.BuildOptions{})
      ctx.Serve(api.ServeOptions{
        Servedir: ".",
        CORS: api.CORSOptions{
          Origin: []string{"https://example.com"},
        },
      })

    The special origin * can be used to allow any origin to access esbuild's development server. Note that this means any website you visit will be able to read everything served by esbuild.

  • Pass through invalid URLs in source maps unmodified (#4169)

    This fixes a regression in version 0.25.0 where sources in source maps that form invalid URLs were not being passed through to the output. Version 0.25.0 changed the interpretation of sources from file paths to URLs, which means that URL parsing can now fail. Previously URLs that couldn't be parsed were replaced with the empty string. With this release, invalid URLs in sources should now be passed through unmodified.

  • Handle exports named __proto__ in ES modules (#4162, #4163)

    In JavaScript, the special property name __proto__ sets the prototype when used inside an object literal. Previously esbuild's ESM-to-CommonJS conversion didn't special-case the property name of exports named __proto__ so the exported getter accidentally became the prototype of the object literal. It's unclear what this affects, if anything, but it's better practice to avoid this by using a computed property name in this case.

    This fix was contributed by @​magic-akari.

... (truncated)

Changelog

Sourced from esbuild's changelog.

Changelog: 2024

This changelog documents all esbuild versions published in the year 2024 (versions 0.19.12 through 0.24.2).

Commits
  • 218d29e publish 0.25.4 to npm
  • e66cd0b dev server: simple support for CORS requests (#4171)
  • 8bf3368 js api: validate some options as arrays of strings
  • 1e7375a js api: simplify comma-separated array validation
  • 5f5964d release notes for #4163
  • adb5284 fix: handle __proto__ as a computed property in exports and add tests for s...
  • 0aa9f7b fix #4169: keep invalid source map URLs unmodified
  • 5959289 add additional guards for #4114 when using :is()
  • 677910b publish 0.25.3 to npm
  • a41040e fix #4110: support custom non-IP host values
  • Additional commits viewable in compare view

Updates @angular-devkit/build-angular from 19.1.4 to 19.2.24

Release notes

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

19.2.24

@​angular/build

Commit Description
fix - f4595d599 update vite to 6.4.2

19.2.23

@​angular/cli

Commit Description
fix - 67cfbe32f update picomatch to 4.0.4

@​angular-devkit/build-angular

Commit Description
fix - 771b979e7 update picomatch to 4.0.4

@​angular-devkit/core

Commit Description
fix - de2da4874 update picomatch to 4.0.4

@​angular/build

Commit Description
fix - 27a9ce4a7 update picomatch to 4.0.4

19.2.22

@​angular-devkit/core

Commit Description
fix - 0a01aecd9 update ajv to 8.18.0

@​angular/build

Commit Description
fix - 79f59412a update rollup to 4.59.0

19.2.21

@​angular/ssr

Commit Description
fix - 288e22816 prevent open redirect via X-Forwarded-Prefix header
fix - 2a72d7483 validate host headers to prevent header-based SSRF

19.2.20

@​angular-devkit/build-angular

Commit Description
fix - 0e5421ba7 update webpack to 5.105.0

19.2.19

@​angular/build

| Commit | Description |

... (truncated)

Changelog

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

19.2.24 (2026-04-08)

@​angular/build

Commit Type Description
f4595d599 fix update vite to 6.4.2

22.0.0-next.4 (2026-04-01)

@​angular/cli

Commit Type Description
87d99e98b feat support custom port in MCP devserver start tool
4815a5417 fix fix sourceRoot resolution for MCP projects tool

@​angular/build

Commit Type Description
21d8aa474 fix ensure transitive SCSS partial errors are tracked in watch mode
e558117b7 fix ensure Vitest mock patching is executed only once
81e4faae7 fix preserve error stack traces during prerendering
8dd341e21 fix scope CHROME_BIN executable path to individual playwright instances

@​angular/ssr

Commit Type Description
e7e434ca3 fix allow underscores in host validation
bcd99f944 fix patch Headers.forEach in cloneRequestAndPatchHeaders

21.2.6 (2026-04-01)

@​angular/cli

Commit Type Description
ea14f28cc fix fix sourceRoot resolution for MCP projects tool

@​angular/build

... (truncated)

Commits
  • a7625d1 release: cut the v19.2.24 release
  • f4595d5 fix(@​angular/build): update vite to 6.4.2
  • 619c0d2 release: cut the v19.2.23 release
  • de2da48 fix(@​angular-devkit/core): update picomatch to 4.0.4
  • 771b979 fix(@​angular-devkit/build-angular): update picomatch to 4.0.4
  • 27a9ce4 fix(@​angular/build): update picomatch to 4.0.4
  • 67cfbe3 fix(@​angular/cli): update picomatch to 4.0.4
  • 3d47bd3 release: cut the v19.2.22 release
  • 0a01aec fix(@​angular-devkit/core): update ajv to 8.18.0
  • 79f5941 fix(@​angular/build): update rollup to 4.59.0
  • Additional commits viewable in compare view

Updates ng-packagr from 19.1.0 to 19.2.2

Release notes

Sourced from ng-packagr's releases.

19.2.2

Bug Fixes

  • correctly handle undefined stylesheet processor (4598b67), closes #3005

19.2.1

Bug Fixes

  • correctly resolve SCSS resources from nested paths (2fcbe68), closes #3006

19.2.0

No release notes provided.

19.2.0-next.2

Features

19.2.0-next.1

  • add tailwindcss version 4 as a valid peer dependency (16561cd)

19.2.0-next.0

No changes.

19.1.2

  • add tailwindcss version 4 as a valid peer dependency (719577c)

19.1.1

Bug Fixes

  • disable TypeScript removeComments option (f0415dd)
Changelog

Sourced from ng-packagr's changelog.

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

21.2.3 (2026-04-16)

Bug Fixes

  • ng-packagr: resolve imports with TS extensions in rollup (5629808), closes #3281

22.0.0-next.3 (2026-04-16)

⚠ BREAKING CHANGES

  • ng-packagr: * TypeScript versions older than 6.0 are no longer supported.

Features

  • ng-packagr: drop support for TypeScript 5.9 (b59e280)

Bug Fixes

  • ng-packagr: resolve imports with TS extensions in rollup (804c04b), closes #3281

22.0.0-next.2 (2026-03-27)

Features

Bug Fixes

  • default generated package.json type to module (0a12da7)

22.0.0-next.1 (2026-03-19)

Bug Fixes

  • ensure dts sourcemaps point to original ts files (28424e2)

22.0.0-next.0 (2026-02-25)

⚠ BREAKING CHANGES

... (truncated)

Commits
  • 8adbe16 release: cut 19.2.2
  • 4598b67 fix: correctly handle undefined stylesheet processor
  • 74ef3e0 release: cut 19.2.1
  • 2fcbe68 fix: correctly resolve SCSS resources from nested paths
  • ce8bffb release: cut 19.2.0
  • 6e1b1a7 build: lock file maintenance
  • e15f7c2 release: cut 19.2.0-next.2
  • 990f723 build: update dependency typescript to v5.8.0-dev.20250210
  • ca3ec77 build: update dependency prettier to ~3.5.0
  • 446b33f build: update dependency esbuild to ^0.25.0
  • 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 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.

Bumps [esbuild](https://github.com/evanw/esbuild) to 0.25.4 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.24.2 to 0.25.4
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2024.md)
- [Commits](evanw/esbuild@v0.24.2...v0.25.4)

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

Updates `ng-packagr` from 19.1.0 to 19.2.2
- [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@19.1.0...19.2.2)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Apr 29, 2026

Copy link
Copy Markdown
Author

Labels

The following labels could not be found: dependencies. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

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

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants