Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 24, 2025

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

Updates esbuild from 0.14.22 to 0.25.5

Release notes

Sourced from esbuild's releases.

v0.25.5

  • Fix a regression with browser in package.json (#4187)

    The fix to #4144 in version 0.25.3 introduced a regression that caused browser overrides specified in package.json to fail to override relative path names that end in a trailing slash. That behavior change affected the axios@0.30.0 package. This regression has been fixed, and now has test coverage.

  • Add support for certain keywords as TypeScript tuple labels (#4192)

    Previously esbuild could incorrectly fail to parse certain keywords as TypeScript tuple labels that are parsed by the official TypeScript compiler if they were followed by a ? modifier. These labels included function, import, infer, new, readonly, and typeof. With this release, these keywords will now be parsed correctly. Here's an example of some affected code:

    type Foo = [
      value: any,
      readonly?: boolean, // This is now parsed correctly
    ]
  • Add CSS prefixes for the stretch sizing value (#4184)

    This release adds support for prefixing CSS declarations such as div { width: stretch }. That CSS is now transformed into this depending on what the --target= setting includes:

    div {
      width: -webkit-fill-available;
      width: -moz-available;
      width: stretch;
    }

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: {

... (truncated)

Changelog

Sourced from esbuild's changelog.

Changelog: 2022

This changelog documents all esbuild versions published in the year 2022 (versions 0.14.11 through 0.16.12).

0.16.12

  • Loader defaults to js for extensionless files (#2776)

    Certain packages contain files without an extension. For example, the yargs package contains the file yargs/yargs which has no extension. Node, Webpack, and Parcel can all understand code that imports yargs/yargs because they assume that the file is JavaScript. However, esbuild was previously unable to understand this code because it relies on the file extension to tell it how to interpret the file. With this release, esbuild will now assume files without an extension are JavaScript files. This can be customized by setting the loader for "" (the empty string, representing files without an extension) to another loader. For example, if you want files without an extension to be treated as CSS instead, you can do that like this:

    • CLI:

      esbuild --bundle --loader:=css
      
    • JS:

      esbuild.build({
        bundle: true,
        loader: { '': 'css' },
      })
    • Go:

      api.Build(api.BuildOptions{
        Bundle: true,
        Loader: map[string]api.Loader{"": api.LoaderCSS},
      })

    In addition, the "type" field in package.json files now only applies to files with an explicit .js, .jsx, .ts, or .tsx extension. Previously it was incorrectly applied by esbuild to all files that had an extension other than .mjs, .mts, .cjs, or .cts including extensionless files. So for example an extensionless file in a "type": "module" package is now treated as CommonJS instead of ESM.

0.16.11

  • Avoid a syntax error in the presence of direct eval (#2761)

    The behavior of nested function declarations in JavaScript depends on whether the code is run in strict mode or not. It would be problematic if esbuild preserved nested function declarations in its output because then the behavior would depend on whether the output was run in strict mode or not instead of respecting the strict mode behavior of the original source code. To avoid this, esbuild transforms nested function declarations to preserve the intended behavior of the original source code regardless of whether the output is run in strict mode or not:

    // Original code
    if (true) {
      function foo() {}
      console.log(!!foo)
      foo = null
      console.log(!!foo)
    }

... (truncated)

Commits

Updates @angular-devkit/build-angular from 13.3.11 to 20.0.3

Release notes

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

20.0.3

@​schematics/angular

Commit Description
fix - e90a808c0 include main.server.ts in tsconfig.files when present
fix - 5c48b8e0a reset module typeSeparator when generating applications

@​angular/build

Commit Description
fix - 56f426e25 include custom bundle name scripts with karma
fix - dfe3a8b73 increase worker idle timeout
fix - e6d27bd5e set scripts option output as classic script for karma

20.0.2

@​schematics/angular

Commit Description
fix - bf64a0f2d add less as a devDependency when selected as the style preprocessor
fix - cb258a3e1 correctly detect modules using new file extension format

@​angular/build

Commit Description
fix - 424f1cbbf do not consider internal Angular files as external imports

20.0.1

@​schematics/angular

Commit Description
fix - 525ddcbd2 only overwrite JSON file if actually changed
fix - 83c820e5a remove karma config devkit package usages during application migration
fix - 87266b38a skip zone.js dependency for zoneless applications

@​angular/cli

Commit Description
fix - 0883248cb improve Node.js version check and error messages

@​angular/build

Commit Description
fix - e5efdc577 also disable outputMode in vitest unit-tests
fix - 5814393db resolve junit karma reporter output to workspace root

20.0.0

@​angular/cli

Commit Description
fix - e513cd4aa add Node.js 24 as supported version
fix - 5e90c1b4e remove Node.js v18 support
fix - 787e510dc update min Node.js support to 20.19, 22.12, and 24.0
fix - 64732534e update minimum supported Node.js 22 version to 22.11.0

@​schematics/angular

... (truncated)

Changelog

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

20.0.3 (2025-06-18)

@​schematics/angular

Commit Type Description
e90a808c0 fix include main.server.ts in tsconfig.files when present
5c48b8e0a fix reset module typeSeparator when generating applications

@​angular/build

Commit Type Description
56f426e25 fix include custom bundle name scripts with karma
dfe3a8b73 fix increase worker idle timeout
e6d27bd5e fix set scripts option output as classic script for karma

20.1.0-next.1 (2025-06-11)

@​schematics/angular

Commit Type Description
1c19e0dcd feat use signal in app component
42f45a39e fix add less as a devDependency when selected as the style preprocessor

@​angular/build

Commit Type Description
e36cbba11 fix do not consider internal Angular files as external imports
a415a4999 fix improve default coverage reporter handling for vitest
f177f5508 fix support injecting global styles into vitest unit-tests
917af12ae fix use date/time based output path for vitest unit-test

20.0.2 (2025-06-11)

@​schematics/angular

Commit Type Description
bf64a0f2d fix add less as a devDependency when selected as the style preprocessor

... (truncated)

Commits
  • 897eaf9 release: cut the v20.0.3 release
  • dfe3a8b fix(@​angular/build): increase worker idle timeout
  • 56f426e fix(@​angular/build): include custom bundle name scripts with karma
  • e6d27bd fix(@​angular/build): set scripts option output as classic script for karma
  • 5c48b8e fix(@​schematics/angular): reset module typeSeparator when generating applic...
  • e90a808 fix(@​schematics/angular): include main.server.ts in tsconfig.files when p...
  • 0371f9a test(@​angular/ssr): mark jasmine tests as flaky
  • a61528b ci: update to latest version of dev-infra actions
  • e89245d release: cut the v20.0.2 release
  • bf64a0f fix(@​schematics/angular): add less as a devDependency when selected as the ...
  • Additional commits viewable in compare view

Updates jest-preset-angular from 12.2.6 to 14.6.0

Release notes

Sourced from jest-preset-angular's releases.

v14.6.0

Please refer to CHANGELOG.md for details.

v14.5.5

Please refer to CHANGELOG.md for details.

v14.5.4

Please refer to CHANGELOG.md for details

v14.5.3

Please refer to CHANGELOG.md for details.

v14.5.2

Please refer to CHANGELOG.md for details.

v14.5.1

Please refer to CHANGELOG.md for details.

v14.5.0

Please refer to CHANGELOG.md for details.

v14.4.2

Please refer to CHANGELOG.md for details.

v14.4.1

Please refer to CHANGELOG.md for details.

v14.4.0

Please refer to CHANGELOG.md for details.

v14.4.0-rc.0

Please refer to CHANGELOG.md for details.

v14.3.3

Please refer to CHANGELOG.md for details.

v14.3.2

Please refer to CHANGELOG.md for details.

v14.3.1

Please refer to CHANGELOG.md for details.

v14.3.0

Please refer to CHANGELOG.md for details.

v14.2.4

Please refer to CHANGELOG.md for details.

v14.2.3

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from jest-preset-angular's changelog.

14.6.0 (2025-06-02)

Features

  • feat: add support for angular 20 (e041857)

14.5.5 (2025-04-15)

Bug Fixes

  • fix: allow name exports for presets subpath (9100baf)

14.5.4 (2025-03-31)

Bug Fixes

  • fix: warn when using both isolatedModules and emitDecoratorMetadata (#3029) (51db8f4), closes #3029
  • update dependency ts-jest to v29.3.0 (1d8415d)

14.5.3 (2025-02-24)

Bug Fixes

  • build: update bundle jit_transform.js, closes #2979

14.5.2 (2025-02-21)

Bug Fixes

  • fix: transform js ESM file from node_modules (b2b3934), closes #2913

14.5.1 (2025-01-25)

Bug Fixes

... (truncated)

Commits
  • cf593fc chore(release): 14.6.0
  • 71ba0a9 build: remove example app v17
  • 4ca3bbc build(deps): Update dependency eslint-plugin-jsdoc to ^50.7.1
  • 9c3f311 build(deps): Update dependency eslint-plugin-jsdoc to ^50.7.0
  • 4fe19aa build(deps): Update dependency @​types/node to ^22.15.29
  • c717632 build(deps): Update eslint monorepo to ^9.28.0
  • d9dea92 build(deps): Update Angular packages to ^20.0.1
  • 443ee57 build(deps): Update dependency @​babel/core to ^7.27.4
  • e041857 feat: add support for angular 20 (#3119)
  • 94e5fe7 build(deps): Update dependency eslint-plugin-jest to ^28.12.0
  • Additional commits viewable in compare view

Updates ng-packagr from 13.3.1 to 20.0.1

Release notes

Sourced from ng-packagr's releases.

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)
  • disable TypeScript composite option with Angular compiler (5dfbdba)
  • disable emitting empty chunk warning (638c107)
  • remove Node.js v18 support (69d9d9e)
  • 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.0.0-rc.2

Bug Fixes

20.0.0-rc.1

... (truncated)

Changelog

Sourced from ng-packagr's changelog.

20.0.1 (2025-06-18)

Bug Fixes

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

20.0.0 (2025-05-28)

⚠ 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)
  • disable TypeScript composite option with Angular compiler (5dfbdba)
  • disable emitting empty chunk warning (638c107)
  • remove Node.js v18 support (69d9d9e)
  • 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.0.0-rc.2 (2025-05-27)

Bug Fixes

20.0.0-rc.1 (2025-05-21)

... (truncated)

Commits
  • db97a5d release: cut 20.0.1
  • d2701fa fix: prevent 'Unexpected non-whitespace character' error
  • 40a875e Update package.json
  • bc9ef06 docs: update changelog
  • c47c6af release: cut 20.0.0
  • 46a4345 build: update all non-major dependencies to v8.33.0
  • 322173c release: cut 20.0.0-rc.2
  • 22a7ba1 build: update typescript-eslint monorepo to v8
  • e9aa810 Update discover-packages.ts
  • 0d0711c Update .eslintrc.json
  • 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.

…-angular and ng-packagr

Bumps [esbuild](https://github.com/evanw/esbuild) to 0.25.5 and updates ancestor dependencies [esbuild](https://github.com/evanw/esbuild), [@angular-devkit/build-angular](https://github.com/angular/angular-cli), [jest-preset-angular](https://github.com/thymikee/jest-preset-angular) and [ng-packagr](https://github.com/ng-packagr/ng-packagr). These dependencies need to be updated together.


Updates `esbuild` from 0.14.22 to 0.25.5
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2022.md)
- [Commits](evanw/esbuild@v0.14.22...v0.25.5)

Updates `@angular-devkit/build-angular` from 13.3.11 to 20.0.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@13.3.11...20.0.3)

Updates `jest-preset-angular` from 12.2.6 to 14.6.0
- [Release notes](https://github.com/thymikee/jest-preset-angular/releases)
- [Changelog](https://github.com/thymikee/jest-preset-angular/blob/main/CHANGELOG.md)
- [Commits](thymikee/jest-preset-angular@v12.2.6...v14.6.0)

Updates `ng-packagr` from 13.3.1 to 20.0.1
- [Release notes](https://github.com/ng-packagr/ng-packagr/releases)
- [Changelog](https://github.com/ng-packagr/ng-packagr/blob/20.0.1/CHANGELOG.md)
- [Commits](ng-packagr/ng-packagr@v13.3.1...20.0.1)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-version: 0.25.5
  dependency-type: indirect
- dependency-name: "@angular-devkit/build-angular"
  dependency-version: 20.0.3
  dependency-type: direct:development
- dependency-name: jest-preset-angular
  dependency-version: 14.6.0
  dependency-type: direct:development
- dependency-name: ng-packagr
  dependency-version: 20.0.1
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies One or more dependencies are being bumped javascript Pull requests that update Javascript code labels Jun 24, 2025
@dependabot dependabot bot requested a review from a team as a code owner June 24, 2025 11:48
@dependabot dependabot bot added dependencies One or more dependencies are being bumped javascript Pull requests that update Javascript code labels Jun 24, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 24, 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/multi-fe9118c338 branch June 24, 2025 11:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies One or more dependencies are being bumped javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants