docs.nestjs.com
                                
                                 docs.nestjs.com copied to clipboard
                                
                                    docs.nestjs.com copied to clipboard
                            
                            
                            
                        chore(deps): bump esbuild and @angular-devkit/build-angular
Bumps esbuild to 0.25.0 and updates ancestor dependency @angular-devkit/build-angular. These dependencies need to be updated together.
Updates esbuild from 0.23.0 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
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.
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-wefor 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
--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
- e9174d6publish 0.25.0 to npm
- c27dbebfix- hostsin- plugin-tests.js
- 6794f60fix- hostsin- node-unref-tests.js
- de85afdMerge commit from fork
- da1de1bfix #4065: bitwise operators can return bigints
- f4e9d19switch case liveness:- defaultis always last
- 7aa47c3fix #4028: minify live/dead- switchcases better
- 22ecd30minify: more constant folding for strict equality
- 4cdf03cfix #4053: reordering of- .tsxin- node_modules
- dc71977fix #3692:- 0now picks a random ephemeral port
- Additional commits viewable in compare view
Updates @angular-devkit/build-angular from 18.2.9 to 19.2.0
Release notes
Sourced from @​angular-devkit/build-angular's releases.
v19.2.0
19.2.0 (2025-02-26)
@​schematics/angular
Commit Description add additional checks for application builder usage remove animations module from ng new app 
@​angular-devkit/build-angular
Commit Description add aot option to jest add aot option to karma add aot to WTR schema support aot option for karma browser builder 
@​angular/build
@​angular/ssr
Commit Description Add support for route matchers with fine-grained render mode control v19.2.0-rc.0
19.2.0-rc.0 (2025-02-19)
@​schematics/angular
Commit Description remove animations module from ng new app 
@​angular/cli
Commit Description correctly parse and resolve relative schematic collection names on Windows prefer installed package as fallback when listing package groups 
@​angular-devkit/build-angular
Commit Description add aot to WTR schema pass missing options to Karma esbuild builder support aot option for karma browser builder 
@​angular/build
Commit Description add application builder karma testing to package 
... (truncated)
Changelog
Sourced from @​angular-devkit/build-angular's changelog.
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 a5fcf8044 fix provide karma stack trace sourcemap support 964fb778b fix support per component updates of multi-component files f836be9e6 fix support Vite allowedHostsoption for development server0ddf6aafa fix utilize bazel stamp instead of resolving peer dependency versions 
@​angular/ssr
Commit Type Description 9726cd084 feat Add support for route matchers with fine-grained render mode control 19.1.9 (2025-02-26)
@​angular/build
Commit Type Description 2d361e9b0 fix always disable JSON stats with dev-server 
... (truncated)
Commits
- aaa1accrelease: cut the v19.2.0 release
- 39ebd25build: update fw and packagr to 19.2.0
- 239a404fix(- @​angular/build): always disable JSON stats with dev-server
- fe8d83afix(- @​schematics/angular): add additional checks for application builder usage
- 1f715d2release: cut the v19.2.0-rc.0 release
- 8f73dadbuild: update angular
- b2e2e68build: temporarily ignore renovate updates for- @​angular/build-tooling
- ca1e86bbuild: disable failing strict_deps targets
- 68ef24dbuild: add strict_deps requirement for ts_project
- fbef9a4docs: release notes for the v19.1.8 release
- 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 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.