@backstage/backend-app-api 1.0.1-next.1 → 1.0.2-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 +35 -0
- package/alpha/package.json +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# @backstage/backend-app-api
|
|
2
2
|
|
|
3
|
+
## 1.0.2-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-auth-node@0.5.4-next.0
|
|
9
|
+
- @backstage/backend-plugin-api@1.0.2-next.0
|
|
10
|
+
- @backstage/cli-common@0.1.14
|
|
11
|
+
- @backstage/config@1.2.0
|
|
12
|
+
- @backstage/config-loader@1.9.1
|
|
13
|
+
- @backstage/errors@1.2.4
|
|
14
|
+
- @backstage/types@1.1.1
|
|
15
|
+
- @backstage/plugin-permission-node@0.8.5-next.0
|
|
16
|
+
|
|
17
|
+
## 1.0.1
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- ffd1f4a: Plugin lifecycle shutdown hooks are now performed before root lifecycle shutdown hooks.
|
|
22
|
+
- fd6e6f4: build(deps): bump `cookie` from 0.6.0 to 0.7.0
|
|
23
|
+
- 094eaa3: Remove references to in-repo backend-common
|
|
24
|
+
- 04af116: The backend will no longer exit immediately if any plugin or modules fails to initialize. Instead, the backend will wait for all plugins and modules to either start up successfully or throw, and then shut down the backend if there were any initialization errors.
|
|
25
|
+
|
|
26
|
+
This fixes an issue where backend initialization errors in adjacent plugins during database schema migration could cause the database migrations to be stuck in a locked state.
|
|
27
|
+
|
|
28
|
+
- Updated dependencies
|
|
29
|
+
- @backstage/plugin-auth-node@0.5.3
|
|
30
|
+
- @backstage/plugin-permission-node@0.8.4
|
|
31
|
+
- @backstage/backend-plugin-api@1.0.1
|
|
32
|
+
- @backstage/cli-common@0.1.14
|
|
33
|
+
- @backstage/config@1.2.0
|
|
34
|
+
- @backstage/config-loader@1.9.1
|
|
35
|
+
- @backstage/errors@1.2.4
|
|
36
|
+
- @backstage/types@1.1.1
|
|
37
|
+
|
|
3
38
|
## 1.0.1-next.1
|
|
4
39
|
|
|
5
40
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/backend-app-api",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2-next.0",
|
|
4
4
|
"description": "Core API used by Backstage backend apps",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library"
|
|
@@ -50,13 +50,13 @@
|
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"@backstage/backend-common": "^0.25.0",
|
|
53
|
-
"@backstage/backend-plugin-api": "1.0.
|
|
53
|
+
"@backstage/backend-plugin-api": "1.0.2-next.0",
|
|
54
54
|
"@backstage/cli-common": "0.1.14",
|
|
55
55
|
"@backstage/config": "1.2.0",
|
|
56
56
|
"@backstage/config-loader": "1.9.1",
|
|
57
57
|
"@backstage/errors": "1.2.4",
|
|
58
|
-
"@backstage/plugin-auth-node": "0.5.
|
|
59
|
-
"@backstage/plugin-permission-node": "0.8.
|
|
58
|
+
"@backstage/plugin-auth-node": "0.5.4-next.0",
|
|
59
|
+
"@backstage/plugin-permission-node": "0.8.5-next.0",
|
|
60
60
|
"@backstage/types": "1.1.1",
|
|
61
61
|
"@manypkg/get-packages": "^1.1.3",
|
|
62
62
|
"compression": "^1.7.4",
|
|
@@ -84,9 +84,9 @@
|
|
|
84
84
|
"winston-transport": "^4.5.0"
|
|
85
85
|
},
|
|
86
86
|
"devDependencies": {
|
|
87
|
-
"@backstage/backend-defaults": "0.5.
|
|
88
|
-
"@backstage/backend-test-utils": "1.0.
|
|
89
|
-
"@backstage/cli": "0.
|
|
87
|
+
"@backstage/backend-defaults": "0.5.3-next.0",
|
|
88
|
+
"@backstage/backend-test-utils": "1.0.3-next.0",
|
|
89
|
+
"@backstage/cli": "0.29.0-next.0",
|
|
90
90
|
"@types/compression": "^1.7.0",
|
|
91
91
|
"@types/http-errors": "^2.0.0",
|
|
92
92
|
"@types/minimist": "^1.2.0",
|