@backstage/cli 0.31.0-next.1 → 0.32.0-next.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.
Files changed (28) hide show
  1. package/CHANGELOG.md +53 -0
  2. package/dist/commands/index.cjs.js +10 -41
  3. package/dist/lib/runner/runBackend.cjs.js +4 -1
  4. package/dist/{commands → modules/lint/commands/package}/lint.cjs.js +1 -1
  5. package/dist/{commands → modules/lint/commands}/repo/lint.cjs.js +7 -7
  6. package/dist/modules/lint/index.cjs.js +43 -0
  7. package/dist/{commands/clean → modules/maintenance/commands/package}/clean.cjs.js +1 -1
  8. package/dist/{commands → modules/maintenance/commands/package}/pack.cjs.js +4 -4
  9. package/dist/{commands → modules/maintenance/commands}/repo/clean.cjs.js +1 -1
  10. package/dist/{commands → modules/maintenance/commands}/repo/fix.cjs.js +2 -2
  11. package/dist/{commands → modules/maintenance/commands}/repo/list-deprecations.cjs.js +1 -1
  12. package/dist/modules/maintenance/index.cjs.js +24 -0
  13. package/dist/modules/migrate/commands/packageExports.cjs.js +1 -1
  14. package/dist/packages/backend-defaults/package.json.cjs.js +1 -1
  15. package/dist/packages/backend-plugin-api/package.json.cjs.js +1 -1
  16. package/dist/packages/backend-test-utils/package.json.cjs.js +1 -1
  17. package/dist/packages/cli/package.json.cjs.js +2 -2
  18. package/dist/packages/core-app-api/package.json.cjs.js +1 -1
  19. package/dist/packages/core-components/package.json.cjs.js +1 -1
  20. package/dist/packages/core-plugin-api/package.json.cjs.js +1 -1
  21. package/dist/packages/dev-utils/package.json.cjs.js +1 -1
  22. package/dist/packages/test-utils/package.json.cjs.js +1 -1
  23. package/dist/plugins/auth-backend/package.json.cjs.js +1 -1
  24. package/dist/plugins/auth-backend-module-guest-provider/package.json.cjs.js +1 -1
  25. package/dist/plugins/catalog-node/package.json.cjs.js +1 -1
  26. package/dist/plugins/scaffolder-node/package.json.cjs.js +1 -1
  27. package/dist/plugins/scaffolder-node-test-utils/package.json.cjs.js +1 -1
  28. package/package.json +16 -16
package/CHANGELOG.md CHANGED
@@ -1,5 +1,58 @@
1
1
  # @backstage/cli
2
2
 
3
+ ## 0.32.0-next.0
4
+
5
+ ### Minor Changes
6
+
7
+ - c7254ae: Internal update to move the `clean`, `pre/postpack` and `fix` commands into their own separate module.
8
+
9
+ ### Patch Changes
10
+
11
+ - 4ea76f7: Bump @module-federation/enhanced ^0.9.0 to fix GHSA-593f-38f6-jp5m
12
+ - 87a5cb4: Fixed an issue causing the `repo lint` command to fail when the `--max-warnings` option was used.
13
+ - d83f3f4: Resolved a problem where the `start` command did not correctly handle multiple `--require` flags, ensuring all specified modules are now properly loaded.
14
+ - Updated dependencies
15
+ - @backstage/catalog-model@1.7.3
16
+ - @backstage/cli-common@0.1.15
17
+ - @backstage/cli-node@0.2.13
18
+ - @backstage/config@1.3.2
19
+ - @backstage/config-loader@1.10.0
20
+ - @backstage/errors@1.2.7
21
+ - @backstage/eslint-plugin@0.1.10
22
+ - @backstage/integration@1.16.2
23
+ - @backstage/release-manifests@0.0.12
24
+ - @backstage/types@1.2.1
25
+
26
+ ## 0.31.0
27
+
28
+ ### Minor Changes
29
+
30
+ - 5b70679: **BREAKING**: ESLint warnings no longer trigger system exit codes like errors do.
31
+
32
+ Set the max number of warnings to `-1` during linting to enable the gradual adoption of new ESLint rules. To restore the previous behavior, include the `--max-warnings 0` flag in the `backstage-cli <repo|package> lint` command.
33
+
34
+ ### Patch Changes
35
+
36
+ - 0586d4c: Internal change to move the `migrate` and `version:*` commands into a new migrate module.
37
+ - e0b226b: build(deps): bump `esbuild` from 0.24.2 to 0.25.0
38
+ - 4d45498: Fixed the package prepack command so that it no longer produces unnecessary `index` entries in the `typesVersions` map, which could cause `/index` to be added when automatically adding imports.
39
+ - 485b3ba: Internal update to move `test` commands to a separate module.
40
+ - a76c482: Internal change to migrate `lint` to the new module system.
41
+ - 8df78bf: Internal update to move build commands to a CLI module.
42
+ - d0fc357: Internal update to move `info` commands to a separate module.
43
+ - f8bd342: Fix a bug in the translation of the deprecated `--scope` option for the `new` command that could cause plugins to have `backstage-backstage-plugin` in their name.
44
+ - Updated dependencies
45
+ - @backstage/config-loader@1.10.0
46
+ - @backstage/integration@1.16.2
47
+ - @backstage/catalog-model@1.7.3
48
+ - @backstage/cli-common@0.1.15
49
+ - @backstage/cli-node@0.2.13
50
+ - @backstage/config@1.3.2
51
+ - @backstage/errors@1.2.7
52
+ - @backstage/eslint-plugin@0.1.10
53
+ - @backstage/release-manifests@0.0.12
54
+ - @backstage/types@1.2.1
55
+
3
56
  ## 0.31.0-next.1
