@backstage/backend-app-api 0.0.0-nightly-20230214023046 → 0.0.0-nightly-20230218023213
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.
Potentially problematic release.
This version of @backstage/backend-app-api might be problematic. Click here for more details.
- package/CHANGELOG.md +23 -6
- package/README.md +2 -1
- package/alpha/package.json +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,22 @@
|
|
|
1
1
|
# @backstage/backend-app-api
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20230218023213
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-tasks@0.0.0-nightly-20230218023213
|
|
9
|
+
- @backstage/backend-plugin-api@0.0.0-nightly-20230218023213
|
|
10
|
+
- @backstage/backend-common@0.0.0-nightly-20230218023213
|
|
11
|
+
- @backstage/cli-common@0.1.11
|
|
12
|
+
- @backstage/config@1.0.6
|
|
13
|
+
- @backstage/config-loader@1.1.8
|
|
14
|
+
- @backstage/errors@1.1.4
|
|
15
|
+
- @backstage/types@1.0.2
|
|
16
|
+
- @backstage/plugin-auth-node@0.0.0-nightly-20230218023213
|
|
17
|
+
- @backstage/plugin-permission-node@0.0.0-nightly-20230218023213
|
|
18
|
+
|
|
19
|
+
## 0.4.0
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
|
6
22
|
|
|
@@ -15,22 +31,23 @@
|
|
|
15
31
|
- e716946103: Updated usage of the lifecycle service.
|
|
16
32
|
- f60cca9da1: Updated database factory to pass service deps required for restoring database state during development.
|
|
17
33
|
- 610d65e143: Updates to match new `BackendFeature` type.
|
|
34
|
+
- 725383f69d: Tweaked messaging in the README.
|
|
18
35
|
- b86efa2d04: Updated usage of `ServiceFactory`.
|
|
19
36
|
- ab22515647: The shutdown signal handlers are now installed as part of the backend instance rather than the lifecycle service, and explicitly cause the process to exit.
|
|
20
37
|
- b729f9f31f: Moved the options of the `config` and `rootHttpRouter` services out to the factories themselves, where they belong
|
|
21
38
|
- ed8b5967d7: `HttpRouterFactoryOptions.getPath` is now optional as a default value is always provided in the factory.
|
|
22
39
|
- 71a5ec0f06: Updated usages of `LogMeta`.
|
|
23
40
|
- Updated dependencies
|
|
24
|
-
- @backstage/backend-plugin-api@0.
|
|
25
|
-
- @backstage/backend-common@0.
|
|
26
|
-
- @backstage/backend-tasks@0.
|
|
41
|
+
- @backstage/backend-plugin-api@0.4.0
|
|
42
|
+
- @backstage/backend-common@0.18.2
|
|
43
|
+
- @backstage/backend-tasks@0.4.3
|
|
27
44
|
- @backstage/cli-common@0.1.11
|
|
28
45
|
- @backstage/config@1.0.6
|
|
29
46
|
- @backstage/config-loader@1.1.8
|
|
30
47
|
- @backstage/errors@1.1.4
|
|
31
48
|
- @backstage/types@1.0.2
|
|
32
|
-
- @backstage/plugin-auth-node@0.
|
|
33
|
-
- @backstage/plugin-permission-node@0.
|
|
49
|
+
- @backstage/plugin-auth-node@0.2.11
|
|
50
|
+
- @backstage/plugin-permission-node@0.7.5
|
|
34
51
|
|
|
35
52
|
## 0.4.0-next.2
|
|
36
53
|
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @backstage/backend-app-api
|
|
2
2
|
|
|
3
|
-
**This package is
|
|
3
|
+
**This package is EXPERIMENTAL, we recommend against using it for production deployments**
|
|
4
4
|
|
|
5
5
|
This package provides the core API used by Backstage backend apps.
|
|
6
6
|
|
|
@@ -17,3 +17,4 @@ yarn add --cwd packages/backend @backstage/backend-app-api
|
|
|
17
17
|
|
|
18
18
|
- [Backstage Readme](https://github.com/backstage/backstage/blob/master/README.md)
|
|
19
19
|
- [Backstage Documentation](https://github.com/backstage/backstage/blob/master/docs/README.md)
|
|
20
|
+
- [Backstage Backend System](https://backstage.io/docs/backend-system/)
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/backend-app-api",
|
|
3
3
|
"description": "Core API used by Backstage backend apps",
|
|
4
|
-
"version": "0.0.0-nightly-
|
|
4
|
+
"version": "0.0.0-nightly-20230218023213",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"publishConfig": {
|
|
@@ -33,15 +33,15 @@
|
|
|
33
33
|
"start": "backstage-cli package start"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@backstage/backend-common": "^0.0.0-nightly-
|
|
37
|
-
"@backstage/backend-plugin-api": "^0.0.0-nightly-
|
|
38
|
-
"@backstage/backend-tasks": "^0.0.0-nightly-
|
|
36
|
+
"@backstage/backend-common": "^0.0.0-nightly-20230218023213",
|
|
37
|
+
"@backstage/backend-plugin-api": "^0.0.0-nightly-20230218023213",
|
|
38
|
+
"@backstage/backend-tasks": "^0.0.0-nightly-20230218023213",
|
|
39
39
|
"@backstage/cli-common": "^0.1.11",
|
|
40
40
|
"@backstage/config": "^1.0.6",
|
|
41
41
|
"@backstage/config-loader": "^1.1.8",
|
|
42
42
|
"@backstage/errors": "^1.1.4",
|
|
43
|
-
"@backstage/plugin-auth-node": "^0.0.0-nightly-
|
|
44
|
-
"@backstage/plugin-permission-node": "^0.0.0-nightly-
|
|
43
|
+
"@backstage/plugin-auth-node": "^0.0.0-nightly-20230218023213",
|
|
44
|
+
"@backstage/plugin-permission-node": "^0.0.0-nightly-20230218023213",
|
|
45
45
|
"@backstage/types": "^1.0.2",
|
|
46
46
|
"@manypkg/get-packages": "^1.1.3",
|
|
47
47
|
"@types/cors": "^2.8.6",
|
|
@@ -64,8 +64,8 @@
|
|
|
64
64
|
"winston-transport": "^4.5.0"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@backstage/backend-test-utils": "^0.0.0-nightly-
|
|
68
|
-
"@backstage/cli": "^0.0.0-nightly-
|
|
67
|
+
"@backstage/backend-test-utils": "^0.0.0-nightly-20230218023213",
|
|
68
|
+
"@backstage/cli": "^0.0.0-nightly-20230218023213",
|
|
69
69
|
"@types/compression": "^1.7.0",
|
|
70
70
|
"@types/fs-extra": "^9.0.3",
|
|
71
71
|
"@types/http-errors": "^2.0.0",
|