@backstage/plugin-app-backend 0.5.15-next.0 → 0.5.15
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 +11 -0
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @backstage/plugin-app-backend
|
|
2
2
|
|
|
3
|
+
## 0.5.15
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ca450be: Added a new `app.disablePublicEntryPoint` config option that allows you to opt out of the automatic public sign-in entry point. When set to `true`, the app backend will skip serving the public entry point to unauthenticated users, even if the app was bundled with an `index-public-experimental` entry point.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/backend-plugin-api@1.9.2
|
|
10
|
+
- @backstage/config-loader@1.10.12
|
|
11
|
+
- @backstage/plugin-app-node@0.1.46
|
|
12
|
+
- @backstage/plugin-auth-node@0.7.2
|
|
13
|
+
|
|
3
14
|
## 0.5.15-next.0
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-app-backend",
|
|
3
|
-
"version": "0.5.15
|
|
3
|
+
"version": "0.5.15",
|
|
4
4
|
"description": "A Backstage backend plugin that serves the Backstage frontend app",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin",
|
|
@@ -62,13 +62,13 @@
|
|
|
62
62
|
"test": "backstage-cli package test"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@backstage/backend-plugin-api": "1.9.2
|
|
66
|
-
"@backstage/config": "1.3.8",
|
|
67
|
-
"@backstage/config-loader": "1.10.
|
|
68
|
-
"@backstage/errors": "1.3.1",
|
|
69
|
-
"@backstage/plugin-app-node": "0.1.46
|
|
70
|
-
"@backstage/plugin-auth-node": "0.7.2
|
|
71
|
-
"@backstage/types": "1.2.2",
|
|
65
|
+
"@backstage/backend-plugin-api": "^1.9.2",
|
|
66
|
+
"@backstage/config": "^1.3.8",
|
|
67
|
+
"@backstage/config-loader": "^1.10.12",
|
|
68
|
+
"@backstage/errors": "^1.3.1",
|
|
69
|
+
"@backstage/plugin-app-node": "^0.1.46",
|
|
70
|
+
"@backstage/plugin-auth-node": "^0.7.2",
|
|
71
|
+
"@backstage/types": "^1.2.2",
|
|
72
72
|
"express": "^4.22.0",
|
|
73
73
|
"express-promise-router": "^4.1.0",
|
|
74
74
|
"fs-extra": "^11.2.0",
|
|
@@ -79,10 +79,10 @@
|
|
|
79
79
|
"luxon": "^3.0.0"
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
|
-
"@backstage/backend-app-api": "1.7.1
|
|
83
|
-
"@backstage/backend-defaults": "0.17.
|
|
84
|
-
"@backstage/backend-test-utils": "1.11.4
|
|
85
|
-
"@backstage/cli": "0.36.3
|
|
82
|
+
"@backstage/backend-app-api": "^1.7.1",
|
|
83
|
+
"@backstage/backend-defaults": "^0.17.3",
|
|
84
|
+
"@backstage/backend-test-utils": "^1.11.4",
|
|
85
|
+
"@backstage/cli": "^0.36.3",
|
|
86
86
|
"@types/express": "^4.17.6",
|
|
87
87
|
"@types/supertest": "^2.0.8",
|
|
88
88
|
"supertest": "^7.0.0"
|