4
57
 
5
58
  ### Minor Changes
@@ -6,60 +6,29 @@ var index$2 = require('../modules/build/index.cjs.js');
6
6
  var index$3 = require('../modules/info/index.cjs.js');
7
7
  var index$1 = require('../modules/migrate/index.cjs.js');
8
8
  var index$4 = require('../modules/test/index.cjs.js');
9
+ var index$5 = require('../modules/lint/index.cjs.js');
10
+ var index$6 = require('../modules/maintenance/index.cjs.js');
9
11
 
10
12
  function registerRepoCommand(program) {
11
13
  const command = program.command("repo [command]").description("Command that run across an entire Backstage project");
12
14
  index$2.registerRepoCommands(command);
13
15
  index$4.registerRepoCommands(command);
14
- command.command("lint").description("Lint all packages in the project").option(
15
- "--format <format>",
16
- "Lint report output format",
17
- "eslint-formatter-friendly"
18
- ).option(
19
- "--output-file <path>",
20
- "Write the lint report to a file instead of stdout"
21
- ).option(
22
- "--since <ref>",
23
- "Only lint packages that changed since the specified ref"
24
- ).option(
25
- "--successCache",
26
- "Enable success caching, which skips running tests for unchanged packages that were successful in the previous run"
27
- ).option(
28
- "--successCacheDir <path>",
29
- "Set the success cache location, (default: node_modules/.cache/backstage-cli)"
30
- ).option("--fix", "Attempt to automatically fix violations").action(lazy.lazy(() => import('./repo/lint.cjs.js'), "command"));
31
- command.command("fix").description("Automatically fix packages in the project").option(
32
- "--publish",
33
- "Enable additional fixes that only apply when publishing packages"
34
- ).option(
35
- "--check",
36
- "Fail if any packages would have been changed by the command"
37
- ).action(lazy.lazy(() => import('./repo/fix.cjs.js'), "command"));
38
- command.command("clean").description("Delete cache and output directories").action(lazy.lazy(() => import('./repo/clean.cjs.js'), "command"));
39
- command.command("list-deprecations").description("List deprecations").option("--json", "Output as JSON").action(lazy.lazy(() => import('./repo/list-deprecations.cjs.js'), "command"));
16
+ index$5.registerRepoCommands(command);
17
+ index$6.registerRepoCommands(command);
40
18
  }
