@angular/cli 20.3.16 → 20.3.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2027,6 +2027,14 @@
2027
2027
  "type": "object",
2028
2028
  "additionalProperties": false,
2029
2029
  "properties": {
2030
+ "allowedHosts": {
2031
+ "description": "A list of hostnames that are allowed to access the server-side application. For more information, see https://angular.dev/best-practices/security#preventing-server-side-request-forgery-ssrf.",
2032
+ "type": "array",
2033
+ "uniqueItems": true,
2034
+ "items": {
2035
+ "type": "string"
2036
+ }
2037
+ },
2030
2038
  "autoCsp": {
2031
2039
  "description": "Enables automatic generation of a hash-based Strict Content Security Policy (https://web.dev/articles/strict-csp#choose-hash) based on scripts in index.html. Will default to true once we are out of experimental/preview phases.",
2032
2040
  "default": false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/cli",
3
- "version": "20.3.16",
3
+ "version": "20.3.17",
4
4
  "description": "CLI tool for Angular",
5
5
  "main": "lib/cli/index.js",
6
6
  "bin": {
@@ -25,13 +25,13 @@
25
25
  },
26
26
  "homepage": "https://github.com/angular/angular-cli",
27
27
  "dependencies": {
28
- "@angular-devkit/architect": "0.2003.16",
29
- "@angular-devkit/core": "20.3.16",
30
- "@angular-devkit/schematics": "20.3.16",
28
+ "@angular-devkit/architect": "0.2003.17",
29
+ "@angular-devkit/core": "20.3.17",
30
+ "@angular-devkit/schematics": "20.3.17",
31
31
  "@inquirer/prompts": "7.8.2",
32
32
  "@listr2/prompt-adapter-inquirer": "3.0.1",
33
33
  "@modelcontextprotocol/sdk": "1.26.0",
34
- "@schematics/angular": "20.3.16",
34
+ "@schematics/angular": "20.3.17",
35
35
  "@yarnpkg/lockfile": "1.1.0",
36
36
  "algoliasearch": "5.35.0",
37
37
  "ini": "5.0.0",
@@ -47,14 +47,14 @@
47
47
  "ng-update": {
48
48
  "migrations": "@schematics/angular/migrations/migration-collection.json",
49
49
  "packageGroup": {
50
- "@angular/cli": "20.3.16",
51
- "@angular/build": "20.3.16",
52
- "@angular/ssr": "20.3.16",
53
- "@angular-devkit/architect": "0.2003.16",
54
- "@angular-devkit/build-angular": "20.3.16",
55
- "@angular-devkit/build-webpack": "0.2003.16",
56
- "@angular-devkit/core": "20.3.16",
57
- "@angular-devkit/schematics": "20.3.16"
50
+ "@angular/cli": "20.3.17",
51
+ "@angular/build": "20.3.17",
52
+ "@angular/ssr": "20.3.17",
53
+ "@angular-devkit/architect": "0.2003.17",
54
+ "@angular-devkit/build-angular": "20.3.17",
55
+ "@angular-devkit/build-webpack": "0.2003.17",
56
+ "@angular-devkit/core": "20.3.17",
57
+ "@angular-devkit/schematics": "20.3.17"
58
58
  }
59
59
  },
60
60
  "packageManager": "pnpm@10.19.0",
@@ -22,4 +22,4 @@ class Version {
22
22
  this.patch = patch;
23
23
  }
24
24
  }
25
- exports.VERSION = new Version('20.3.16');
25
+ exports.VERSION = new Version('20.3.17');