@checkstack/theme-backend 0.1.30 → 0.1.32

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