41
19
  function registerScriptCommand(program) {
42
20
  const command = program.command("package [command]").description("Lifecycle scripts for individual packages");
43
21
  command.command("start").description("Start a package for local development").option(...index.configOption).option("--role <name>", "Run the command with an explicit package role").option("--check", "Enable type checking and linting if available").option("--inspect [host]", "Enable debugger in Node.js environments").option(
44
22
  "--inspect-brk [host]",
45
23
  "Enable debugger in Node.js environments, breaking before code starts"
46
- ).option("--require <path>", "Add a --require argument to the node process").option("--link <path>", "Link an external workspace for module resolution").action(lazy.lazy(() => import('./start/index.cjs.js'), "command"));
24
+ ).option(
25
+ "--require <path...>",
26
+ "Add a --require argument to the node process"
27
+ ).option("--link <path>", "Link an external workspace for module resolution").action(lazy.lazy(() => import('./start/index.cjs.js'), "command"));
47
28
  index$2.registerPackageCommands(command);
48
29
  index$4.registerPackageCommands(command);
49
- command.command("lint [directories...]").option(
50
- "--format <format>",
51
- "Lint report output format",
52
- "eslint-formatter-friendly"
53
- ).option(
54
- "--output-file <path>",
55
- "Write the lint report to a file instead of stdout"
56
- ).option("--fix", "Attempt to automatically fix violations").option(
57
- "--max-warnings <number>",
58
- "Fail if more than this number of warnings. -1 allows warnings. (default: -1)"
59
- ).description("Lint a package").action(lazy.lazy(() => import('./lint.cjs.js'), "default"));
60
- command.command("clean").description("Delete cache directories").action(lazy.lazy(() => import('./clean/clean.cjs.js'), "default"));
61
- command.command("prepack").description("Prepares a package for packaging before publishing").action(lazy.lazy(() => import('./pack.cjs.js'), "pre"));
62
- command.command("postpack").description("Restores the changes made by the prepack command").action(lazy.lazy(() => import('./pack.cjs.js'), "post"));
30
+ index$6.registerPackageCommands(command);
31
+ index$5.registerPackageCommands(command);
63
32
  }
