@angular/cli 17.3.0-rc.0 → 17.3.1

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.
@@ -3607,11 +3607,11 @@
3607
3607
  },
3608
3608
  "publicHost": {
3609
3609
  "type": "string",
3610
- "description": "The URL that the browser client (or live-reload client, if enabled) should use to connect to the development server. Use for a complex dev server setup, such as one with reverse proxies."
3610
+ "description": "The URL that the browser client (or live-reload client, if enabled) should use to connect to the development server. Use for a complex dev server setup, such as one with reverse proxies. This option has no effect when using the 'application' or other esbuild-based builders."
3611
3611
  },
3612
3612
  "allowedHosts": {
3613
3613
  "type": "array",
3614
- "description": "List of hosts that are allowed to access the dev server.",
3614
+ "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.",
3615
3615
  "default": [],
3616
3616
  "items": {
3617
3617
  "type": "string"
@@ -3623,7 +3623,7 @@
3623
3623
  },
3624
3624
  "disableHostCheck": {
3625
3625
  "type": "boolean",
3626
- "description": "Don't verify connected clients are part of allowed hosts.",
3626
+ "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.",
3627
3627
  "default": false
3628
3628
  },
3629
3629
  "hmr": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/cli",
3
- "version": "17.3.0-rc.0",
3
+ "version": "17.3.1",
4
4
  "description": "CLI tool for Angular",
5
5
  "main": "lib/cli/index.js",
6
6
  "bin": {
@@ -25,10 +25,10 @@
25
25
  },
26
26
  "homepage": "https://github.com/angular/angular-cli",
27
27
  "dependencies": {
28
- "@angular-devkit/architect": "0.1703.0-rc.0",
29
- "@angular-devkit/core": "17.3.0-rc.0",
30
- "@angular-devkit/schematics": "17.3.0-rc.0",
31
- "@schematics/angular": "17.3.0-rc.0",
28
+ "@angular-devkit/architect": "0.1703.1",
29
+ "@angular-devkit/core": "17.3.1",
30
+ "@angular-devkit/schematics": "17.3.1",
31
+ "@schematics/angular": "17.3.1",
32
32
  "@yarnpkg/lockfile": "1.1.0",
33
33
  "ansi-colors": "4.1.3",
34
34
  "ini": "4.1.2",
@@ -47,13 +47,13 @@
47
47
  "ng-update": {
48
48
  "migrations": "@schematics/angular/migrations/migration-collection.json",
49
49
  "packageGroup": {
50
- "@angular/cli": "17.3.0-rc.0",
51
- "@angular/ssr": "17.3.0-rc.0",
52
- "@angular-devkit/architect": "0.1703.0-rc.0",
53
- "@angular-devkit/build-angular": "17.3.0-rc.0",
54
- "@angular-devkit/build-webpack": "0.1703.0-rc.0",
55
- "@angular-devkit/core": "17.3.0-rc.0",
56
- "@angular-devkit/schematics": "17.3.0-rc.0"
50
+ "@angular/cli": "17.3.1",
51
+ "@angular/ssr": "17.3.1",
52
+ "@angular-devkit/architect": "0.1703.1",
53
+ "@angular-devkit/build-angular": "17.3.1",
54
+ "@angular-devkit/build-webpack": "0.1703.1",
55
+ "@angular-devkit/core": "17.3.1",
56
+ "@angular-devkit/schematics": "17.3.1"
57
57
  }
58
58
  },
59
59
  "engines": {
@@ -25,5 +25,5 @@ class Version {
25
25
  }
26
26
  }
27
27
  // TODO(bazel): Convert this to use build-time version stamping after flipping the build script to use bazel
28
- // export const VERSION = new Version('17.3.0-rc.0');
28
+ // export const VERSION = new Version('17.3.1');
29
29
  exports.VERSION = new Version(JSON.parse((0, fs_1.readFileSync)((0, path_1.resolve)(__dirname, '../../package.json'), 'utf-8')).version);