Skip to content

v11.2.0

Compare
Choose a tag to compare
@jfcere jfcere released this 05 Feb 02:42

Security Update

This is a security update for Angular 11 to fix a vulnerability reported with marked version < 4.0.10

GHSA-5v2h-r2cx-5xgj
High Severity
Vulnerable versions: < 4.0.10
Patched version: 4.0.10

⚠ Breaking Changes

Javascript file for marked moved from node_modules/marked/lib/marked.js to node_modules/marked/marked.min.js and should be changed accordingly.

If you are using Angular CLI, you will need to change the path of marked file in the scripts section of your angular.json like this...

"scripts": [
- "node_modules/marked/lib/marked.js",
+ "node_modules/marked/marked.min.js",
  "node_modules/prismjs/prism.js",
  "node_modules/prismjs/components/prism-typescript.js",
  ...
]

Commits