@checkstack/healthcheck-backend 1.0.4 → 1.1.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 +40 -0
- package/package.json +20 -20
- package/src/router.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,45 @@
|
|
|
1
1
|
# @checkstack/healthcheck-backend
|
|
2
2
|
|
|
3
|
+
## 1.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 7c97b43: Backfill missing package bumps for the `/rest` mount PR — these packages were
|
|
8
|
+
modified in that change but were not declared in its changeset:
|
|
9
|
+
|
|
10
|
+
- `@checkstack/api-docs-frontend`: schema renderer rewrite (`additionalProperties`,
|
|
11
|
+
`$ref` resolution, `oneOf`/`anyOf`/`allOf`, nullable unions, `format`
|
|
12
|
+
qualifiers) and the new path/query/header/cookie parameters table for GET
|
|
13
|
+
endpoints.
|
|
14
|
+
- `@checkstack/frontend`: Vite dev-server proxy for `/rest/*` so external REST
|
|
15
|
+
clients pointing at the Vite port resolve to the backend.
|
|
16
|
+
- `@checkstack/healthcheck-backend`: router handler now unpacks `input.systemId`
|
|
17
|
+
after `getSystemConfigurations` was refactored from `.input(z.string())` to
|
|
18
|
+
`.input(z.object({ systemId: z.string() }))`.
|
|
19
|
+
|
|
20
|
+
No behavior change beyond what the original PR already shipped.
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [9016526]
|
|
25
|
+
- @checkstack/common@0.10.0
|
|
26
|
+
- @checkstack/catalog-common@2.2.0
|
|
27
|
+
- @checkstack/healthcheck-common@1.1.0
|
|
28
|
+
- @checkstack/incident-common@1.2.0
|
|
29
|
+
- @checkstack/maintenance-common@1.2.0
|
|
30
|
+
- @checkstack/notification-common@1.1.0
|
|
31
|
+
- @checkstack/gitops-common@0.4.0
|
|
32
|
+
- @checkstack/satellite-backend@0.3.1
|
|
33
|
+
- @checkstack/backend-api@0.15.2
|
|
34
|
+
- @checkstack/catalog-backend@1.1.1
|
|
35
|
+
- @checkstack/command-backend@0.1.26
|
|
36
|
+
- @checkstack/gitops-backend@0.3.1
|
|
37
|
+
- @checkstack/integration-backend@0.1.26
|
|
38
|
+
- @checkstack/signal-common@0.2.3
|
|
39
|
+
- @checkstack/cache-api@0.3.1
|
|
40
|
+
- @checkstack/queue-api@0.3.1
|
|
41
|
+
- @checkstack/cache-utils@0.2.6
|
|
42
|
+
|
|
3
43
|
## 1.0.4
|
|
4
44
|
|
|
5
45
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@checkstack/healthcheck-backend",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
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.
|
|
18
|
-
"@checkstack/cache-api": "0.
|
|
19
|
-
"@checkstack/cache-utils": "0.2.
|
|
20
|
-
"@checkstack/catalog-backend": "1.0
|
|
21
|
-
"@checkstack/catalog-common": "2.0
|
|
22
|
-
"@checkstack/command-backend": "0.1.
|
|
23
|
-
"@checkstack/common": "0.
|
|
24
|
-
"@checkstack/gitops-backend": "0.
|
|
25
|
-
"@checkstack/gitops-common": "0.
|
|
26
|
-
"@checkstack/healthcheck-common": "1.0.
|
|
27
|
-
"@checkstack/incident-common": "1.0
|
|
28
|
-
"@checkstack/integration-backend": "0.1.
|
|
29
|
-
"@checkstack/maintenance-common": "1.0
|
|
30
|
-
"@checkstack/notification-common": "1.0.
|
|
31
|
-
"@checkstack/queue-api": "0.
|
|
32
|
-
"@checkstack/satellite-backend": "0.
|
|
33
|
-
"@checkstack/signal-common": "0.2.
|
|
17
|
+
"@checkstack/backend-api": "0.15.1",
|
|
18
|
+
"@checkstack/cache-api": "0.3.0",
|
|
19
|
+
"@checkstack/cache-utils": "0.2.5",
|
|
20
|
+
"@checkstack/catalog-backend": "1.1.0",
|
|
21
|
+
"@checkstack/catalog-common": "2.1.0",
|
|
22
|
+
"@checkstack/command-backend": "0.1.25",
|
|
23
|
+
"@checkstack/common": "0.9.0",
|
|
24
|
+
"@checkstack/gitops-backend": "0.3.0",
|
|
25
|
+
"@checkstack/gitops-common": "0.3.0",
|
|
26
|
+
"@checkstack/healthcheck-common": "1.0.2",
|
|
27
|
+
"@checkstack/incident-common": "1.1.0",
|
|
28
|
+
"@checkstack/integration-backend": "0.1.25",
|
|
29
|
+
"@checkstack/maintenance-common": "1.1.0",
|
|
30
|
+
"@checkstack/notification-common": "1.0.2",
|
|
31
|
+
"@checkstack/queue-api": "0.3.0",
|
|
32
|
+
"@checkstack/satellite-backend": "0.3.0",
|
|
33
|
+
"@checkstack/signal-common": "0.2.2",
|
|
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.
|
|
44
|
-
"@checkstack/test-utils-backend": "0.1.
|
|
43
|
+
"@checkstack/scripts": "0.3.1",
|
|
44
|
+
"@checkstack/test-utils-backend": "0.1.25",
|
|
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
|
|