@backstage/backend-plugin-api 1.5.0-next.2 → 1.5.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 +15 -0
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @backstage/backend-plugin-api
2
2
 
3
+ ## 1.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - a17d9df: Promote `instanceMetadata` service to main entrypoint.
8
+ - 62fc2de: Explicitly mark `coreServices.rootInstanceMetadata` as a root service.
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies
13
+ - @backstage/plugin-permission-common@0.9.3
14
+ - @backstage/plugin-auth-node@0.6.9
15
+ - @backstage/config@1.3.6
16
+ - @backstage/plugin-permission-node@0.10.6
17
+
3
18
  ## 1.5.0-next.2
4
19
 
5
20
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/backend-plugin-api",
3
- "version": "1.5.0-next.2",
3
+ "version": "1.5.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.15",
69
- "@backstage/config": "1.3.6-next.0",
70
- "@backstage/errors": "1.2.7",
71
- "@backstage/plugin-auth-node": "0.6.9-next.1",
72
- "@backstage/plugin-permission-common": "0.9.3-next.1",
73
- "@backstage/plugin-permission-node": "0.10.6-next.1",
74
- "@backstage/types": "1.2.2",
68
+ "@backstage/cli-common": "^0.1.15",
69
+ "@backstage/config": "^1.3.6",
70
+ "@backstage/errors": "^1.2.7",
71
+ "@backstage/plugin-auth-node": "^0.6.9",
72
+ "@backstage/plugin-permission-common": "^0.9.3",
73
+ "@backstage/plugin-permission-node": "^0.10.6",
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.0-next.2",
85
- "@backstage/cli": "0.34.5-next.1"
84
+ "@backstage/backend-test-utils": "^1.10.0",
85
+ "@backstage/cli": "^0.34.5"
86
86
  },
87
87
  "configSchema": "config.d.ts"
88
88
  }