Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 9, 2025

Bumps the npm_and_yarn group with 5 updates in the / directory:

Package From To
esbuild 0.21.5 0.25.0
@angular-devkit/build-angular 18.2.12 19.2.1
@nx/angular 20.0.0 20.5.0
jest-preset-angular 14.2.4 14.5.3
ng-packagr 18.2.1 19.2.0

Updates esbuild from 0.21.5 to 0.25.0

Release notes

Sourced from esbuild's releases.

v0.25.0

This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.24.0 or ~0.24.0. See npm's documentation about semver for more information.

  • Restrict access to esbuild's development server (GHSA-67mh-4wv8-2f99)

    This change addresses esbuild's first security vulnerability report. Previously esbuild set the Access-Control-Allow-Origin header to * to allow esbuild's development server to be flexible in how it's used for development. However, this allows the websites you visit to make HTTP requests to esbuild's local development server, which gives read-only access to your source code if the website were to fetch your source code's specific URL. You can read more information in the report.

    Starting with this release, CORS will now be disabled, and requests will now be denied if the host does not match the one provided to --serve=. The default host is 0.0.0.0, which refers to all of the IP addresses that represent the local machine (e.g. both 127.0.0.1 and 192.168.0.1). If you want to customize anything about esbuild's development server, you can put a proxy in front of esbuild and modify the incoming and/or outgoing requests.

    In addition, the serve() API call has been changed to return an array of hosts instead of a single host string. This makes it possible to determine all of the hosts that esbuild's development server will accept.

    Thanks to @​sapphi-red for reporting this issue.

  • Delete output files when a build fails in watch mode (#3643)

    It has been requested for esbuild to delete files when a build fails in watch mode. Previously esbuild left the old files in place, which could cause people to not immediately realize that the most recent build failed. With this release, esbuild will now delete all output files if a rebuild fails. Fixing the build error and triggering another rebuild will restore all output files again.

  • Fix correctness issues with the CSS nesting transform (#3620, #3877, #3933, #3997, #4005, #4037, #4038)

    This release fixes the following problems:

    • Naive expansion of CSS nesting can result in an exponential blow-up of generated CSS if each nesting level has multiple selectors. Previously esbuild sometimes collapsed individual nesting levels using :is() to limit expansion. However, this collapsing wasn't correct in some cases, so it has been removed to fix correctness issues.

      /* Original code */
      .parent {
        > .a,
        > .b1 > .b2 {
          color: red;
        }
      }
      /* Old output (with --supported:nesting=false) */
      .parent > :is(.a, .b1 > .b2) {
      color: red;
      }
      /* New output (with --supported:nesting=false) */
      .parent > .a,
      .parent > .b1 > .b2 {
      color: red;
      }

      Thanks to @​tim-we for working on a fix.

    • The & CSS nesting selector can be repeated multiple times to increase CSS specificity. Previously esbuild ignored this possibility and incorrectly considered && to have the same specificity as &. With this release, this should now work correctly:

      /* Original code (color should be red) */

... (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).

0.24.2

  • Fix regression with --define and import.meta (#4010, #4012, #4013)

    The previous change in version 0.24.1 to use a more expression-like parser for define values to allow quoted property names introduced a regression that removed the ability to use --define:import.meta=.... Even though import is normally a keyword that can't be used as an identifier, ES modules special-case the import.meta expression to behave like an identifier anyway. This change fixes the regression.

    This fix was contributed by @​sapphi-red.

0.24.1

  • Allow es2024 as a target in tsconfig.json (#4004)

    TypeScript recently added es2024 as a compilation target, so esbuild now supports this in the target field of tsconfig.json files, such as in the following configuration file:

    {
      "compilerOptions": {
        "target": "ES2024"
      }
    }

    As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation.

    This fix was contributed by @​billyjanitsch.

  • Allow automatic semicolon insertion after get/set

    This change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:

    class Foo {
      get
      *x() {}
      set
      *y() {}
    }

    The above code will be considered valid starting with this release. This change to esbuild follows a similar change to TypeScript which will allow this syntax starting with TypeScript 5.7.

  • Allow quoted property names in --define and --pure (#4008)

    The define and pure API options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes --define and --pure consistent with --global-name, which already supported quoted property names. For example, the following is now possible:

... (truncated)

Commits
  • e9174d6 publish 0.25.0 to npm
  • c27dbeb fix hosts in plugin-tests.js
  • 6794f60 fix hosts in node-unref-tests.js
  • de85afd Merge commit from fork
  • da1de1b fix #4065: bitwise operators can return bigints
  • f4e9d19 switch case liveness: default is always last
  • 7aa47c3 fix #4028: minify live/dead switch cases better
  • 22ecd30 minify: more constant folding for strict equality
  • 4cdf03c fix #4053: reordering of .tsx in node_modules
  • dc71977 fix #3692: 0 now picks a random ephemeral port
  • Additional commits viewable in compare view

Updates @angular-devkit/build-angular from 18.2.12 to 19.2.1

Release notes

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

v19.2.1

19.2.1 (2025-03-05)

@​schematics/angular

Commit Description
fix - 4c35b5721 prevent accidental deletion of main.ts during application builder migration
fix - d7f9cb578 prevent error when tsconfig file is missing in application builder migration

@​angular-devkit/architect

Commit Description
fix - 3ebd7ca7c improve error message when configuration is missing

@​angular/build

Commit Description
fix - c07330967 allow component HMR with a service worker
fix - c989c91c3 exclude component styles from 'any' and 'all' budget calculations
fix - 96e5dcb5f handle undefined less stylesheet sourcemap values

v19.2.0

19.2.0 (2025-02-26)

@​schematics/angular

Commit Description
fix - fe8d83a1f add additional checks for application builder usage
fix - adf4ea5d4 remove animations module from ng new app

@​angular-devkit/build-angular

Commit Description
feat - ef7ea536f add aot option to jest
feat - 523d539c6 add aot option to karma
feat - a00a49a65 add aot to WTR schema
fix - 2bae1a9c0 support aot option for karma browser builder

@​angular/build

Commit Description
feat - 11fab9c7d add application builder karma testing to package
fix - a5fcf8044 provide karma stack trace sourcemap support
fix - 964fb778b support per component updates of multi-component files
fix - f836be9e6 support Vite allowedHosts option for development server
fix - 0ddf6aafa utilize bazel stamp instead of resolving peer dependency versions

@​angular/ssr

Commit Description
feat - 9726cd084 Add support for route matchers with fine-grained render mode control

v19.2.0-rc.0

19.2.0-rc.0 (2025-02-19)

... (truncated)

Changelog

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

19.2.1 (2025-03-05)

@​schematics/angular

Commit Type Description
4c35b5721 fix prevent accidental deletion of main.ts during application builder migration
d7f9cb578 fix prevent error when tsconfig file is missing in application builder migration

@​angular-devkit/architect

Commit Type Description
3ebd7ca7c fix improve error message when configuration is missing

@​angular/build

Commit Type Description
c07330967 fix allow component HMR with a service worker
c989c91c3 fix exclude component styles from 'any' and 'all' budget calculations
96e5dcb5f fix handle undefined less stylesheet sourcemap values

19.2.0 (2025-02-26)

@​schematics/angular

Commit Type Description
fe8d83a1f fix add additional checks for application builder usage
adf4ea5d4 fix remove animations module from ng new app

@​angular-devkit/build-angular

Commit Type Description
ef7ea536f feat add aot option to jest
523d539c6 feat add aot option to karma
a00a49a65 feat add aot to WTR schema
2bae1a9c0 fix support aot option for karma browser builder

@​angular/build

Commit Type Description
11fab9c7d feat add application builder karma testing to package

... (truncated)

Commits
  • e40d5fe release: cut the v19.2.1 release
  • 9cdfc96 test: update ng-add version specifier test to bypass npm peer dependency is...
  • bb18bc7 test: only test ng update for supported versions
  • d7f9cb5 fix(@​schematics/angular): prevent error when tsconfig file is missing in appl...
  • c989c91 fix(@​angular/build): exclude component styles from 'any' and 'all' budget cal...
  • f92bfa4 build: update dev-infra and rework windows native testing
  • 3ebd7ca fix(@​angular-devkit/architect): improve error message when configuration is m...
  • c073309 fix(@​angular/build): allow component HMR with a service worker
  • 4e4fb8a refactor(@​angular/build): remove file: prefix from JIT component resource U...
  • 4c35b57 fix(@​schematics/angular): prevent accidental deletion of main.ts during app...
  • Additional commits viewable in compare view

Updates @nx/angular from 20.0.0 to 20.5.0

Release notes

Sourced from @​nx/angular's releases.

20.5.0 (2025-03-06)

🚀 Features

  • angular: add release option to angular publishable libraries (#29869)
  • angular: support angular 19.2.0 (#30088)
  • angular: update angular eslint packages (#30245)
  • bundling: support rollup.config.ts (#29983)
  • core: lock graph creation when running in another process (#29408)
  • core: add prefixColor property to @nx:run-commands (#29348)
  • core: add sync generators option to target defaults in nx-schema (#29441)
  • core: show link to migrate detail page in --interactive mode (#29874)
  • core: update CNW defaults so they generate a useful workspace by default (#29915)
  • core: add multi hash fn (#29935)
  • core: support bun's new text-based lockfile and use bun publish within nx release (#30064)
  • core: display perpetual version information in nx report for powerpack (#30110)
  • graph: update graph lib to latest nx graph (#29768)
  • js: upgrade verdaccio to 6 (#30015)
  • js: add typecheck task to generated ci workflow file when using the ts solution setup (#30219)
  • linter: add runtimeHelpers option to @nx/dependency-checks rule (#29954)
  • misc: replace ts-jest transformer with @swc/jest for ts solution setup (#29763)
  • module-federation: add NxModuleFederationPlugin for inferred usage (#30003)
  • module-federation: Update to the latest version of @​module-federation (#30147)
  • nx-dev: refactor and improve style of video-player (#29749)
  • nx-dev: add ability to add labels to video-player (3e3c466d47)
  • nx-dev: allow callout component to be expanded by default (#29806)
  • nx-dev: add epic nx release course (#29777)
  • nx-dev: show alt text as label below markdown images (a4f07dbb64)
  • nx-dev: conformance rule for blog post description (3d0b15ef10)
  • nx-dev: allow link-card components to take an image URL (2f1b6f9f72)
  • nx-dev: add quote component for enterprise articles (13b9c23e3b)
  • nx-dev: add metrics and related blogs section (541acf536b)
  • nx-dev: webinar page (#29913)
  • nx-dev: add company video (c8072fa20e)
  • nx-dev: add Faro for observability (#30021)
  • nx-dev: expose docs embedding search via endpoint (#30050)
  • nx-dev: allow sampling rate to be configured through env var (#30193)
  • nx-dev: update workspace conformance rule to check md files in general (d428eec060)
  • react: Update react-router-dom to latest (#29919)
  • release: configure when all branches should be checked for a matching releaseTagPattern (#30044)
  • rspack: improve plugin createNodes performance (#29876)
  • rspack: use ts-checker-rspack-plugin instead of fork-ts-checker-webpack-plugin (#30121)
  • testing: support vitest 3 (#29908)
  • testing: disable jest runtime by default when inferring targets (#29917)
  • testing: add type annotation for Jest configuration export (#30059)
  • vite: add support for vite 6 (#29871)
  • vue: add release option to vue publishable libraries (#29867)
  • webpack: add option to opt out of watching buildable dependencies (#29984)
  • webpack: use sass-embedded and modern-compiler for sass (#29999)

... (truncated)

Commits
  • ada8be4 fix(misc): fix misc issues in project generators for the ts solution setup (#...
  • bf10eae fix(angular): correct nx angular migration requirement for 19.2 (#30234)
  • 61ff25f feat(angular): update angular eslint packages (#30245)
  • 8b11d8b docs(core): add migrations docs for 20.x (#30186)
  • 811bac5 feat(angular): support angular 19.2.0 (#30088)
  • 09ebf5f fix(eslint): ensure that packages in the same group as updated together (#30187)
  • c02719d feat(module-federation): Update to the latest version of @​module-federation (...
  • 4f70cdb feat(angular): add release option to angular publishable libraries (#29869)
  • 9e204f9 feat(webpack): add option to opt out of watching buildable dependencies (#29984)
  • c1ebcb9 feat(vite): add support for vite 6 (#29871)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by jameshenry, a new releaser for @​nx/angular since your current version.


Updates jest-preset-angular from 14.2.4 to 14.5.3

Release notes

Sourced from jest-preset-angular's releases.

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.

Changelog

Sourced from jest-preset-angular's changelog.

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

14.5.0 (2025-01-10)

Features

Code Refactoring

  • refactor: add type for serializers/index.ts (dd64d78)

DEPRECATIONS

  • refactor: deprecate defaultTransformerOptions in presets (99d3112)
  • refactor: deprecate ngcc util via globalSetup (edeaa3f)

14.4.2 (2024-12-03)

... (truncated)

Commits
  • 32064c8 chore(release): 14.5.3
  • 952fb5a build(deps): update dependency ts-jest to v29.2.6
  • 03d3979 build(deps): update angular packages
  • 65a634d build(deps): update dependency rxjs to ^7.8.2
  • 155e7d0 build(deps): update dependency primeng to ^19.0.7
  • 48d7abe build(deps): update dependency jest-preset-angular to ^14.5.2
  • f29f76e build(deps): update dependency @​types/node to ^22.13.5
  • 80778fa chore(release): 14.5.2
  • b2b3934 fix: transform js ESM file from node_modules
  • bc78441 build(deps): update jamesives/github-pages-deploy-action action to v4.7.3
  • Additional commits viewable in compare view

Updates ng-packagr from 18.2.1 to 19.2.0

Release notes

Sourced from ng-packagr's releases.

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)

19.1.0

Features

Bug Fixes

  • Re-use module resolution cache.

Performance

  • mitigate TypeScript 5.6+ performance regression (ac9766e), closes #2969

19.1.0-next.4

Performance

  • mitigate TypeScript 5.6+ performance regression (ac9766e), closes #2969

19.1.0-next.3

Bug Fixes

  • Re-use module resolution cache.

19.1.0-next.1

Bug Fixes

... (truncated)

Changelog

Sourced from ng-packagr's changelog.

19.2.0 (2025-02-25)

19.2.0-next.2 (2025-02-10)

Features

19.2.0-next.1 (2025-01-29)

Bug Fixes

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

19.2.0-next.0 (2025-01-24)

19.1.1 (2025-01-24)

Bug Fixes

  • disable TypeScript removeComments option (f0415dd)

19.1.0 (2025-01-15)

Features

Bug Fixes

  • Re-use module resolution cache.
  • adjust peerDependencies to allow Angular 19.1.0-next (d27ef5b)

Performance

  • mitigate TypeScript 5.6+ performance regression (ac9766e), closes #2969

19.1.0-next.4 (2025-01-15)

19.1.0-next.3 (2025-01-07)

Bug Fixes

  • Re-use module resolution cache.

... (truncated)

Commits
  • 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
  • 42cdd85 build: lock file maintenance
  • 4dc79fa feat: support TypeScript 5.8
  • b907007 release: cut 19.2.0-next.1
  • 16561cd fix: add tailwindcss version 4 as a valid peer dependency
  • Additional commits viewable in compare view

Updates vite from 5.4.6 to 6.2.0

Release notes

Sourced from vite's releases.

create-vite@6.2.0

Please refer to CHANGELOG.md for details.

v6.2.0

Please refer to CHANGELOG.md for details.

v6.2.0-beta.1

Please refer to CHANGELOG.md for details.

v6.2.0-beta.0

Please refer to CHANGELOG.md for details.

create-vite@6.1.1

Please refer to CHANGELOG.md for details.

v6.1.1

Please refer to CHANGELOG.md for details.

create-vite@6.1.0

Please refer to CHANGELOG.md for details.

v6.1.0

Please refer to CHANGELOG.md for details.

v6.1.0-beta.2

Please refer to CHANGELOG.md for details.

v6.1.0-beta.1

Please refer to CHANGELOG.md for details.

v6.1.0-beta.0

Please refer to CHANGELOG.md for details.

v6.0.11

Please refer to CHANGELOG.md for details.

v6.0.10

Please refer to CHANGELOG.md for details.

v6.0.9

This version contains a breaking change due to security fixes. See GHSA-vg6x-rcgg-rjx6 for more details.

Please refer to CHANGELOG.md for details.

v6.0.8

Please refer to CHANGELOG.md for details.

v6.0.7

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from vite's changelog.

6.2.0 (2025-02-25)

6.2.0-beta.1 (2025-02-21)

  • fix(css): temporary add ?. after this.getModuleInfo in vite:css-post (#19478) (12b0b8a), closes #19478

6.2.0-beta.0 (2025-02-21)

6.1.1 (2025-02-19)

6.1.0 (2025-02-05)

Features

... (truncated)

Commits

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps the npm_and_yarn group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [esbuild](https://github.com/evanw/esbuild) | `0.21.5` | `0.25.0` |
| [@angular-devkit/build-angular](https://github.com/angular/angular-cli) | `18.2.12` | `19.2.1` |
| [@nx/angular](https://github.com/nrwl/nx/tree/HEAD/packages/angular) | `20.0.0` | `20.5.0` |
| [jest-preset-angular](https://github.com/thymikee/jest-preset-angular) | `14.2.4` | `14.5.3` |
| [ng-packagr](https://github.com/ng-packagr/ng-packagr) | `18.2.1` | `19.2.0` |



Updates `esbuild` from 0.21.5 to 0.25.0
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2024.md)
- [Commits](evanw/esbuild@v0.21.5...v0.25.0)

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

Updates `@nx/angular` from 20.0.0 to 20.5.0
- [Release notes](https://github.com/nrwl/nx/releases)
- [Commits](https://github.com/nrwl/nx/commits/20.5.0/packages/angular)

Updates `jest-preset-angular` from 14.2.4 to 14.5.3
- [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@v14.2.4...v14.5.3)

Updates `ng-packagr` from 18.2.1 to 19.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@18.2.1...19.2.0)

Updates `vite` from 5.4.6 to 6.2.0
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/create-vite@6.2.0/packages/vite)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@angular-devkit/build-angular"
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: "@nx/angular"
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: jest-preset-angular
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: ng-packagr
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 9, 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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants