@backstage/cli 0.33.0-next.2 → 0.33.0
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 +30 -0
- package/dist/packages/backend-defaults/package.json.cjs.js +1 -1
- package/dist/packages/backend-plugin-api/package.json.cjs.js +1 -1
- package/dist/packages/backend-test-utils/package.json.cjs.js +1 -1
- package/dist/packages/catalog-client/package.json.cjs.js +1 -1
- package/dist/packages/cli/package.json.cjs.js +1 -1
- package/dist/packages/core-app-api/package.json.cjs.js +1 -1
- package/dist/packages/core-components/package.json.cjs.js +1 -1
- package/dist/packages/core-plugin-api/package.json.cjs.js +1 -1
- package/dist/packages/dev-utils/package.json.cjs.js +1 -1
- package/dist/packages/test-utils/package.json.cjs.js +1 -1
- package/dist/plugins/auth-backend/package.json.cjs.js +1 -1
- package/dist/plugins/auth-backend-module-guest-provider/package.json.cjs.js +1 -1
- package/dist/plugins/catalog-node/package.json.cjs.js +1 -1
- package/dist/plugins/scaffolder-node/package.json.cjs.js +1 -1
- package/dist/plugins/scaffolder-node-test-utils/package.json.cjs.js +1 -1
- package/package.json +27 -27
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @backstage/cli
|
|
2
2
|
|
|
3
|
+
## 0.33.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- eef0e83: Internal update to promote the modular CLI entrypoint to stable.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- d07fe35: Added user feedback when opening config docs in browser. The command now clearly indicates what it's doing and provides fallback instructions if the browser fails to open.
|
|
12
|
+
- ce70439: The `BACKSTAGE_CLI_EXPERIMENTAL_BUILD_CACHE` flag has been removed. Existing users are encouraged to switch to `EXPERIMENTAL_RSPACK` instead.
|
|
13
|
+
- 1d8f00b: Switched to using the `ModuleFederationPlugin` from `@module-federation/enhanced/rspack` for Rspack, rather than the built-in one.
|
|
14
|
+
- 2b9633f: The experimental `FORCE_REACT_DEVELOPMENT` flag has been removed.
|
|
15
|
+
- d8c4a54: Only use the caching Jest module loader for frontend packages in order to avoid breaking real ESM module imports.
|
|
16
|
+
- d6d63c7: Updating the scaffolder action boilerplate to use new `zod` schema
|
|
17
|
+
- e36e855: Added `backstage.pluginId` field in `package.json` to all default plugin package templates for the `new` command.
|
|
18
|
+
- 1bab255: Internal refactor to combine alpha `build` and `start` modules.
|
|
19
|
+
- 713e957: fix: merge eslint reports when using json format
|
|
20
|
+
- 8a0164c: Fix an issue where some commands were not usable because of missing dist files
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- @backstage/eslint-plugin@0.1.11
|
|
23
|
+
- @backstage/catalog-model@1.7.4
|
|
24
|
+
- @backstage/cli-common@0.1.15
|
|
25
|
+
- @backstage/cli-node@0.2.13
|
|
26
|
+
- @backstage/config@1.3.2
|
|
27
|
+
- @backstage/config-loader@1.10.1
|
|
28
|
+
- @backstage/errors@1.2.7
|
|
29
|
+
- @backstage/integration@1.17.0
|
|
30
|
+
- @backstage/release-manifests@0.0.13
|
|
31
|
+
- @backstage/types@1.2.1
|
|
32
|
+
|
|
3
33
|
## 0.33.0-next.2
|
|
4
34
|
|
|
5
35
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/cli",
|
|
3
|
-
"version": "0.33.0
|
|
3
|
+
"version": "0.33.0",
|
|
4
4
|
"description": "CLI for developing Backstage plugins and apps",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "cli"
|
|
@@ -47,16 +47,16 @@
|
|
|
47
47
|
]
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@backstage/catalog-model": "1.7.4",
|
|
51
|
-
"@backstage/cli-common": "0.1.15",
|
|
52
|
-
"@backstage/cli-node": "0.2.13",
|
|
53
|
-
"@backstage/config": "1.3.2",
|
|
54
|
-
"@backstage/config-loader": "1.10.1",
|
|
55
|
-
"@backstage/errors": "1.2.7",
|
|
56
|
-
"@backstage/eslint-plugin": "0.1.11
|
|
57
|
-
"@backstage/integration": "1.17.0",
|
|
58
|
-
"@backstage/release-manifests": "0.0.13",
|
|
59
|
-
"@backstage/types": "1.2.1",
|
|
50
|
+
"@backstage/catalog-model": "^1.7.4",
|
|
51
|
+
"@backstage/cli-common": "^0.1.15",
|
|
52
|
+
"@backstage/cli-node": "^0.2.13",
|
|
53
|
+
"@backstage/config": "^1.3.2",
|
|
54
|
+
"@backstage/config-loader": "^1.10.1",
|
|
55
|
+
"@backstage/errors": "^1.2.7",
|
|
56
|
+
"@backstage/eslint-plugin": "^0.1.11",
|
|
57
|
+
"@backstage/integration": "^1.17.0",
|
|
58
|
+
"@backstage/release-manifests": "^0.0.13",
|
|
59
|
+
"@backstage/types": "^1.2.1",
|
|
60
60
|
"@manypkg/get-packages": "^1.1.3",
|
|
61
61
|
"@module-federation/enhanced": "^0.9.0",
|
|
62
62
|
"@octokit/graphql": "^5.0.0",
|
|
@@ -163,22 +163,22 @@
|
|
|
163
163
|
"zod-validation-error": "^3.4.0"
|
|
164
164
|
},
|
|
165
165
|
"devDependencies": {
|
|
166
|
-
"@backstage/backend-plugin-api": "1.4.0
|
|
167
|
-
"@backstage/backend-test-utils": "1.6.0
|
|
168
|
-
"@backstage/catalog-client": "1.10.1
|
|
169
|
-
"@backstage/config": "1.3.2",
|
|
170
|
-
"@backstage/core-app-api": "1.17.
|
|
171
|
-
"@backstage/core-components": "0.17.3
|
|
172
|
-
"@backstage/core-plugin-api": "1.10.
|
|
173
|
-
"@backstage/dev-utils": "1.1.11
|
|
174
|
-
"@backstage/errors": "1.2.7",
|
|
175
|
-
"@backstage/plugin-auth-backend": "0.25.1
|
|
176
|
-
"@backstage/plugin-auth-backend-module-guest-provider": "0.2.9
|
|
177
|
-
"@backstage/plugin-catalog-node": "1.17.1
|
|
178
|
-
"@backstage/plugin-scaffolder-node": "0.9.0
|
|
179
|
-
"@backstage/plugin-scaffolder-node-test-utils": "0.3.0
|
|
180
|
-
"@backstage/test-utils": "1.7.
|
|
181
|
-
"@backstage/theme": "0.6.6",
|
|
166
|
+
"@backstage/backend-plugin-api": "^1.4.0",
|
|
167
|
+
"@backstage/backend-test-utils": "^1.6.0",
|
|
168
|
+
"@backstage/catalog-client": "^1.10.1",
|
|
169
|
+
"@backstage/config": "^1.3.2",
|
|
170
|
+
"@backstage/core-app-api": "^1.17.1",
|
|
171
|
+
"@backstage/core-components": "^0.17.3",
|
|
172
|
+
"@backstage/core-plugin-api": "^1.10.8",
|
|
173
|
+
"@backstage/dev-utils": "^1.1.11",
|
|
174
|
+
"@backstage/errors": "^1.2.7",
|
|
175
|
+
"@backstage/plugin-auth-backend": "^0.25.1",
|
|
176
|
+
"@backstage/plugin-auth-backend-module-guest-provider": "^0.2.9",
|
|
177
|
+
"@backstage/plugin-catalog-node": "^1.17.1",
|
|
178
|
+
"@backstage/plugin-scaffolder-node": "^0.9.0",
|
|
179
|
+
"@backstage/plugin-scaffolder-node-test-utils": "^0.3.0",
|
|
180
|
+
"@backstage/test-utils": "^1.7.9",
|
|
181
|
+
"@backstage/theme": "^0.6.6",
|
|
182
182
|
"@rspack/core": "^1.3.9",
|
|
183
183
|
"@rspack/dev-server": "^1.1.1",
|
|
184
184
|
"@rspack/plugin-react-refresh": "^1.4.2",
|