@angular/cli 19.2.20 → 19.2.22

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.
@@ -1948,6 +1948,14 @@
1948
1948
  "type": "object",
1949
1949
  "additionalProperties": false,
1950
1950
  "properties": {
1951
+ "allowedHosts": {
1952
+ "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.",
1953
+ "type": "array",
1954
+ "uniqueItems": true,
1955
+ "items": {
1956
+ "type": "string"
1957
+ }
1958
+ },
1951
1959
  "autoCsp": {
1952
1960
  "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.",
1953
1961
  "default": false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/cli",
3
- "version": "19.2.20",
3
+ "version": "19.2.22",
4
4
  "description": "CLI tool for Angular",
5
5
  "main": "lib/cli/index.js",
6
6
  "bin": {
@@ -25,12 +25,12 @@
25
25
  },
26
26
  "homepage": "https://github.com/angular/angular-cli",
27
27
  "dependencies": {
28
- "@angular-devkit/architect": "0.1902.20",
29
- "@angular-devkit/core": "19.2.20",
30
- "@angular-devkit/schematics": "19.2.20",
28
+ "@angular-devkit/architect": "0.1902.22",
29
+ "@angular-devkit/core": "19.2.22",
30
+ "@angular-devkit/schematics": "19.2.22",
31
31
  "@inquirer/prompts": "7.3.2",
32
32
  "@listr2/prompt-adapter-inquirer": "2.0.18",
33
- "@schematics/angular": "19.2.20",
33
+ "@schematics/angular": "19.2.22",
34
34
  "@yarnpkg/lockfile": "1.1.0",
35
35
  "ini": "5.0.0",
36
36
  "jsonc-parser": "3.3.1",
@@ -46,14 +46,14 @@
46
46
  "ng-update": {
47
47
  "migrations": "@schematics/angular/migrations/migration-collection.json",
48
48
  "packageGroup": {
49
- "@angular/cli": "19.2.20",
50
- "@angular/build": "19.2.20",
51
- "@angular/ssr": "19.2.20",
52
- "@angular-devkit/architect": "0.1902.20",
53
- "@angular-devkit/build-angular": "19.2.20",
54
- "@angular-devkit/build-webpack": "0.1902.20",
55
- "@angular-devkit/core": "19.2.20",
56
- "@angular-devkit/schematics": "19.2.20"
49
+ "@angular/cli": "19.2.22",
50
+ "@angular/build": "19.2.22",
51
+ "@angular/ssr": "19.2.22",
52
+ "@angular-devkit/architect": "0.1902.22",
53
+ "@angular-devkit/build-angular": "19.2.22",
54
+ "@angular-devkit/build-webpack": "0.1902.22",
55
+ "@angular-devkit/core": "19.2.22",
56
+ "@angular-devkit/schematics": "19.2.22"
57
57
  }
58
58
  },
59
59
  "packageManager": "pnpm@10.15.0",
@@ -22,4 +22,4 @@ class Version {
22
22
  this.patch = patch;
23
23
  }
24
24
  }
25
- exports.VERSION = new Version('19.2.20');
25
+ exports.VERSION = new Version('19.2.22');