@backstage/backend-plugin-api 1.6.0-next.1 → 1.6.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 (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @backstage/backend-plugin-api
2
2
 
3
+ ## 1.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 2a0c4b0: Adds a new experimental `RootSystemMetadataService` for tracking the collection of Backstage instances that may be deployed at any one time. It currently offers a single API, `getInstalledPlugins` that returns a list of installed plugins based on config you have set up in `discovery.endpoints` as well as the plugins installed on the instance you're calling the API with. It does not handle wildcard values or fallback values. The intention is for this plugin to provide plugin authors with a simple interface to fetch a trustworthy list of all installed plugins.
8
+
9
+ ### Patch Changes
10
+
11
+ - d9759a1: **BREAKING ALPHA**: The old `instanceMetadataService` has been removed from alpha. Please switch over to using the stable `coreServices.rootInstanceMetadata` and related types instead, available from `@backstage/backend-plugin-api`.
12
+ - Updated dependencies
13
+ - @backstage/plugin-auth-node@0.6.10
14
+ - @backstage/plugin-permission-node@0.10.7
15
+ - @backstage/cli-common@0.1.16
16
+
3
17
  ## 1.6.0-next.1
4
18
 
5
19
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/backend-plugin-api",
3
- "version": "1.6.0-next.1",
3
+ "version": "1.6.0",
4
4
  "description": "Core API used by Backstage backend plugins",
5
5
  "backstage": {
6
6
  "role": "node-library"
@@ -65,13 +65,13 @@
65
65
  "test": "backstage-cli package test"
66
66
  },
67
67
  "dependencies": {
68
- "@backstage/cli-common": "0.1.16-next.2",
69
- "@backstage/config": "1.3.6",
70
- "@backstage/errors": "1.2.7",
71
- "@backstage/plugin-auth-node": "0.6.10-next.1",
72
- "@backstage/plugin-permission-common": "0.9.3",
73
- "@backstage/plugin-permission-node": "0.10.7-next.1",
74
- "@backstage/types": "1.2.2",
68
+ "@backstage/cli-common": "^0.1.16",
69
+ "@backstage/config": "^1.3.6",
70
+ "@backstage/errors": "^1.2.7",
71
+ "@backstage/plugin-auth-node": "^0.6.10",
72
+ "@backstage/plugin-permission-common": "^0.9.3",
73
+ "@backstage/plugin-permission-node": "^0.10.7",
74
+ "@backstage/types": "^1.2.2",
75
75
  "@types/express": "^4.17.6",
76
76
  "@types/json-schema": "^7.0.6",
77
77
  "@types/luxon": "^3.0.0",
@@ -81,8 +81,8 @@
81
81
  "zod": "^3.22.4"
82
82
  },
83
83
  "devDependencies": {
84
- "@backstage/backend-test-utils": "1.10.2-next.1",
85
- "@backstage/cli": "0.35.0-next.2"
84
+ "@backstage/backend-test-utils": "^1.10.2",
85
+ "@backstage/cli": "^0.35.0"
86
86
  },
87
87
  "configSchema": "config.d.ts"
88
88
  }