@checkstack/gitops-backend 0.3.1 → 0.3.2

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 +43 -0
  2. package/package.json +9 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,48 @@
1
1
  # @checkstack/gitops-backend
2
2
 
3
+ ## 0.3.2
4
+
5
+ ### Patch Changes
6
+
7
+ - b627562: Bump direct and transitive dependencies to clear MEDIUM-severity advisories
8
+ that Trivy now surfaces alongside CRITICAL/HIGH.
9
+
10
+ Direct version bumps in package.json:
11
+
12
+ - `@checkstack/catalog-backend`, `@checkstack/gitops-backend`,
13
+ `@checkstack/healthcheck-frontend`: `uuid` `^13.0.0` → `^14.0.0`
14
+ (GHSA-w5hq-g745-h8pq, missing buffer bounds check in v3/v5/v6). Also
15
+ dropped the now-redundant `@types/uuid` devDependency — uuid 14 ships
16
+ its own types and the npm `@types/uuid` package is a stub.
17
+ - `@checkstack/gitops-backend`: `yaml` `^2.7.0` → `^2.8.3`
18
+ (GHSA-48c2-rrv3-qjmp, stack overflow on deeply nested collections).
19
+ - `@checkstack/dev-server`: `vite` `^5.4.0` → `^8.0.12`
20
+ (GHSA-4w7w-66w2-5vf9, path traversal in optimized-deps `.map` handling)
21
+ and `@vitejs/plugin-react` `^4.3.4` → `^6.0.1` to stay inside the new
22
+ vite peer range.
23
+
24
+ Root `overrides` / `resolutions` to bypass transitive pins that block the
25
+ walk:
26
+
27
+ - `dompurify` `^3.4.3` — `monaco-editor@0.55.1` pins `dompurify@3.2.7`
28
+ exactly, so the only way to pick up the eight DOMPurify XSS / prototype
29
+ pollution advisories (GHSA-v2wj-7wpq-c8vv et al.) is an override.
30
+ Affects `@checkstack/ui`, which is the only consumer of monaco.
31
+ - `uuid` `^14.0.0` — also forces `bullmq`'s nested `uuid@11.1.0`
32
+ (vulnerable per GHSA-w5hq-g745-h8pq) to the patched line. Affects
33
+ `@checkstack/queue-bullmq-backend`.
34
+ - `yaml` `^2.9.0` — covers transitive resolutions that would otherwise
35
+ pin pre-2.8.3 yaml.
36
+
37
+ The CI image scan (`.github/workflows/pr-checks.yml`) and the local
38
+ `bun run audit:*` helper now include `MEDIUM` alongside `CRITICAL,HIGH`,
39
+ so future MEDIUM regressions fail the pipeline. The production Dockerfile
40
+ also strips vendored `test/`, `tests/`, `__tests__/`, `benchmark/`,
41
+ `benchmarks/`, `example/` and `examples/` folders from `node_modules`
42
+ before the runtime stage — those tarball artefacts ship their own
43
+ nested `package.json` (`benchmark`, `tedious-benchmarks`, etc.) which
44
+ Trivy was scanning as if they were real packages.
45
+
3
46
  ## 0.3.1
4
47
 
5
48
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/gitops-backend",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "license": "Elastic-2.0",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -14,25 +14,24 @@
14
14
  "lint:code": "eslint . --max-warnings 0"
15
15
  },
16
16
  "dependencies": {
17
- "@checkstack/backend-api": "0.15.1",
18
- "@checkstack/gitops-common": "0.3.0",
19
- "@checkstack/common": "0.9.0",
20
- "@checkstack/command-backend": "0.1.25",
21
- "@checkstack/queue-api": "0.3.0",
17
+ "@checkstack/backend-api": "0.15.2",
18
+ "@checkstack/gitops-common": "0.4.0",
19
+ "@checkstack/common": "0.10.0",
20
+ "@checkstack/command-backend": "0.1.26",
21
+ "@checkstack/queue-api": "0.3.1",
22
22
  "@orpc/server": "^1.13.2",
23
23
  "drizzle-orm": "^0.45.0",
24
24
  "minimatch": "^10.0.0",
25
- "uuid": "^13.0.0",
25
+ "uuid": "^14.0.0",
26
26
  "zod": "^4.2.1",
27
- "yaml": "^2.7.0"
27
+ "yaml": "^2.8.3"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@checkstack/drizzle-helper": "0.0.5",
31
- "@checkstack/scripts": "0.3.1",
31
+ "@checkstack/scripts": "0.3.2",
32
32
  "@checkstack/tsconfig": "0.0.7",
33
33
  "@types/bun": "^1.3.5",
34
34
  "@types/node": "^20.0.0",
35
- "@types/uuid": "^11.0.0",
36
35
  "drizzle-kit": "^0.31.10",
37
36
  "typescript": "^5.0.0"
38
37
  }