@angular/cli 19.1.4 → 19.1.6

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.
package/README.md CHANGED
@@ -2,4 +2,4 @@
2
2
 
3
3
  The sources for this package are in the [Angular CLI](https://github.com/angular/angular-cli) repository. Please file issues and pull requests against that repository.
4
4
 
5
- Usage information and reference details can be found in repository [README](../../../README.md) file.
5
+ Usage information and reference details can be found in repository [README](https://github.com/angular/angular-cli/blob/main/README.md) file.
@@ -3813,6 +3813,23 @@
3813
3813
  "type": "string",
3814
3814
  "description": "SSL certificate to use for serving HTTPS."
3815
3815
  },
3816
+ "allowedHosts": {
3817
+ "description": "The hosts that can access the development server. This option sets the Vite option of the same name. For further details: https://vite.dev/config/server-options.html#server-allowedhosts",
3818
+ "default": [],
3819
+ "oneOf": [
3820
+ {
3821
+ "type": "array",
3822
+ "description": "List of hosts that are allowed to access the development server.",
3823
+ "items": {
3824
+ "type": "string"
3825
+ }
3826
+ },
3827
+ {
3828
+ "type": "boolean",
3829
+ "description": "Indicates that all hosts are allowed. This is not recommended and a security risk."
3830
+ }
3831
+ ]
3832
+ },
3816
3833
  "headers": {
3817
3834
  "type": "object",
3818
3835
  "description": "Custom HTTP headers to be added to all responses.",
@@ -3961,7 +3978,7 @@
3961
3978
  },
3962
3979
  "allowedHosts": {
3963
3980
  "type": "array",
3964
- "description": "List of hosts that are allowed to access the dev server. This option has no effect when using the 'application' or other esbuild-based builders.",
3981
+ "description": "List of hosts that are allowed to access the dev server.",
3965
3982
  "default": [],
3966
3983
  "items": {
3967
3984
  "type": "string"
@@ -3973,7 +3990,7 @@
3973
3990
  },
3974
3991
  "disableHostCheck": {
3975
3992
  "type": "boolean",
3976
- "description": "Don't verify connected clients are part of allowed hosts. This option has no effect when using the 'application' or other esbuild-based builders.",
3993
+ "description": "Don't verify connected clients are part of allowed hosts.",
3977
3994
  "default": false
3978
3995
  },
3979
3996
  "hmr": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/cli",
3
- "version": "19.1.4",
3
+ "version": "19.1.6",
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.1901.4",
29
- "@angular-devkit/core": "19.1.4",
30
- "@angular-devkit/schematics": "19.1.4",
28
+ "@angular-devkit/architect": "0.1901.6",
29
+ "@angular-devkit/core": "19.1.6",
30
+ "@angular-devkit/schematics": "19.1.6",
31
31
  "@inquirer/prompts": "7.2.1",
32
32
  "@listr2/prompt-adapter-inquirer": "2.0.18",
33
- "@schematics/angular": "19.1.4",
33
+ "@schematics/angular": "19.1.6",
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.1.4",
50
- "@angular/build": "19.1.4",
51
- "@angular/ssr": "19.1.4",
52
- "@angular-devkit/architect": "0.1901.4",
53
- "@angular-devkit/build-angular": "19.1.4",
54
- "@angular-devkit/build-webpack": "0.1901.4",
55
- "@angular-devkit/core": "19.1.4",
56
- "@angular-devkit/schematics": "19.1.4"
49
+ "@angular/cli": "19.1.6",
50
+ "@angular/build": "19.1.6",
51
+ "@angular/ssr": "19.1.6",
52
+ "@angular-devkit/architect": "0.1901.6",
53
+ "@angular-devkit/build-angular": "19.1.6",
54
+ "@angular-devkit/build-webpack": "0.1901.6",
55
+ "@angular-devkit/core": "19.1.6",
56
+ "@angular-devkit/schematics": "19.1.6"
57
57
  }
58
58
  },
59
59
  "engines": {
@@ -22,4 +22,4 @@ class Version {
22
22
  this.patch = patch;
23
23
  }
24
24
  }
25
- exports.VERSION = new Version('19.1.4');
25
+ exports.VERSION = new Version('19.1.6');