@backstage/plugin-app-backend 0.3.44-next.1 → 0.3.44
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 +22 -0
- package/alpha/package.json +1 -1
- package/dist/alpha.d.ts +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @backstage/plugin-app-backend
|
|
2
2
|
|
|
3
|
+
## 0.3.44
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-common@0.18.4
|
|
9
|
+
- @backstage/config-loader@1.2.0
|
|
10
|
+
- @backstage/backend-plugin-api@0.5.1
|
|
11
|
+
- @backstage/config@1.0.7
|
|
12
|
+
- @backstage/types@1.0.2
|
|
13
|
+
|
|
14
|
+
## 0.3.44-next.2
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @backstage/backend-common@0.18.4-next.2
|
|
20
|
+
- @backstage/backend-plugin-api@0.5.1-next.2
|
|
21
|
+
- @backstage/config@1.0.7
|
|
22
|
+
- @backstage/config-loader@1.1.9
|
|
23
|
+
- @backstage/types@1.0.2
|
|
24
|
+
|
|
3
25
|
## 0.3.44-next.1
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/alpha.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as _backstage_backend_plugin_api from '@backstage/backend-plugin-api';
|
|
|
2
2
|
import express from 'express';
|
|
3
3
|
|
|
4
4
|
/** @alpha */
|
|
5
|
-
|
|
5
|
+
type AppPluginOptions = {
|
|
6
6
|
/**
|
|
7
7
|
* The name of the app package (in most Backstage repositories, this is the
|
|
8
8
|
* "name" field in `packages/app/package.json`) that content should be served
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-app-backend",
|
|
3
3
|
"description": "A Backstage backend plugin that serves the Backstage frontend app",
|
|
4
|
-
"version": "0.3.44
|
|
4
|
+
"version": "0.3.44",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -43,10 +43,10 @@
|
|
|
43
43
|
"clean": "backstage-cli package clean"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@backstage/backend-common": "^0.18.4
|
|
47
|
-
"@backstage/backend-plugin-api": "^0.5.1
|
|
46
|
+
"@backstage/backend-common": "^0.18.4",
|
|
47
|
+
"@backstage/backend-plugin-api": "^0.5.1",
|
|
48
48
|
"@backstage/config": "^1.0.7",
|
|
49
|
-
"@backstage/config-loader": "^1.
|
|
49
|
+
"@backstage/config-loader": "^1.2.0",
|
|
50
50
|
"@backstage/types": "^1.0.2",
|
|
51
51
|
"@types/express": "^4.17.6",
|
|
52
52
|
"express": "^4.17.1",
|
|
@@ -61,9 +61,9 @@
|
|
|
61
61
|
"yn": "^4.0.0"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@backstage/backend-app-api": "^0.4.2
|
|
65
|
-
"@backstage/backend-test-utils": "^0.1.36
|
|
66
|
-
"@backstage/cli": "^0.22.6
|
|
64
|
+
"@backstage/backend-app-api": "^0.4.2",
|
|
65
|
+
"@backstage/backend-test-utils": "^0.1.36",
|
|
66
|
+
"@backstage/cli": "^0.22.6",
|
|
67
67
|
"@backstage/types": "^1.0.2",
|
|
68
68
|
"@types/supertest": "^2.0.8",
|
|
69
69
|
"mock-fs": "^5.1.0",
|