@checkstack/healthcheck-backend 1.0.4 → 1.1.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,54 @@
1
1
  # @checkstack/healthcheck-backend
2
2
 
3
+ ## 1.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [b627562]
8
+ - @checkstack/catalog-backend@1.1.2
9
+ - @checkstack/gitops-backend@0.3.2
10
+ - @checkstack/satellite-backend@0.3.2
11
+
12
+ ## 1.1.0
13
+
14
+ ### Minor Changes
15
+
16
+ - 7c97b43: Backfill missing package bumps for the `/rest` mount PR — these packages were
17
+ modified in that change but were not declared in its changeset:
18
+
19
+ - `@checkstack/api-docs-frontend`: schema renderer rewrite (`additionalProperties`,
20
+ `$ref` resolution, `oneOf`/`anyOf`/`allOf`, nullable unions, `format`
21
+ qualifiers) and the new path/query/header/cookie parameters table for GET
22
+ endpoints.
23
+ - `@checkstack/frontend`: Vite dev-server proxy for `/rest/*` so external REST
24
+ clients pointing at the Vite port resolve to the backend.
25
+ - `@checkstack/healthcheck-backend`: router handler now unpacks `input.systemId`
26
+ after `getSystemConfigurations` was refactored from `.input(z.string())` to
27
+ `.input(z.object({ systemId: z.string() }))`.
28
+
29
+ No behavior change beyond what the original PR already shipped.
30
+
31
+ ### Patch Changes
32
+
33
+ - Updated dependencies [9016526]
34
+ - @checkstack/common@0.10.0
35
+ - @checkstack/catalog-common@2.2.0
36
+ - @checkstack/healthcheck-common@1.1.0
37
+ - @checkstack/incident-common@1.2.0
38
+ - @checkstack/maintenance-common@1.2.0
39
+ - @checkstack/notification-common@1.1.0
40
+ - @checkstack/gitops-common@0.4.0
41
+ - @checkstack/satellite-backend@0.3.1
42
+ - @checkstack/backend-api@0.15.2
43
+ - @checkstack/catalog-backend@1.1.1
44
+ - @checkstack/command-backend@0.1.26
45
+ - @checkstack/gitops-backend@0.3.1
46
+ - @checkstack/integration-backend@0.1.26
47
+ - @checkstack/signal-common@0.2.3
48
+ - @checkstack/cache-api@0.3.1
49
+ - @checkstack/queue-api@0.3.1
50
+ - @checkstack/cache-utils@0.2.6
51
+
3
52
  ## 1.0.4
4
53
 
5
54
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/healthcheck-backend",
3
- "version": "1.0.4",
3
+ "version": "1.1.1",
4
4
  "license": "Elastic-2.0",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -14,23 +14,23 @@
14
14
  "lint:code": "eslint . --max-warnings 0"
15
15
  },
16
16
  "dependencies": {
17
- "@checkstack/backend-api": "0.15.0",
18
- "@checkstack/cache-api": "0.2.4",
19
- "@checkstack/cache-utils": "0.2.4",
20
- "@checkstack/catalog-backend": "1.0.2",
21
- "@checkstack/catalog-common": "2.0.1",
22
- "@checkstack/command-backend": "0.1.24",
23
- "@checkstack/common": "0.8.0",
24
- "@checkstack/gitops-backend": "0.2.8",
25
- "@checkstack/gitops-common": "0.2.2",
26
- "@checkstack/healthcheck-common": "1.0.1",
27
- "@checkstack/incident-common": "1.0.1",
28
- "@checkstack/integration-backend": "0.1.24",
29
- "@checkstack/maintenance-common": "1.0.1",
30
- "@checkstack/notification-common": "1.0.1",
31
- "@checkstack/queue-api": "0.2.18",
32
- "@checkstack/satellite-backend": "0.2.21",
33
- "@checkstack/signal-common": "0.2.1",
17
+ "@checkstack/backend-api": "0.15.2",
18
+ "@checkstack/cache-api": "0.3.1",
19
+ "@checkstack/cache-utils": "0.2.6",
20
+ "@checkstack/catalog-backend": "1.1.1",
21
+ "@checkstack/catalog-common": "2.2.0",
22
+ "@checkstack/command-backend": "0.1.26",
23
+ "@checkstack/common": "0.10.0",
24
+ "@checkstack/gitops-backend": "0.3.1",
25
+ "@checkstack/gitops-common": "0.4.0",
26
+ "@checkstack/healthcheck-common": "1.1.0",
27
+ "@checkstack/incident-common": "1.2.0",
28
+ "@checkstack/integration-backend": "0.1.26",
29
+ "@checkstack/maintenance-common": "1.2.0",
30
+ "@checkstack/notification-common": "1.1.0",
31
+ "@checkstack/queue-api": "0.3.1",
32
+ "@checkstack/satellite-backend": "0.3.1",
33
+ "@checkstack/signal-common": "0.2.3",
34
34
  "@hono/zod-validator": "^0.7.6",
35
35
  "drizzle-orm": "^0.45.0",
36
36
  "hono": "^4.12.14",
@@ -40,8 +40,8 @@
40
40
  },
41
41
  "devDependencies": {
42
42
  "@checkstack/drizzle-helper": "0.0.5",
43
- "@checkstack/scripts": "0.3.0",
44
- "@checkstack/test-utils-backend": "0.1.24",
43
+ "@checkstack/scripts": "0.3.2",
44
+ "@checkstack/test-utils-backend": "0.1.26",
45
45
  "@checkstack/tsconfig": "0.0.7",
46
46
  "@types/bun": "^1.0.0",
47
47
  "@types/tdigest": "^0.1.5",
package/src/router.ts CHANGED
@@ -155,7 +155,7 @@ export const createHealthCheckRouter = (opts: {
155
155
 
156
156
  getSystemConfigurations: os.getSystemConfigurations.handler(
157
157
  async ({ input }) => {
158
- return service.getSystemConfigurations(input);
158
+ return service.getSystemConfigurations(input.systemId);
159
159
  },
160
160
  ),
161
161