fix(deps): update dependency @angular/common to v19 [security]#503
Open
renovate[bot] wants to merge 1 commit into
Open
fix(deps): update dependency @angular/common to v19 [security]#503renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
|
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
2 times, most recently
from
March 30, 2026 20:48
305de0e to
aff59b5
Compare
|
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
April 15, 2026 13:47
aff59b5 to
5654376
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
April 16, 2026 09:39
5654376 to
2d3263b
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
April 16, 2026 16:55
2d3263b to
92bc0f0
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
April 16, 2026 23:32
92bc0f0 to
b89ccb3
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
April 21, 2026 20:56
b89ccb3 to
6658dae
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
April 22, 2026 02:52
6658dae to
5a0df2e
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
April 23, 2026 13:36
5a0df2e to
7016013
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
April 23, 2026 18:54
7016013 to
bb9adcc
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
April 29, 2026 13:38
bb9adcc to
a3e29f9
Compare
|
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
April 29, 2026 21:45
a3e29f9 to
00c43d7
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
May 18, 2026 22:26
95eda8f to
494f92e
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
May 22, 2026 21:09
494f92e to
0bffa1f
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
May 23, 2026 01:14
0bffa1f to
adafd03
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
May 28, 2026 14:05
adafd03 to
23baa0a
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
May 28, 2026 20:43
23baa0a to
0849e3b
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
June 1, 2026 16:58
0849e3b to
9017e88
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
June 2, 2026 00:38
9017e88 to
618954a
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
June 11, 2026 18:09
618954a to
a776781
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
June 12, 2026 01:52
a776781 to
eec8ea6
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
June 18, 2026 15:08
eec8ea6 to
8caf897
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
June 18, 2026 21:51
8caf897 to
5ff3b9f
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
July 12, 2026 17:34
5ff3b9f to
365b96a
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
July 12, 2026 22:38
365b96a to
2fdab53
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
July 16, 2026 23:47
2fdab53 to
9463c52
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
July 17, 2026 10:07
9463c52 to
6bc8cd7
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



This PR contains the following updates:
^11.1.0→^19.2.1611.1.0→19.2.16Angular is Vulnerable to XSRF Token Leakage via Protocol-Relative URLs in Angular HTTP Client
CVE-2025-66035 / GHSA-58c5-g7wp-6w37
More information
Details
The vulnerability is a Credential Leak by App Logic that leads to the unauthorized disclosure of the Cross-Site Request Forgery (XSRF) token to an attacker-controlled domain.
Angular's HttpClient has a built-in XSRF protection mechanism that works by checking if a request URL starts with a protocol (
http://orhttps://) to determine if it is cross-origin. If the URL starts with protocol-relative URL (//), it is incorrectly treated as a same-origin request, and the XSRF token is automatically added to theX-XSRF-TOKENheader.Impact
The token leakage completely bypasses Angular's built-in CSRF protection, allowing an attacker to capture the user's valid XSRF token. Once the token is obtained, the attacker can perform arbitrary Cross-Site Request Forgery (CSRF) attacks against the victim user's session.
Attack Preconditions
POST) to a protocol-relative URL (e.g.,//attacker.com) that they control.Patches
Workarounds
Developers should avoid using protocol-relative URLs (URLs starting with
//) in HttpClient requests. All backend communication URLs should be hardcoded as relative paths (starting with a single/) or fully qualified, trusted absolute URLs.Severity
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:H/SI:N/SA:NReferences
This data is provided by the GitHub Advisory Database (CC-BY 4.0).
Release Notes
angular/angular (@angular/common)
v19.2.16Compare Source
http
v19.2.15Compare Source
Breaking Changes
core
The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.
Before:
After:
A schematic is provided to automatically update
main.server.tsfiles to pass theBootstrapContextto thebootstrapApplicationcall.In addition,
getPlatform()anddestroyPlatform()will now returnnulland be a no-op respectively when running in a server environment.core
BootstrapContextfor improved server bootstrapping (#63639)v19.2.14Compare Source
compiler
migrations
v19.2.13Compare Source
common
service-worker
v19.2.12Compare Source
common
compiler
compiler-cli
core
rxResourceabort listener (#58306)withEventReplay()is invoked (#61352)onDestroyintoSignal. (#61514)platform-server
v19.2.11Compare Source
v19.2.10Compare Source
common
updateLatestValueif view is destroyed before promise resolves (#61064)core
platform-server
v19.2.9Compare Source
core
v19.2.8Compare Source
forms
v19.2.7Compare Source
common
NgOptimizedImageexceeds the preload limit (#60883)core
http
httpResource(#60802)v19.2.6Compare Source
compiler
compiler-cli
core
language-service
v19.2.5Compare Source
animations
@angular/common(#60660)compiler
compiler-cli
rootDir(#60555)core
language-service
migrations
router
service-worker
v19.2.4Compare Source
core
localize
platform-browser
platformBrowserTestingincludesplatformBrowserproviders (#60480)v19.2.3Compare Source
compiler-cli
core
platform-browser-dynamic
@angular/common(#60458)upgrade
v19.2.2Compare Source
platform-server
v19.2.1Compare Source
Breaking Changes
core
Angular now only applies known attributes from HTML in translated ICU content. Unknown attributes are dropped and not rendered.
(cherry picked from commit
03da204)core
v19.2.0Compare Source
common
httpResource(#59876)compiler
core
resource()(#59655)hasValuenarrowing toResourceRef(#59708)resource()'sprevious.state(#59708)forms
migrations
platform-browser
platform-server
v19.1.8Compare Source
benchpress
common
core
language-service
v19.1.7Compare Source
common
urlChangessubscribers when root scope is destroyed (#59703)co
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.