@backstage/plugin-app-backend 0.3.36-next.3 → 0.3.36
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 +21 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @backstage/plugin-app-backend
|
|
2
2
|
|
|
3
|
+
## 0.3.36
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- d669d89206: Minor API signatures cleanup
|
|
8
|
+
- 60b85d8ade: Updated dependency `helmet` to `^6.0.0`.
|
|
9
|
+
|
|
10
|
+
Please note that these policies are no longer applied by default:
|
|
11
|
+
|
|
12
|
+
helmet.contentSecurityPolicy no longer sets block-all-mixed-content directive by default
|
|
13
|
+
helmet.expectCt is no longer set by default. It can, however, be explicitly enabled. It will be removed in Helmet 7.
|
|
14
|
+
|
|
15
|
+
- 667d917488: Updated dependency `msw` to `^0.47.0`.
|
|
16
|
+
- 87ec2ba4d6: Updated dependency `msw` to `^0.46.0`.
|
|
17
|
+
- bf5e9030eb: Updated dependency `msw` to `^0.45.0`.
|
|
18
|
+
- 8872cc735d: Fixed a bug where the database option to skip migrations was ignored.
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
- @backstage/backend-common@0.15.1
|
|
21
|
+
- @backstage/config-loader@1.1.4
|
|
22
|
+
- @backstage/config@1.0.2
|
|
23
|
+
|
|
3
24
|
## 0.3.36-next.3
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
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.36
|
|
4
|
+
"version": "0.3.36",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"clean": "backstage-cli package clean"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@backstage/backend-common": "^0.15.1
|
|
36
|
-
"@backstage/config": "^1.0.2
|
|
37
|
-
"@backstage/config-loader": "^1.1.4
|
|
35
|
+
"@backstage/backend-common": "^0.15.1",
|
|
36
|
+
"@backstage/config": "^1.0.2",
|
|
37
|
+
"@backstage/config-loader": "^1.1.4",
|
|
38
38
|
"@backstage/types": "^1.0.0",
|
|
39
39
|
"@types/express": "^4.17.6",
|
|
40
40
|
"express": "^4.17.1",
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"yn": "^4.0.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@backstage/backend-test-utils": "^0.1.28
|
|
53
|
-
"@backstage/cli": "^0.19.0
|
|
52
|
+
"@backstage/backend-test-utils": "^0.1.28",
|
|
53
|
+
"@backstage/cli": "^0.19.0",
|
|
54
54
|
"@backstage/types": "^1.0.0",
|
|
55
55
|
"@types/supertest": "^2.0.8",
|
|
56
56
|
"mock-fs": "^5.1.0",
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"migrations/**/*.{js,d.ts}",
|
|
63
63
|
"static"
|
|
64
64
|
],
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "25b94e63455f1fb170506f9e84e3f430f4b79406"
|
|
66
66
|
}
|