64
33
  function registerCommands(program) {
65
34
  program.command("new").storeOptionsAsProperties(false).description(
@@ -67,7 +67,10 @@ async function runBackend(options) {
67
67
  optionArgs.push(inspect);
68
68
  }
69
69
  if (options.require) {
70
- optionArgs.push(`--require=${options.require}`);
70
+ const requires = [options.require].flat();
71
+ for (const r of requires) {
72
+ optionArgs.push(`--require=${r}`);
73
+ }
71
74
  }
72
75
  const userArgs = process.argv.slice(["node", "backstage-cli", "package", "start"].length).filter((arg) => !optionArgs.includes(arg));
73
76
  child = spawn__default.default(
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var fs = require('fs-extra');
6
- var paths = require('../lib/paths.cjs.js');
6
+ var paths = require('../../../../lib/paths.cjs.js');
7
7
  var eslint = require('eslint');
8
8
 
9
9
  function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
@@ -5,10 +5,10 @@ var fs = require('fs-extra');
5
5
  var crypto = require('crypto');
6
6
  var path = require('path');
7
7
  var cliNode = require('@backstage/cli-node');
8
- var paths = require('../../lib/paths.cjs.js');
9
- var parallel = require('../../lib/parallel.cjs.js');
10
- var optionsParser = require('./optionsParser.cjs.js');
11
- var SuccessCache = require('../../lib/cache/SuccessCache.cjs.js');
8
+ var paths = require('../../../../lib/paths.cjs.js');
9
+ var parallel = require('../../../../lib/parallel.cjs.js');
10
+ var optionsParser = require('../../../../commands/repo/optionsParser.cjs.js');
11
+ var SuccessCache = require('../../../../lib/cache/SuccessCache.cjs.js');
12
12
 
13
13
  function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
14
14
 
@@ -77,6 +77,7 @@ async function command(opts, cmd) {
77
77
  fix: Boolean(opts.fix),
78
78
  format: opts.format,
79
79
  shouldCache: Boolean(cacheContext),
80
+ maxWarnings: opts.maxWarnings ?? -1,
80
81
  successCache: cacheContext?.entries,
81
82
  rootDir: paths.paths.targetRoot
82
83
  },
@@ -85,7 +86,8 @@ async function command(opts, cmd) {
85
86
  format,
86
87
  shouldCache,
87
88
  successCache,
88
- rootDir
89
+ rootDir,
90
+ maxWarnings
89
91
  }) => {
90
92
  const { ESLint } = require("eslint");
91
93
  const crypto = require("crypto");
@@ -95,7 +97,6 @@ async function command(opts, cmd) {
95
97
  return async ({
96
98
  fullDir,
97
99
  relativeDir,
98
- lintOptions,
99
100
  parentHash
100
101
  }) => {
101
102
  process.cwd = () => fullDir;
@@ -146,7 +147,6 @@ async function command(opts, cmd) {
146
147
  if (fix) {
147
148
  await ESLint.outputFixes(results);
148
149
  }
149
- const maxWarnings = lintOptions?.maxWarnings ?? 0;
150
150
  const ignoreWarnings = +maxWarnings === -1;
151
151
  const resultText = formatter.format(results);
152
152
  const failed2 = results.some((r) => r.errorCount > 0) || !ignoreWarnings && results.reduce((current, next) => current + next.warningCount, 0) > maxWarnings;
@@ -0,0 +1,43 @@
1
+ 'use strict';
2
+
3
+ var lazy = require('../../lib/lazy.cjs.js');
4
+
5
+ function registerPackageCommands(command) {
6
+ command.command("lint [directories...]").option(
7
+ "--format <format>",
8
+ "Lint report output format",
9
+ "eslint-formatter-friendly"
10
+ ).option(
11
+ "--output-file <path>",
12
+ "Write the lint report to a file instead of stdout"
13
+ ).option("--fix", "Attempt to automatically fix violations").option(
14
+ "--max-warnings <number>",
15
+ "Fail if more than this number of warnings. -1 allows warnings. (default: -1)"
16
+ ).description("Lint a package").action(lazy.lazy(() => import('./commands/package/lint.cjs.js'), "default"));
17
+ }
18
+ function registerRepoCommands(command) {
19
+ command.command("lint").description("Lint all packages in the project").option(
20
+ "--format <format>",
21
+ "Lint report output format",
22
+ "eslint-formatter-friendly"
23
+ ).option(
24
+ "--output-file <path>",
25
+ "Write the lint report to a file instead of stdout"
26
+ ).option(
27
+ "--since <ref>",
28
+ "Only lint packages that changed since the specified ref"
29
+ ).option(
30
+ "--successCache",
31
+ "Enable success caching, which skips running tests for unchanged packages that were successful in the previous run"
32
+ ).option(
33
+ "--successCacheDir <path>",
34
+ "Set the success cache location, (default: node_modules/.cache/backstage-cli)"
35
+ ).option(
36
+ "--max-warnings <number>",
37
+ "Fail if more than this number of warnings. -1 allows warnings. (default: -1)"
38
+ ).option("--fix", "Attempt to automatically fix violations").action(lazy.lazy(() => import('./commands/repo/lint.cjs.js'), "command"));
39
+ }
40
+
41
+ exports.registerPackageCommands = registerPackageCommands;
42
+ exports.registerRepoCommands = registerRepoCommands;
43
+ //# sourceMappingURL=index.cjs.js.map
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var fs = require('fs-extra');
6
- var paths = require('../../lib/paths.cjs.js');
6
+ var paths = require('../../../../lib/paths.cjs.js');
7
7
 
8
8
  function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
9
9
 
@@ -1,10 +1,10 @@
1
1
  'use strict';
2
2
 
3
- var productionPack = require('../modules/build/lib/packager/productionPack.cjs.js');
4
- var paths = require('../lib/paths.cjs.js');
3
+ var productionPack = require('../../../build/lib/packager/productionPack.cjs.js');
4
+ var paths = require('../../../../lib/paths.cjs.js');
5
5
  var fs = require('fs-extra');
6
- var publishing = require('../lib/publishing.cjs.js');
7
- var typeDistProject = require('../lib/typeDistProject.cjs.js');
6
+ var publishing = require('../../../../lib/publishing.cjs.js');
7
+ var typeDistProject = require('../../../../lib/typeDistProject.cjs.js');
8
8
 
9
9
  function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
10
10
 
@@ -5,7 +5,7 @@ var fs = require('fs-extra');
5
5
  var path = require('path');
6
6
  var util = require('util');
7
7
  var cliNode = require('@backstage/cli-node');
8
- var paths = require('../../lib/paths.cjs.js');
8
+ var paths = require('../../../../lib/paths.cjs.js');
9
9
 
10
10
  function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
11
11
 
@@ -3,8 +3,8 @@
3
3
  var cliNode = require('@backstage/cli-node');
4
4
  var fs = require('fs-extra');
5
5
  var path = require('path');
6
- var paths = require('../../lib/paths.cjs.js');
7
- var publishing = require('../../lib/publishing.cjs.js');
6
+ var paths = require('../../../../lib/paths.cjs.js');
7
+ var publishing = require('../../../../lib/publishing.cjs.js');
8
8
 
9
9
  function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
10
10
 
@@ -4,7 +4,7 @@ var chalk = require('chalk');
4
4
  var eslint = require('eslint');
5
5
  var path = require('path');
6
6
  var cliNode = require('@backstage/cli-node');
7
- var paths = require('../../lib/paths.cjs.js');
7
+ var paths = require('../../../../lib/paths.cjs.js');
8
8
 
9
9
  function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
10
10
 
@@ -0,0 +1,24 @@
1
+ 'use strict';
2
+
3
+ var lazy = require('../../lib/lazy.cjs.js');
4
+
5
+ function registerPackageCommands(command) {
6
+ command.command("clean").description("Delete cache directories").action(lazy.lazy(() => import('./commands/package/clean.cjs.js'), "default"));
7
+ command.command("prepack").description("Prepares a package for packaging before publishing").action(lazy.lazy(() => import('./commands/package/pack.cjs.js'), "pre"));
8
+ command.command("postpack").description("Restores the changes made by the prepack command").action(lazy.lazy(() => import('./commands/package/pack.cjs.js'), "post"));
9
+ }
10
+ function registerRepoCommands(command) {
11
+ command.command("fix").description("Automatically fix packages in the project").option(
12
+ "--publish",
13
+ "Enable additional fixes that only apply when publishing packages"
14
+ ).option(
15
+ "--check",
16
+ "Fail if any packages would have been changed by the command"
17
+ ).action(lazy.lazy(() => import('./commands/repo/fix.cjs.js'), "command"));
18
+ command.command("clean").description("Delete cache and output directories").action(lazy.lazy(() => import('./commands/repo/clean.cjs.js'), "command"));
19
+ command.command("list-deprecations").description("List deprecations").option("--json", "Output as JSON").action(lazy.lazy(() => import('./commands/repo/list-deprecations.cjs.js'), "command"));
20
+ }
21
+
22
+ exports.registerPackageCommands = registerPackageCommands;
23
+ exports.registerRepoCommands = registerRepoCommands;
24
+ //# sourceMappingURL=index.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var fix = require('../../../commands/repo/fix.cjs.js');
3
+ var fix = require('../../maintenance/commands/repo/fix.cjs.js');
4
4
 
5
5
  async function command() {
6
6
  console.log(
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "0.8.2-next.2";
3
+ var version = "0.9.0-next.0";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "1.2.1-next.1";
3
+ var version = "1.2.1";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "1.3.1-next.2";
3
+ var version = "1.3.2-next.0";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "0.31.0-next.1";
3
+ var version = "0.32.0-next.0";
4
4
  var dependencies = {
5
5
  "@backstage/catalog-model": "workspace:^",
6
6
  "@backstage/cli-common": "workspace:^",
@@ -13,7 +13,7 @@ var dependencies = {
13
13
  "@backstage/release-manifests": "workspace:^",
14
14
  "@backstage/types": "workspace:^",
15
15
  "@manypkg/get-packages": "^1.1.3",
16
- "@module-federation/enhanced": "^0.8.0",
16
+ "@module-federation/enhanced": "^0.9.0",
17
17
  "@octokit/graphql": "^5.0.0",
18
18
  "@octokit/graphql-schema": "^13.7.0",
19
19
  "@octokit/oauth-app": "^4.2.0",
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "1.16.0-next.0";
3
+ var version = "1.16.0";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "0.16.5-next.1";
3
+ var version = "0.17.0";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "1.10.4";
3
+ var version = "1.10.5";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "1.1.8-next.2";
3
+ var version = "1.1.9-next.0";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "1.7.6-next.0";
3
+ var version = "1.7.6";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "0.24.4-next.2";
3
+ var version = "0.24.5-next.0";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "0.2.6-next.1";
3
+ var version = "0.2.6";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "1.16.1-next.1";
3
+ var version = "1.16.1";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "0.8.0-next.2";
3
+ var version = "0.8.1-next.0";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "0.2.0-next.2";
3
+ var version = "0.2.1-next.0";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/cli",
3
- "version": "0.31.0-next.1",
3
+ "version": "0.32.0-next.0",
4
4
  "description": "CLI for developing Backstage plugins and apps",
5
5
  "backstage": {
6
6
  "role": "cli"
@@ -51,14 +51,14 @@
51
51
  "@backstage/cli-common": "0.1.15",
52
52
  "@backstage/cli-node": "0.2.13",
53
53
  "@backstage/config": "1.3.2",
54
- "@backstage/config-loader": "1.10.0-next.0",
54
+ "@backstage/config-loader": "1.10.0",
55
55
  "@backstage/errors": "1.2.7",
56
56
  "@backstage/eslint-plugin": "0.1.10",
57
- "@backstage/integration": "1.16.2-next.0",
57
+ "@backstage/integration": "1.16.2",
58
58
  "@backstage/release-manifests": "0.0.12",
59
59
  "@backstage/types": "1.2.1",
60
60
  "@manypkg/get-packages": "^1.1.3",
61
- "@module-federation/enhanced": "^0.8.0",
61
+ "@module-federation/enhanced": "^0.9.0",
62
62
  "@octokit/graphql": "^5.0.0",
63
63
  "@octokit/graphql-schema": "^13.7.0",
64
64
  "@octokit/oauth-app": "^4.2.0",
@@ -163,21 +163,21 @@
163
163
  "zod-validation-error": "^3.4.0"
164
164
  },
165
165
  "devDependencies": {
166
- "@backstage/backend-plugin-api": "1.2.1-next.1",
167
- "@backstage/backend-test-utils": "1.3.1-next.2",
166
+ "@backstage/backend-plugin-api": "1.2.1",
167
+ "@backstage/backend-test-utils": "1.3.2-next.0",
168
168
  "@backstage/catalog-client": "1.9.1",
169
169
  "@backstage/config": "1.3.2",
170
- "@backstage/core-app-api": "1.16.0-next.0",
171
- "@backstage/core-components": "0.16.5-next.1",
172
- "@backstage/core-plugin-api": "1.10.4",
173
- "@backstage/dev-utils": "1.1.8-next.2",
170
+ "@backstage/core-app-api": "1.16.0",
171
+ "@backstage/core-components": "0.17.0",
172
+ "@backstage/core-plugin-api": "1.10.5",
173
+ "@backstage/dev-utils": "1.1.9-next.0",
174
174
  "@backstage/errors": "1.2.7",
175
- "@backstage/plugin-auth-backend": "0.24.4-next.2",
176
- "@backstage/plugin-auth-backend-module-guest-provider": "0.2.6-next.1",
177
- "@backstage/plugin-catalog-node": "1.16.1-next.1",
178
- "@backstage/plugin-scaffolder-node": "0.8.0-next.2",
179
- "@backstage/plugin-scaffolder-node-test-utils": "0.2.0-next.2",
180
- "@backstage/test-utils": "1.7.6-next.0",
175
+ "@backstage/plugin-auth-backend": "0.24.5-next.0",
176
+ "@backstage/plugin-auth-backend-module-guest-provider": "0.2.6",
177
+ "@backstage/plugin-catalog-node": "1.16.1",
178
+ "@backstage/plugin-scaffolder-node": "0.8.1-next.0",
179
+ "@backstage/plugin-scaffolder-node-test-utils": "0.2.1-next.0",
180
+ "@backstage/test-utils": "1.7.6",
181
181
  "@backstage/theme": "0.6.4",
182
182
  "@rspack/core": "^1.0.10",
183
183
  "@rspack/dev-server": "^1.0.9",