@checkstack/incident-backend 1.1.1 → 1.1.3
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 +43 -0
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# @checkstack/incident-backend
|
|
2
2
|
|
|
3
|
+
## 1.1.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- b33fb4d: Refresh `bun.lock` to clear MEDIUM-severity Trivy advisories on transitive
|
|
8
|
+
runtime dependencies. No public API change — bumping every workspace
|
|
9
|
+
package that lists `@orpc/server` as a direct dep so consumers re-resolve
|
|
10
|
+
the optional `ws` peer to the patched release on their next install.
|
|
11
|
+
|
|
12
|
+
- `ws` `8.20.0` → `8.20.1` (CVE-2026-45736). Pulled into the install tree
|
|
13
|
+
as `@orpc/server`'s optional WebSocket peer; Bun auto-installs it into
|
|
14
|
+
every backend package that depends on `@orpc/server`, so a stale 8.20.0
|
|
15
|
+
ships in the consumer's `node_modules` until the parent package
|
|
16
|
+
re-resolves.
|
|
17
|
+
- `brace-expansion` `5.0.5` → `5.0.6` (CVE-2026-45149). Pulled in only
|
|
18
|
+
through dev tooling (`minimatch@10` via `@typescript-eslint` and
|
|
19
|
+
`storybook`'s `glob@13`), so it does not ship to consumers and no
|
|
20
|
+
workspace `package.json` lists it; the lockfile bump alone clears the
|
|
21
|
+
finding for the Docker image and the local dev tree. No version bump
|
|
22
|
+
is attributed to this advisory.
|
|
23
|
+
|
|
24
|
+
The fix lives entirely in `bun.lock` — no `package.json`, `overrides`, or
|
|
25
|
+
`resolutions` change is needed because both parent ranges (`minimatch@10
|
|
26
|
+
→ brace-expansion@^5.0.5`, `@orpc/server / storybook / happy-dom →
|
|
27
|
+
ws@>=8.18.x`) already accept the patched releases, and `bun install`
|
|
28
|
+
keeps the resolved versions sticky after the initial `bun update`.
|
|
29
|
+
|
|
30
|
+
- Updated dependencies [1909a61]
|
|
31
|
+
- Updated dependencies [b33fb4d]
|
|
32
|
+
- @checkstack/backend-api@0.15.3
|
|
33
|
+
- @checkstack/catalog-backend@1.1.3
|
|
34
|
+
- @checkstack/command-backend@0.1.27
|
|
35
|
+
- @checkstack/integration-backend@0.1.27
|
|
36
|
+
- @checkstack/cache-api@0.3.2
|
|
37
|
+
- @checkstack/cache-utils@0.2.7
|
|
38
|
+
|
|
39
|
+
## 1.1.2
|
|
40
|
+
|
|
41
|
+
### Patch Changes
|
|
42
|
+
|
|
43
|
+
- Updated dependencies [b627562]
|
|
44
|
+
- @checkstack/catalog-backend@1.1.2
|
|
45
|
+
|
|
3
46
|
## 1.1.1
|
|
4
47
|
|
|
5
48
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@checkstack/incident-backend",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"license": "Elastic-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.ts",
|
|
@@ -14,27 +14,27 @@
|
|
|
14
14
|
"lint:code": "eslint . --max-warnings 0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@checkstack/backend-api": "0.15.
|
|
18
|
-
"@checkstack/cache-api": "0.3.
|
|
19
|
-
"@checkstack/cache-utils": "0.2.
|
|
20
|
-
"@checkstack/incident-common": "1.
|
|
21
|
-
"@checkstack/catalog-common": "2.
|
|
22
|
-
"@checkstack/catalog-backend": "1.1.
|
|
23
|
-
"@checkstack/notification-common": "1.0
|
|
24
|
-
"@checkstack/auth-common": "0.
|
|
25
|
-
"@checkstack/command-backend": "0.1.
|
|
26
|
-
"@checkstack/signal-common": "0.2.
|
|
27
|
-
"@checkstack/integration-backend": "0.1.
|
|
28
|
-
"@checkstack/integration-common": "0.
|
|
29
|
-
"@checkstack/common": "0.
|
|
17
|
+
"@checkstack/backend-api": "0.15.2",
|
|
18
|
+
"@checkstack/cache-api": "0.3.1",
|
|
19
|
+
"@checkstack/cache-utils": "0.2.6",
|
|
20
|
+
"@checkstack/incident-common": "1.2.0",
|
|
21
|
+
"@checkstack/catalog-common": "2.2.0",
|
|
22
|
+
"@checkstack/catalog-backend": "1.1.2",
|
|
23
|
+
"@checkstack/notification-common": "1.1.0",
|
|
24
|
+
"@checkstack/auth-common": "0.7.0",
|
|
25
|
+
"@checkstack/command-backend": "0.1.26",
|
|
26
|
+
"@checkstack/signal-common": "0.2.3",
|
|
27
|
+
"@checkstack/integration-backend": "0.1.26",
|
|
28
|
+
"@checkstack/integration-common": "0.4.0",
|
|
29
|
+
"@checkstack/common": "0.10.0",
|
|
30
30
|
"drizzle-orm": "^0.45.0",
|
|
31
31
|
"zod": "^4.2.1",
|
|
32
32
|
"@orpc/server": "^1.13.2"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@checkstack/drizzle-helper": "0.0.5",
|
|
36
|
-
"@checkstack/scripts": "0.3.
|
|
37
|
-
"@checkstack/test-utils-backend": "0.1.
|
|
36
|
+
"@checkstack/scripts": "0.3.2",
|
|
37
|
+
"@checkstack/test-utils-backend": "0.1.26",
|
|
38
38
|
"@checkstack/tsconfig": "0.0.7",
|
|
39
39
|
"@types/bun": "^1.0.0",
|
|
40
40
|
"drizzle-kit": "^0.31.10",
|