@backstage/backend-plugin-api 1.1.0-next.2 → 1.1.1-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.
- package/CHANGELOG.md +33 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# @backstage/backend-plugin-api
|
|
2
2
|
|
|
3
|
+
## 1.1.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-auth-node@0.5.6-next.0
|
|
9
|
+
- @backstage/cli-common@0.1.15
|
|
10
|
+
- @backstage/config@1.3.1
|
|
11
|
+
- @backstage/errors@1.2.6
|
|
12
|
+
- @backstage/types@1.2.0
|
|
13
|
+
- @backstage/plugin-permission-common@0.8.3
|
|
14
|
+
|
|
15
|
+
## 1.1.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- 12eac85: **EXPERIMENTAL**: Adds a new `instanceMetadataService` to hold information about a specific backend instance.
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- eef3ef1: Removed unused `express` dependencies.
|
|
24
|
+
- 0e9c9fa: The `RootLifecycleService` now has a new `addBeforeShutdownHook` method, and hooks added through this method will run immediately when a termination event is received.
|
|
25
|
+
|
|
26
|
+
The backend will not proceed with the shutdown and run the `Shutdown` hooks until all `BeforeShutdown` hooks have completed.
|
|
27
|
+
|
|
28
|
+
- Updated dependencies
|
|
29
|
+
- @backstage/plugin-auth-node@0.5.5
|
|
30
|
+
- @backstage/errors@1.2.6
|
|
31
|
+
- @backstage/cli-common@0.1.15
|
|
32
|
+
- @backstage/config@1.3.1
|
|
33
|
+
- @backstage/types@1.2.0
|
|
34
|
+
- @backstage/plugin-permission-common@0.8.3
|
|
35
|
+
|
|
3
36
|
## 1.1.0-next.2
|
|
4
37
|
|
|
5
38
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/backend-plugin-api",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1-next.0",
|
|
4
4
|
"description": "Core API used by Backstage backend plugins",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library"
|
|
@@ -66,10 +66,10 @@
|
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
68
|
"@backstage/cli-common": "0.1.15",
|
|
69
|
-
"@backstage/config": "1.3.1
|
|
70
|
-
"@backstage/errors": "1.2.6
|
|
71
|
-
"@backstage/plugin-auth-node": "0.5.
|
|
72
|
-
"@backstage/plugin-permission-common": "0.8.3
|
|
69
|
+
"@backstage/config": "1.3.1",
|
|
70
|
+
"@backstage/errors": "1.2.6",
|
|
71
|
+
"@backstage/plugin-auth-node": "0.5.6-next.0",
|
|
72
|
+
"@backstage/plugin-permission-common": "0.8.3",
|
|
73
73
|
"@backstage/types": "1.2.0",
|
|
74
74
|
"@types/express": "^4.17.6",
|
|
75
75
|
"@types/luxon": "^3.0.0",
|
|
@@ -77,8 +77,8 @@
|
|
|
77
77
|
"luxon": "^3.0.0"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
|
-
"@backstage/backend-test-utils": "1.2.
|
|
81
|
-
"@backstage/cli": "0.29.
|
|
80
|
+
"@backstage/backend-test-utils": "1.2.1-next.0",
|
|
81
|
+
"@backstage/cli": "0.29.5-next.0"
|
|
82
82
|
},
|
|
83
83
|
"configSchema": "config.d.ts"
|
|
84
84
|
}
|