@backstage/cli 0.36.1-next.0 → 0.36.1-next.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # @backstage/cli
2
2
 
3
+ ## 0.36.1-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 482ceed: Migrated from `assertError` to `toError` for error handling.
8
+ - Updated dependencies
9
+ - @backstage/errors@1.3.0-next.0
10
+ - @backstage/cli-common@0.2.1-next.1
11
+ - @backstage/cli-node@0.3.1-next.1
12
+ - @backstage/cli-module-build@0.1.1-next.2
13
+
14
+ ## 0.36.1-next.1
15
+
16
+ ### Patch Changes
17
+
18
+ - 2e5c5f8: Bumped `glob` dependency from v7/v8/v11 to v13 to address security vulnerabilities in older versions. Bumped `rollup` from v4.27 to v4.59+ to fix a high severity path traversal vulnerability (GHSA-mw96-cpmx-2vgc).
19
+ - a7a14b7: Added `DOM.AsyncIterable` to the default `lib` in the shared TypeScript configuration, enabling standard async iteration support for DOM APIs such as `FileSystemDirectoryHandle`. This aligns behavior with [TypeScript 6.0](https://devblogs.microsoft.com/typescript/announcing-typescript-6-0/#the-dom-lib-now-contains-domiterable-and-domasynciterable), where this lib is included in `DOM` by default.
20
+ - Updated dependencies
21
+ - @backstage/cli-module-build@0.1.1-next.1
22
+ - @backstage/cli-module-test-jest@0.1.1-next.1
23
+ - @backstage/eslint-plugin@0.2.3-next.0
24
+
3
25
  ## 0.36.1-next.0
4
26
 
5
27
  ### Patch Changes
@@ -12,7 +12,7 @@
12
12
  "incremental": true,
13
13
  "isolatedModules": true,
14
14
  "jsx": "react",
15
- "lib": ["DOM", "DOM.Iterable", "ScriptHost", "ES2023"],
15
+ "lib": ["DOM", "DOM.Iterable", "DOM.AsyncIterable", "ScriptHost", "ES2023"],
16
16
  "module": "ES2020",
17
17
  "moduleResolution": "bundler",
18
18
  "noEmit": false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/cli",
3
- "version": "0.36.1-next.0",
3
+ "version": "0.36.1-next.2",
4
4
  "description": "CLI for developing Backstage plugins and apps",
5
5
  "backstage": {
6
6
  "role": "cli"
@@ -42,13 +42,13 @@
42
42
  "watch": "./src"
43
43
  },
44
44
  "dependencies": {
45
- "@backstage/cli-common": "0.2.1-next.0",
45
+ "@backstage/cli-common": "0.2.1-next.1",
46
46
  "@backstage/cli-defaults": "0.1.1-next.0",
47
- "@backstage/cli-module-build": "0.1.1-next.0",
48
- "@backstage/cli-module-test-jest": "0.1.1-next.0",
49
- "@backstage/cli-node": "0.3.1-next.0",
50
- "@backstage/errors": "1.2.7",
51
- "@backstage/eslint-plugin": "0.2.2",
47
+ "@backstage/cli-module-build": "0.1.1-next.2",
48
+ "@backstage/cli-module-test-jest": "0.1.1-next.1",
49
+ "@backstage/cli-node": "0.3.1-next.1",
50
+ "@backstage/errors": "1.3.0-next.0",
51
+ "@backstage/eslint-plugin": "0.2.3-next.0",
52
52
  "@manypkg/get-packages": "^1.1.3",
53
53
  "@spotify/eslint-config-base": "^15.0.0",
54
54
  "@spotify/eslint-config-react": "^15.0.0",
@@ -71,7 +71,7 @@
71
71
  "eslint-plugin-react-hooks": "^5.0.0",
72
72
  "eslint-plugin-unused-imports": "^4.1.4",
73
73
  "fs-extra": "^11.2.0",
74
- "glob": "^7.1.7",
74
+ "glob": "^13.0.0",
75
75
  "jest-css-modules": "^2.1.0",
76
76
  "pirates": "^4.0.6",
77
77
  "postcss": "^8.1.0",
@@ -79,22 +79,22 @@
79
79
  "yaml": "^2.0.0"
80
80
  },
81
81
  "devDependencies": {
82
- "@backstage/backend-plugin-api": "1.8.1-next.0",
83
- "@backstage/backend-test-utils": "1.11.2-next.0",
84
- "@backstage/catalog-client": "1.14.0",
85
- "@backstage/config": "1.3.6",
86
- "@backstage/core-app-api": "1.19.7-next.0",
87
- "@backstage/core-components": "0.18.9-next.0",
88
- "@backstage/core-plugin-api": "1.12.5-next.0",
89
- "@backstage/dev-utils": "1.1.22-next.0",
90
- "@backstage/errors": "1.2.7",
91
- "@backstage/plugin-auth-backend": "0.28.0-next.0",
92
- "@backstage/plugin-auth-backend-module-guest-provider": "0.2.18-next.0",
93
- "@backstage/plugin-catalog-node": "2.1.1-next.0",
94
- "@backstage/plugin-scaffolder-node": "0.13.1-next.0",
95
- "@backstage/plugin-scaffolder-node-test-utils": "0.3.10-next.0",
96
- "@backstage/test-utils": "1.7.17-next.0",
97
- "@backstage/theme": "0.7.2",
82
+ "@backstage/backend-plugin-api": "1.9.0-next.2",
83
+ "@backstage/backend-test-utils": "1.11.2-next.2",
84
+ "@backstage/catalog-client": "1.14.1-next.0",
85
+ "@backstage/config": "1.3.7-next.0",
86
+ "@backstage/core-app-api": "1.20.0-next.2",
87
+ "@backstage/core-components": "0.18.9-next.1",
88
+ "@backstage/core-plugin-api": "1.12.5-next.2",
89
+ "@backstage/dev-utils": "1.1.22-next.2",
90
+ "@backstage/errors": "1.3.0-next.0",
91
+ "@backstage/plugin-auth-backend": "0.28.0-next.2",
92
+ "@backstage/plugin-auth-backend-module-guest-provider": "0.2.18-next.2",
93
+ "@backstage/plugin-catalog-node": "2.2.0-next.2",
94
+ "@backstage/plugin-scaffolder-node": "0.13.2-next.2",
95
+ "@backstage/plugin-scaffolder-node-test-utils": "0.3.10-next.1",
96
+ "@backstage/test-utils": "1.7.17-next.2",
97
+ "@backstage/theme": "0.7.3-next.0",
98
98
  "@jest/environment-jsdom-abstract": "^30.0.0",
99
99
  "@types/fs-extra": "^11.0.0",
100
100
  "@types/jest": "^30.0.0",