@angular/cli 19.0.0-next.12 → 19.0.0-next.13

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.
@@ -1809,6 +1809,33 @@
1809
1809
  "type": "string",
1810
1810
  "description": "Customize the base path for the URLs of resources in 'index.html' and component stylesheets. This option is only necessary for specific deployment scenarios, such as with Angular Elements or when utilizing different CDN locations."
1811
1811
  },
1812
+ "security": {
1813
+ "description": "Security features to protect against XSS and other common attacks",
1814
+ "type": "object",
1815
+ "additionalProperties": false,
1816
+ "properties": {
1817
+ "autoCsp": {
1818
+ "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.",
1819
+ "default": false,
1820
+ "oneOf": [
1821
+ {
1822
+ "type": "object",
1823
+ "properties": {
1824
+ "unsafeEval": {
1825
+ "type": "boolean",
1826
+ "description": "Include the `unsafe-eval` directive (https://web.dev/articles/strict-csp#remove-eval) in the auto-CSP. Please only enable this if you are absolutely sure that you need to, as allowing calls to eval will weaken the XSS defenses provided by the auto-CSP.",
1827
+ "default": false
1828
+ }
1829
+ },
1830
+ "additionalProperties": false
1831
+ },
1832
+ {
1833
+ "type": "boolean"
1834
+ }
1835
+ ]
1836
+ }
1837
+ }
1838
+ },
1812
1839
  "scripts": {
1813
1840
  "description": "Global scripts to be included in the build.",
1814
1841
  "type": "array",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/cli",
3
- "version": "19.0.0-next.12",
3
+ "version": "19.0.0-next.13",
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.1900.0-next.12",
29
- "@angular-devkit/core": "19.0.0-next.12",
30
- "@angular-devkit/schematics": "19.0.0-next.12",
28
+ "@angular-devkit/architect": "0.1900.0-next.13",
29
+ "@angular-devkit/core": "19.0.0-next.13",
30
+ "@angular-devkit/schematics": "19.0.0-next.13",
31
31
  "@inquirer/prompts": "7.0.0",
32
32
  "@listr2/prompt-adapter-inquirer": "2.0.17",
33
- "@schematics/angular": "19.0.0-next.12",
33
+ "@schematics/angular": "19.0.0-next.13",
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.0.0-next.12",
50
- "@angular/build": "19.0.0-next.12",
51
- "@angular/ssr": "19.0.0-next.12",
52
- "@angular-devkit/architect": "0.1900.0-next.12",
53
- "@angular-devkit/build-angular": "19.0.0-next.12",
54
- "@angular-devkit/build-webpack": "0.1900.0-next.12",
55
- "@angular-devkit/core": "19.0.0-next.12",
56
- "@angular-devkit/schematics": "19.0.0-next.12"
49
+ "@angular/cli": "19.0.0-next.13",
50
+ "@angular/build": "19.0.0-next.13",
51
+ "@angular/ssr": "19.0.0-next.13",
52
+ "@angular-devkit/architect": "0.1900.0-next.13",
53
+ "@angular-devkit/build-angular": "19.0.0-next.13",
54
+ "@angular-devkit/build-webpack": "0.1900.0-next.13",
55
+ "@angular-devkit/core": "19.0.0-next.13",
56
+ "@angular-devkit/schematics": "19.0.0-next.13"
57
57
  }
58
58
  },
59
59
  "packageManager": "yarn@4.5.0",
@@ -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('19.0.0-next.12');
28
+ // export const VERSION = new Version('19.0.0-next.13');
29
29
  exports.VERSION = new Version(JSON.parse((0, fs_1.readFileSync)((0, path_1.resolve)(__dirname, '../../package.json'), 'utf-8')).version);