@backstage/backend-app-api 0.8.0 → 0.8.1-next.0
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 +17 -0
- package/alpha/package.json +1 -1
- package/dist/index.cjs.js +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @backstage/backend-app-api
|
|
2
2
|
|
|
3
|
+
## 0.8.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-common@0.23.4-next.0
|
|
9
|
+
- @backstage/config-loader@1.8.2-next.0
|
|
10
|
+
- @backstage/backend-plugin-api@0.7.1-next.0
|
|
11
|
+
- @backstage/backend-tasks@0.5.28-next.0
|
|
12
|
+
- @backstage/cli-common@0.1.14
|
|
13
|
+
- @backstage/cli-node@0.2.7
|
|
14
|
+
- @backstage/config@1.2.0
|
|
15
|
+
- @backstage/errors@1.2.4
|
|
16
|
+
- @backstage/types@1.1.1
|
|
17
|
+
- @backstage/plugin-auth-node@0.4.18-next.0
|
|
18
|
+
- @backstage/plugin-permission-node@0.8.1-next.0
|
|
19
|
+
|
|
3
20
|
## 0.8.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
package/alpha/package.json
CHANGED
package/dist/index.cjs.js
CHANGED
|
@@ -3672,14 +3672,14 @@ let DefaultRootHttpRouter$1 = class DefaultRootHttpRouter {
|
|
|
3672
3672
|
function createHealthRouter(options) {
|
|
3673
3673
|
const router = Router__default.default();
|
|
3674
3674
|
router.get(
|
|
3675
|
-
"
|
|
3675
|
+
"/.backstage/health/v1/readiness",
|
|
3676
3676
|
async (_request, response) => {
|
|
3677
3677
|
const { status, payload } = await options.health.getReadiness();
|
|
3678
3678
|
response.status(status).json(payload);
|
|
3679
3679
|
}
|
|
3680
3680
|
);
|
|
3681
3681
|
router.get(
|
|
3682
|
-
"
|
|
3682
|
+
"/.backstage/health/v1/liveness",
|
|
3683
3683
|
async (_request, response) => {
|
|
3684
3684
|
const { status, payload } = await options.health.getLiveness();
|
|
3685
3685
|
response.status(status).json(payload);
|