design-angular-kit
design-angular-kit copied to clipboard
build(deps): bump esbuild, @angular-devkit/build-angular and ng-packagr
Bumps esbuild to 0.25.1 and updates ancestor dependencies esbuild, @angular-devkit/build-angular and ng-packagr. These dependencies need to be updated together.
Updates esbuild from 0.21.3 to 0.25.1
Release notes
Sourced from esbuild's releases.
v0.25.1
Fix incorrect paths in inline source maps (#4070, #4075, #4105)
This fixes a regression from version 0.25.0 where esbuild didn't correctly resolve relative paths contained within source maps in inline
sourceMappingURLdata URLs. The paths were incorrectly being passed through as-is instead of being resolved relative to the source file containing thesourceMappingURLcomment, which was due to the data URL not being a file URL. This regression has been fixed, and this case now has test coverage.Fix invalid generated source maps (#4080, #4082, #4104, #4107)
This release fixes a regression from version 0.24.1 that could cause esbuild to generate invalid source maps. Specifically under certain conditions, esbuild could generate a mapping with an out-of-bounds source index. It was introduced by code that attempted to improve esbuild's handling of "null" entries in source maps (i.e. mappings with a generated position but no original position). This regression has been fixed.
This fix was contributed by
@jridgewell.Fix a regression with non-file source map paths (#4078)
The format of paths in source maps that aren't in the
filenamespace was unintentionally changed in version 0.25.0. Path namespaces is an esbuild-specific concept that is optionally available for plugins to use to distinguish paths fromfilepaths and from paths meant for other plugins. Previously the namespace was prepended to the path joined with a:character, but version 0.25.0 unintentionally failed to prepend the namespace. The previous behavior has been restored.Fix a crash with
switchoptimization (#4088)The new code in the previous release to optimize dead code in switch statements accidentally introduced a crash in the edge case where one or more switch case values include a function expression. This is because esbuild now visits the case values first to determine whether any cases are dead code, and then visits the case bodies once the dead code status is known. That triggered some internal asserts that guard against traversing the AST in an unexpected order. This crash has been fixed by changing esbuild to expect the new traversal ordering. Here's an example of affected code:
switch (x) { case '': return y.map(z => z.value) case y.map(z => z.key).join(','): return [] }Update Go from 1.23.5 to 1.23.7 (#4076, #4077)
This should have no effect on existing code as this version change does not change Go's operating system support. It may remove certain reports from vulnerability scanners that detect which version of the Go compiler esbuild uses.
This PR was contributed by
@MikeWillCook.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
esbuildin yourpackage.jsonfile (recommended) or be using a version range syntax that only accepts patch upgrades such as^0.24.0or~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-Originheader 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 is0.0.0.0, which refers to all of the IP addresses that represent the local machine (e.g. both127.0.0.1and192.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 ofhostsinstead of a singlehoststring. This makes it possible to determine all of the hosts that esbuild's development server will accept.Thanks to
@sapphi-redfor 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.
... (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
--defineandimport.meta(#4010, #4012, #4013)The previous change in version 0.24.1 to use a more expression-like parser for
definevalues to allow quoted property names introduced a regression that removed the ability to use--define:import.meta=.... Even thoughimportis normally a keyword that can't be used as an identifier, ES modules special-case theimport.metaexpression to behave like an identifier anyway. This change fixes the regression.This fix was contributed by
@sapphi-red.0.24.1
Allow
es2024as a target intsconfig.json(#4004)TypeScript recently added
es2024as a compilation target, so esbuild now supports this in thetargetfield oftsconfig.jsonfiles, 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/setThis 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
--defineand--pure(#4008)The
defineandpureAPI 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--defineand--pureconsistent with--global-name, which already supported quoted property names. For example, the following is now possible:
... (truncated)
Commits
6bfc1c1publish 0.25.1 to npmf9b3952fix #4078: prepend namespaces to source map pathsccf3dd7add "contributed by" in changelog48cd7a9Update Go from 1.23.5 to 1.23.7 (#4077)1f04fa4fix absolute windows paths in source maps9ca03f6also add test case from #40752f244c0add test case from #41041dde994fix incorrect test names9f008c5fix #4070:filenamespace forsourceMappingURLcbd5eb8release notes and tests for #4082- Additional commits viewable in compare view
Updates @angular-devkit/build-angular from 18.0.7 to 19.2.3
Release notes
Sourced from @angular-devkit/build-angular's releases.
v19.2.3
19.2.3 (2025-03-13)
@angular/build
Commit Description update babel packages v19.2.2
19.2.2 (2025-03-12)
@angular/cli
Commit Description record analytics for nested schematics
@angular/build
Commit Description exclude all entrypoints of a library from prebundling handle postcss compilation errors gracefully provide extract-i18ndoes not respectremove duplicate prebundling warning
@angular/ssr
Commit Description prevent stream draining if writedoes not return a booleanv19.2.1
19.2.1 (2025-03-05)
@schematics/angular
Commit Description prevent accidental deletion of main.tsduring application builder migrationprevent error when tsconfig file is missing in application builder migration
@angular-devkit/architect
Commit Description improve error message when configuration is missing
@angular/build
Commit Description allow component HMR with a service worker exclude component styles from 'any' and 'all' budget calculations handle undefined lessstylesheet sourcemap valuesv19.2.0
19.2.0 (2025-02-26)
@schematics/angular
... (truncated)
Changelog
Sourced from @angular-devkit/build-angular's changelog.
19.2.3 (2025-03-13)
@angular/build
Commit Type Description 5a739820b fix update babel packages 18.2.15 (2025-03-13)
@angular-devkit/build-angular
Commit Type Description 255c8a50d fix update babel packages 20.0.0-next.1 (2025-03-13)
Breaking Changes
@angular/build
- TypeScript versions less than 5.8 are no longer supported.
@schematics/angular
Commit Type Description 03180fe03 feat use TypeScript module preserve option for new projects dc2f65999 fix generate component templates with a .ng.htmlfile extension
@angular/cli
Commit Type Description 2d03d8f11 fix record analytics for nested schematics
@angular/build
Commit Type Description 31c81e9c6 feat drop support for TypeScript older than 5.8
... (truncated)
Commits
e4d1c2arelease: cut the v19.2.3 release5a73982fix(@angular/build): update babel packages0ee1fc5build: avoid WSL interop flake when preparing Windows CI environment935cc1drelease: cut the v19.2.2 releasedc24656docs: improve developer guide for pnpm and windows177f356build: ensure thattools/legacy-rnjs/node_modulesis ignored377e0a4Further clean-uprules_nodejsnpmworkspace and removeyarn.lock(#29779)e6e8ce9fix(@angular/ssr): prevent stream draining ifwritedoes not return a boolean0ee24e2fix(@angular/cli): record analytics for nested schematics83fcffbfix(@angular/build): handle postcss compilation errors gracefully- Additional commits viewable in compare view
Updates ng-packagr from 18.0.0 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
- support TypeScript 5.8 (4dc79fa)
19.2.0-next.1
- add
tailwindcssversion 4 as a valid peer dependency (16561cd)19.2.0-next.0
No changes.
19.1.2
- add
tailwindcssversion 4 as a valid peer dependency (719577c)19.1.1
Bug Fixes
- disable TypeScript
removeCommentsoption (f0415dd)19.1.0
Features
- support TypeScript 5.7 (af70d03)
Bug Fixes
- Re-use module resolution cache.
Performance
19.1.0-next.4
Performance
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
- support TypeScript 5.8 (4dc79fa)
19.2.0-next.1 (2025-01-29)
Bug Fixes
- add
tailwindcssversion 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
removeCommentsoption (f0415dd)19.1.0 (2025-01-15)
Features
- support TypeScript 5.7 (af70d03)
Bug Fixes
- Re-use module resolution cache.
- adjust peerDependencies to allow Angular
19.1.0-next(d27ef5b)Performance
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
ce8bffbrelease: cut 19.2.06e1b1a7build: lock file maintenancee15f7c2release: cut 19.2.0-next.2990f723build: update dependency typescript to v5.8.0-dev.20250210ca3ec77build: update dependency prettier to ~3.5.0446b33fbuild: update dependency esbuild to ^0.25.042cdd85build: lock file maintenance4dc79fafeat: support TypeScript 5.8b907007release: cut 19.2.0-next.116561cdfix: addtailwindcssversion 4 as a valid peer dependency- 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill 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.