@backstage/backend-app-api 0.8.0 → 0.8.1-next.1

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 CHANGED
@@ -1,5 +1,39 @@
1
1
  # @backstage/backend-app-api
2
2
 
3
+ ## 0.8.1-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/config-loader@1.9.0-next.1
9
+ - @backstage/plugin-permission-node@0.8.1-next.1
10
+ - @backstage/backend-plugin-api@0.7.1-next.1
11
+ - @backstage/backend-common@0.23.4-next.1
12
+ - @backstage/backend-tasks@0.5.28-next.1
13
+ - @backstage/cli-common@0.1.14
14
+ - @backstage/cli-node@0.2.7
15
+ - @backstage/config@1.2.0
16
+ - @backstage/errors@1.2.4
17
+ - @backstage/types@1.1.1
18
+ - @backstage/plugin-auth-node@0.4.18-next.1
19
+
20
+ ## 0.8.1-next.0
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies
25
+ - @backstage/backend-common@0.23.4-next.0
26
+ - @backstage/config-loader@1.8.2-next.0
27
+ - @backstage/backend-plugin-api@0.7.1-next.0
28
+ - @backstage/backend-tasks@0.5.28-next.0
29
+ - @backstage/cli-common@0.1.14
30
+ - @backstage/cli-node@0.2.7
31
+ - @backstage/config@1.2.0
32
+ - @backstage/errors@1.2.4
33
+ - @backstage/types@1.1.1
34
+ - @backstage/plugin-auth-node@0.4.18-next.0
35
+ - @backstage/plugin-permission-node@0.8.1-next.0
36
+
3
37
  ## 0.8.0
4
38
 
5
39
  ### Minor Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/backend-app-api__alpha",
3
- "version": "0.8.0",
3
+ "version": "0.8.1-next.1",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
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
- ".backstage/health/v1/readiness",
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
- ".backstage/health/v1/liveness",
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);