@backstage/cli 0.36.0 → 0.36.1-next.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.
- package/CHANGELOG.md +24 -0
- package/config/tsconfig.json +1 -1
- package/package.json +25 -25
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @backstage/cli
|
|
2
2
|
|
|
3
|
+
## 0.36.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 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).
|
|
8
|
+
- 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.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/cli-module-build@0.1.1-next.1
|
|
11
|
+
- @backstage/cli-module-test-jest@0.1.1-next.1
|
|
12
|
+
- @backstage/eslint-plugin@0.2.3-next.0
|
|
13
|
+
|
|
14
|
+
## 0.36.1-next.0
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @backstage/cli-common@0.2.1-next.0
|
|
20
|
+
- @backstage/cli-module-build@0.1.1-next.0
|
|
21
|
+
- @backstage/cli-module-test-jest@0.1.1-next.0
|
|
22
|
+
- @backstage/cli-node@0.3.1-next.0
|
|
23
|
+
- @backstage/cli-defaults@0.1.1-next.0
|
|
24
|
+
- @backstage/errors@1.2.7
|
|
25
|
+
- @backstage/eslint-plugin@0.2.2
|
|
26
|
+
|
|
3
27
|
## 0.36.0
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|
package/config/tsconfig.json
CHANGED
|
@@ -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.
|
|
3
|
+
"version": "0.36.1-next.1",
|
|
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": "
|
|
46
|
-
"@backstage/cli-defaults": "
|
|
47
|
-
"@backstage/cli-module-build": "
|
|
48
|
-
"@backstage/cli-module-test-jest": "
|
|
49
|
-
"@backstage/cli-node": "
|
|
50
|
-
"@backstage/errors": "
|
|
51
|
-
"@backstage/eslint-plugin": "
|
|
45
|
+
"@backstage/cli-common": "0.2.1-next.0",
|
|
46
|
+
"@backstage/cli-defaults": "0.1.1-next.0",
|
|
47
|
+
"@backstage/cli-module-build": "0.1.1-next.1",
|
|
48
|
+
"@backstage/cli-module-test-jest": "0.1.1-next.1",
|
|
49
|
+
"@backstage/cli-node": "0.3.1-next.0",
|
|
50
|
+
"@backstage/errors": "1.2.7",
|
|
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": "^
|
|
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": "
|
|
83
|
-
"@backstage/backend-test-utils": "
|
|
84
|
-
"@backstage/catalog-client": "
|
|
85
|
-
"@backstage/config": "
|
|
86
|
-
"@backstage/core-app-api": "
|
|
87
|
-
"@backstage/core-components": "
|
|
88
|
-
"@backstage/core-plugin-api": "
|
|
89
|
-
"@backstage/dev-utils": "
|
|
90
|
-
"@backstage/errors": "
|
|
91
|
-
"@backstage/plugin-auth-backend": "
|
|
92
|
-
"@backstage/plugin-auth-backend-module-guest-provider": "
|
|
93
|
-
"@backstage/plugin-catalog-node": "
|
|
94
|
-
"@backstage/plugin-scaffolder-node": "
|
|
95
|
-
"@backstage/plugin-scaffolder-node-test-utils": "
|
|
96
|
-
"@backstage/test-utils": "
|
|
97
|
-
"@backstage/theme": "
|
|
82
|
+
"@backstage/backend-plugin-api": "1.9.0-next.1",
|
|
83
|
+
"@backstage/backend-test-utils": "1.11.2-next.1",
|
|
84
|
+
"@backstage/catalog-client": "1.14.0",
|
|
85
|
+
"@backstage/config": "1.3.6",
|
|
86
|
+
"@backstage/core-app-api": "1.20.0-next.1",
|
|
87
|
+
"@backstage/core-components": "0.18.9-next.0",
|
|
88
|
+
"@backstage/core-plugin-api": "1.12.5-next.1",
|
|
89
|
+
"@backstage/dev-utils": "1.1.22-next.1",
|
|
90
|
+
"@backstage/errors": "1.2.7",
|
|
91
|
+
"@backstage/plugin-auth-backend": "0.28.0-next.1",
|
|
92
|
+
"@backstage/plugin-auth-backend-module-guest-provider": "0.2.18-next.1",
|
|
93
|
+
"@backstage/plugin-catalog-node": "2.1.1-next.1",
|
|
94
|
+
"@backstage/plugin-scaffolder-node": "0.13.1-next.1",
|
|
95
|
+
"@backstage/plugin-scaffolder-node-test-utils": "0.3.10-next.1",
|
|
96
|
+
"@backstage/test-utils": "1.7.17-next.1",
|
|
97
|
+
"@backstage/theme": "0.7.2",
|
|
98
98
|
"@jest/environment-jsdom-abstract": "^30.0.0",
|
|
99
99
|
"@types/fs-extra": "^11.0.0",
|
|
100
100
|
"@types/jest": "^30.0.0",
|