Bump the development-security-updates group across 1 directory with 4 updates
Type: Pull Request
State: Closed
Association: Contributor
Comments: 0
(4 months ago)
(about 2 months ago)
(about 2 months ago)
dependencies javascript
Bumps the development-security-updates group with 2 updates in the / directory: esbuild and @angular-devkit/build-angular.
Updates esbuild from 0.17.8 to 0.25.5
Release notes
Sourced from esbuild's releases.
v0.25.5
Fix a regression with
browserinpackage.json(#4187)The fix to #4144 in version 0.25.3 introduced a regression that caused
browseroverrides specified inpackage.jsonto fail to override relative path names that end in a trailing slash. That behavior change affected theaxios@0.30.0package. 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 includedfunction,import,infer,new,readonly, andtypeof. 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
stretchsizing 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
localhostwhere 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
corsoption will now set theAccess-Control-Allow-Originresponse header when the request has a matchingOriginheader. Note that this currently only works for requests that don't send a preflightOPTIONSrequest, as esbuild's development server doesn't currently supportOPTIONSrequests.Some examples:
CLI:
esbuild --servedir=. --cors-origin=https://example.comJS:
const ctx = await esbuild.context({}) await ctx.serve({ servedir: '.', cors: {
... (truncated)
Changelog
Sourced from esbuild's changelog.
Changelog: 2023
This changelog documents all esbuild versions published in the year 2023 (versions 0.16.13 through 0.19.11).
0.19.11
Fix TypeScript-specific class transform edge case (#3559)
The previous release introduced an optimization that avoided transforming
super()in the class constructor for TypeScript code compiled withuseDefineForClassFieldsset tofalseif all class instance fields have no initializers. The rationale was that in this case, all class instance fields are omitted in the output so no changes to the constructor are needed. However, if all of this is the case and there are#privateinstance fields with initializers, those private instance field initializers were still being moved into the constructor. This was problematic because they were being inserted before the call tosuper()(sincesuper()is now no longer transformed in that case). This release introduces an additional optimization that avoids moving the private instance field initializers into the constructor in this edge case, which generates smaller code, matches the TypeScript compiler's output more closely, and avoids this bug:// Original code class Foo extends Bar { #private = 1; public: any; constructor() { super(); } }// Old output (with esbuild v0.19.9)
class Foo extends Bar {
constructor() {
super();
this.#private = 1;
}
#private;
}// Old output (with esbuild v0.19.10)
class Foo extends Bar {
constructor() {
this.#private = 1;
super();
}
#private;
}// New output
class Foo extends Bar {
#private = 1;
constructor() {
super();
}
}
Minifier: allow reording a primitive past a side-effect (#3568)
The minifier previously allowed reordering a side-effect past a primitive, but didn't handle the case of reordering a primitive past a side-effect. This additional case is now handled:
... (truncated)
Commits
ea453bfpublish 0.25.5 to npm223ddc6fix #4187: browserpackage.jsonregressionb2c8251fix #4192: typescript tuple label parser edge case28cf2f3fix #4184: css prefixes forstretchbee1b09fix comment indents9ddfe5frunmake update-compat-tablec339f34fix a misplaced comment218d29epublish 0.25.4 to npme66cd0bdev server: simple support for CORS requests (#4171)8bf3368js api: validate some options as arrays of strings- Additional commits viewable in compare view
Updates @angular-devkit/build-angular from 15.2.11 to 20.1.1
Release notes
Sourced from @angular-devkit/build-angular's releases.
20.1.1
@angular/build
Commit Description emit a warning when outputHashingis set toallorbundleswhen HMR is enablednormalize code coverage include paths to POSIX 20.1.0
@schematics/angular
Commit Description use signal in app component
@angular/cli
Commit Description add initial MCP server implementation
@angular-devkit/build-angular
Commit Description provide partial custom postcss configuration support
@angular/build
@angular/ssr
Commit Description ensure loadChildrenruns in correct injection context during route extraction20.1.0-rc.0
@angular-devkit/build-angular
Commit Description remove unused @vitejs/plugin-basic-ssldependency
@angular/build
Commit Description proxy karma request from /to/base
... (truncated)
Changelog
Sourced from @angular-devkit/build-angular's changelog.
20.1.1 (2025-07-16)
@angular/build
Commit Type Description 541b33f8d fix emit a warning when outputHashingis set toallorbundleswhen HMR is enabled558a0fe92 fix normalize code coverage include paths to POSIX 20.1.0 (2025-07-09)
@angular/cli
Commit Type Description dc45c186e feat add initial MCP server implementation
@schematics/angular
Commit Type Description 1c19e0dcd feat use signal in app component
@angular-devkit/build-angular
Commit Type Description 49a09737d feat provide partial custom postcss configuration support
@angular/build
Commit Type Description 1159cf081 feat add code coverage reporters option for unit-test 8f305ef0b feat add dataurl, base64 loaders adfeee0a4 fix adjust coverage includes/excludes for unit-test vitest runner c19cd2985 fix coverage reporter option 8879716ca fix expose unit test and karma builder API a415a4999 fix improve default coverage reporter handling for vitest e0de8680d fix inject zone.js/testing before karma builder execution 2672f6ec1 fix json and json-summary as vitest coverage reporters b67fdfd6b fix resolve "Controller is already closed" error in Karma 2784883ec fix support extra test setup files with unit-test vitest runner f177f5508 fix support injecting global styles into vitest unit-tests 130c65014 fix use an empty array as default value for vitest exclude 917af12ae fix use date/time based output path for vitest unit-test
... (truncated)
Commits
15c0148release: cut the v20.1.1 release0925ebdrefactor(@schematics/angular): fix layout of pill buttonb7121e8build: update dependency node to v22.17.13ccd1e8refactor(@angular/build): provide private factory API for internal compilatio...eb29941refactor(@angular/cli): add a documentation search tool to MCP server1602181refactor(@angular/build): use thetoPosixPathutil to convert windows file558a0fefix(@angular/build): normalize code coverage include paths to POSIX541b33ffix(@angular/build): emit a warning whenoutputHashingis set toallor `...e46cedbrefactor: useexecuteWithCasesinstead of RXJS boillerplateed09cefrelease: cut the v20.1.0 release- Additional commits viewable in compare view
Updates webpack from 5.76.1 to 5.99.9
Release notes
Sourced from webpack's releases.
v5.99.9
Fixes
- HMR might fail if there are new initial chunks
- Destructuring namespace import with default
- Destructuring namespace import with computed-property
- Generate valid code for es export generation for multiple module entries
- Fixed public path issue for ES modules
- Asset modules work when lazy compilation used
- Eliminate unused statements in certain scenarios
- Fixed regression with location and order of dependencies
- Fixed typescript types
v5.99.8
Fixes
- Fixed type error with latest
@types/node- Fixed typescript types
v5.99.7
Fixes
- Don't skip export generation for
defaultreexport (#19463)- Fixed module library export generation for reexport (#19459)
- Avoid module concatenation in child compilation for module library (#19457)
- Ensure HMR recover gracefully when CSS module with error
- Respect
causeof any errors anderrorsof AggregateError in stats output- Added missing
@types/json-schemain typesv5.99.6
Fixes
- Respect public path for ES modules
- Fixed generation of module for
modulelibrary when mixing commonjs and esm modules- Always apply
FlagDependencyExportsPluginfor libraries where it required- Faster logic for dead control flow
- Typescript types
v5.99.5
Fixes
- Control dead flow for labeled and blockless statements
v5.99.4
Fixes
- Fixed terminated state for
if/elsev5.99.3
Fixes
... (truncated)
Commits
6c9f912chore(release): 5.99.9bca3d40fix: eliminate unused statements in certain scenarios (#19536)356c5d1ci: benchmarks stability (#19552)2c4f967fix: sourceTypes of asset module when lazy compilation (#19539)6b3e1c5chore(deps): bump the dependencies group with 2 updates (#19551)dc19f82chore: fix todo types (#19550)598767echore: fix typo in comment34ec1d8chore: refactor tests scripts (#19549)12b8458fix: publicPath issue for ES modules (#19546)c1e7ba2docs: update examples (#19545)- Additional commits viewable in compare view
Updates webpack-dev-server from 4.11.1 to 5.2.2
Release notes
Sourced from webpack-dev-server's releases.
v5.2.2
5.2.2 (2025-06-03)
Bug Fixes
- "Overlay enabled" false positive (18e72ee)
- do not crush when error is null for runtime errors (#5447) (309991f)
- remove unnecessary header
X_TEST(#5451) (64a6124)- respect the
allowedHostsoption for cross-origin header check (#5510) (03d1214)v5.2.1
5.2.1 (2025-03-26)
Security
- cross-origin requests are not allowed unless allowed by
Access-Control-Allow-Originheader- requests with an IP addresses in the
Originheader are not allowed to connect to WebSocket server unless configured byallowedHostsor it different from theHostheaderThe above changes may make the dev server not work if you relied on such behavior, but unfortunately they carry security risks, so they were considered as fixes.
Bug Fixes
- prevent overlay for errors caught by React error boundaries (#5431) (8c1abc9)
- take the first network found instead of the last one, this restores the same behavior as 5.0.4 (#5411) (ffd0b86)
v5.2.0
5.2.0 (2024-12-11)
Features
- added
getClientEntryandgetClientHotEntrymethods to get clients entries (dc642a8)Bug Fixes
- speed up initial client bundling (145b5d0)
v5.1.0
5.1.0 (2024-09-03)
Features
- add visual progress indicators (a8f40b7)
- added the
appoption to beFunction(by default only withconnectcompatibility frameworks) (3096148)- allow the
serveroption to beFunction(#5275) (02a1c6d)- http2 support for
connectandconnectcompatibility frameworks which support HTTP2 (#5267) (6509a3f)
... (truncated)
Changelog
Sourced from webpack-dev-server's changelog.
5.2.2 (2025-06-03)
Bug Fixes
- "Overlay enabled" false positive (18e72ee)
- do not crush when error is null for runtime errors (#5447) (309991f)
- remove unnecessary header
X_TEST(#5451) (64a6124)- respect the
allowedHostsoption for cross-origin header check (#5510) (03d1214)5.2.1 (2025-03-26)
Security
- cross-origin requests are not allowed unless allowed by
Access-Control-Allow-Originheader- requests with an IP addresses in the
Originheader are not allowed to connect to WebSocket server unless configured byallowedHostsor it different from theHostheaderThe above changes may make the dev server not work if you relied on such behavior, but unfortunately they carry security risks, so they were considered as fixes.
Bug Fixes
- prevent overlay for errors caught by React error boundaries (#5431) (8c1abc9)
- take the first network found instead of the last one, this restores the same behavior as 5.0.4 (#5411) (ffd0b86)
5.2.0 (2024-12-11)
Features
- added
getClientEntryandgetClientHotEntrymethods to get clients entries (dc642a8)Bug Fixes
- speed up initial client bundling (145b5d0)
5.1.0 (2024-09-03)
Features
- add visual progress indicators (a8f40b7)
- added the
appoption to beFunction(by default only withconnectcompatibility frameworks) (3096148)- allow the
serveroption to beFunction(#5275) (02a1c6d)- http2 support for
connectandconnectcompatibility frameworks which support HTTP2 (#5267) (6509a3f)Bug Fixes
... (truncated)
Commits
195a7e6chore(release): 5.2.2620bef1chore(deps): update (#5511)03d1214fix: respect theallowedHostsoption for cross-origin header check (#5510)5ba862echore(deps-dev): bump the dependencies group across 1 directory with 7 update...f7fec94chore: fix typo (#5508)6ee8cd0ci: add Node.js v24 (#5492)d30f963chore: update http-proxy-middleware to ^2.0.9 (#5503)66cf033chore(deps-dev): bump the dependencies group with 2 updates (#5504)4367a5crefactor: use 'String#startsWith' & replace if-then-else (#5501)8e6604fchore(deps): bump the dependencies group across 1 directory with 4 updates (#...- Additional commits viewable in compare view
Most Recent Ignore Conditions Applied to This Pull Request
| Dependency Name | Ignore Conditions |
|---|---|
| @angular-devkit/build-angular | [>= 19.a, < 20] |
| @angular-devkit/build-angular | [> 15.2.11] |
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 <dependency name> major versionwill 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 versionwill 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.
Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.
Pull Request Statistics
1
2
+6421
-4302
Package Dependencies
@angular-devkit/build-angular
npm
15.2.11 → 20.1.1
Major
Technical Details
| ID: | 3864000 |
| UUID: | 2680608456 |
| Node ID: | PR_kwDONfBHH86fxtbI |
| Host: | GitHub |
| Repository: | mrlonis/example-angular-15-app |
| Mergeable: | Yes |
| Merge State: | Unstable |