chore(deps): update dependency @angular/common to v19 [security] - #117
Open
renovate[bot] wants to merge 1 commit into
Open
chore(deps): update dependency @angular/common to v19 [security]#117renovate[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 17:53
0e9c89f to
e489a14
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
April 15, 2026 09:40
e489a14 to
c2907de
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
April 16, 2026 08:49
c2907de to
08daa7d
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
April 16, 2026 14:00
08daa7d to
4e2e364
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
April 16, 2026 20:36
4e2e364 to
dc88abf
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
April 23, 2026 11:10
dc88abf to
59e3c64
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
April 23, 2026 15:10
59e3c64 to
3e6b8f9
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
3 times, most recently
from
April 29, 2026 13:53
95daa73 to
b9edf1d
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
April 29, 2026 22:07
b9edf1d to
7b6fd1c
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
April 30, 2026 15:43
7b6fd1c to
c576f63
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
May 18, 2026 19:37
c9847bd to
d1de3b0
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
May 18, 2026 23:13
d1de3b0 to
1efc181
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
May 22, 2026 17:39
1efc181 to
60942b3
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
May 22, 2026 21:47
60942b3 to
4256946
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
May 28, 2026 17:52
4256946 to
bf7b05f
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
May 29, 2026 00:41
bf7b05f to
b212eaa
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
June 1, 2026 22:50
b212eaa to
2b1ad79
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
June 2, 2026 02:48
2b1ad79 to
10f6fc4
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
June 11, 2026 19:34
10f6fc4 to
b51c20e
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
June 12, 2026 02:05
b51c20e to
1d70d72
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
July 12, 2026 10:51
1d70d72 to
e337554
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
July 12, 2026 16:46
e337554 to
d719be2
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
July 18, 2026 11:03
d719be2 to
592e096
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
July 18, 2026 13:41
592e096 to
1f19392
Compare
renovate
Bot
force-pushed
the
renovate/npm-angular-common-vulnerability
branch
from
July 20, 2026 22:32
1f19392 to
314ba86
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:
^8.1.1 || ^11.0.0→^19.2.16 ^19.2.1611.2.4→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
urlChangessuConfiguration
📅 Schedule: (in timezone Europe/Paris)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.