@backstage/plugin-app-backend 0.3.51-next.3 → 0.3.51
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 +29 -0
- package/alpha/package.json +1 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @backstage/plugin-app-backend
|
|
2
2
|
|
|
3
|
+
## 0.3.51
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 71114ac50e02: The export for the new backend system has been moved to be the `default` export.
|
|
8
|
+
|
|
9
|
+
For example, if you are currently importing the plugin using the following pattern:
|
|
10
|
+
|
|
11
|
+
```ts
|
|
12
|
+
import { examplePlugin } from '@backstage/plugin-example-backend';
|
|
13
|
+
|
|
14
|
+
backend.add(examplePlugin);
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
It should be migrated to this:
|
|
18
|
+
|
|
19
|
+
```ts
|
|
20
|
+
backend.add(import('@backstage/plugin-example-backend'));
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
- cfc3ca6ce060: Changes needed to support MySQL
|
|
24
|
+
- Updated dependencies
|
|
25
|
+
- @backstage/backend-common@0.19.5
|
|
26
|
+
- @backstage/config@1.1.0
|
|
27
|
+
- @backstage/types@1.1.1
|
|
28
|
+
- @backstage/backend-plugin-api@0.6.3
|
|
29
|
+
- @backstage/config-loader@1.5.0
|
|
30
|
+
- @backstage/plugin-app-node@0.1.3
|
|
31
|
+
|
|
3
32
|
## 0.3.51-next.3
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|
package/alpha/package.json
CHANGED
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.51
|
|
4
|
+
"version": "0.3.51",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -43,12 +43,12 @@
|
|
|
43
43
|
"clean": "backstage-cli package clean"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@backstage/backend-common": "^0.19.5
|
|
47
|
-
"@backstage/backend-plugin-api": "^0.6.3
|
|
48
|
-
"@backstage/config": "^1.1.0
|
|
49
|
-
"@backstage/config-loader": "^1.5.0
|
|
50
|
-
"@backstage/plugin-app-node": "^0.1.3
|
|
51
|
-
"@backstage/types": "^1.1.1
|
|
46
|
+
"@backstage/backend-common": "^0.19.5",
|
|
47
|
+
"@backstage/backend-plugin-api": "^0.6.3",
|
|
48
|
+
"@backstage/config": "^1.1.0",
|
|
49
|
+
"@backstage/config-loader": "^1.5.0",
|
|
50
|
+
"@backstage/plugin-app-node": "^0.1.3",
|
|
51
|
+
"@backstage/types": "^1.1.1",
|
|
52
52
|
"@types/express": "^4.17.6",
|
|
53
53
|
"express": "^4.17.1",
|
|
54
54
|
"express-promise-router": "^4.1.0",
|
|
@@ -62,10 +62,10 @@
|
|
|
62
62
|
"yn": "^4.0.0"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@backstage/backend-app-api": "^0.5.3
|
|
66
|
-
"@backstage/backend-test-utils": "^0.2.3
|
|
67
|
-
"@backstage/cli": "^0.22.13
|
|
68
|
-
"@backstage/types": "^1.1.1
|
|
65
|
+
"@backstage/backend-app-api": "^0.5.3",
|
|
66
|
+
"@backstage/backend-test-utils": "^0.2.3",
|
|
67
|
+
"@backstage/cli": "^0.22.13",
|
|
68
|
+
"@backstage/types": "^1.1.1",
|
|
69
69
|
"@types/supertest": "^2.0.8",
|
|
70
70
|
"mock-fs": "^5.1.0",
|
|
71
71
|
"msw": "^1.0.0",
|