Skip to content

chore(deps): aggregate weekly Dependabot batch (api, ui, docs, ci)#272

Merged
agjs merged 2 commits into
mainfrom
chore/deps-weekly-batch-20260709
Jul 9, 2026
Merged

chore(deps): aggregate weekly Dependabot batch (api, ui, docs, ci)#272
agjs merged 2 commits into
mainfrom
chore/deps-weekly-batch-20260709

Conversation

@agjs

@agjs agjs commented Jul 9, 2026

Copy link
Copy Markdown
Contributor

Summary

Dependency bumps

api — pg 8.21.0→8.22.0 · @anthropic-ai/sdk 0.105.0→0.106.0 · openai 6.44.0→6.45.0 · @sentry/bun 10.59.0→10.62.0 · resend 6.14.0→6.16.0 · stripe 22.2.2→22.3.0 · bullmq 5.79.1→5.79.2 · knip 6.16.1→6.23.0

ui — @sentry/react 10.59.0→10.62.0 · i18next 26.3.1→26.3.3 · lucide-react 1.21.0→1.22.0 · @tanstack/react-query(+devtools) 5.101.0→5.101.2 · @playwright/test 1.61.0→1.61.1 · @eslint-community/eslint-plugin-eslint-comments 4.7.1→4.7.2 · knip 6.16.1→6.23.0

docs — astro 6.4.8→7.0.3 · @astrojs/react 5.0.7→6.0.0 · wrangler 4.103.0→4.105.0 · @axe-core/cli 4.11.3→4.12.1

lint tooling (lockstep api + ui) — eslint 10.5.0→10.6.0 · typescript-eslint 8.61.1→8.62.0 · eslint-plugin-unicorn 68.0.0→69.0.0 · prettier 3.8.4→3.9.1

ci — docker/login-action v4.2.0→v4.4.0 · docker/build-push-action v7.2.0→v7.3.0 · docker/setup-buildx-action v4.1.0→v4.2.0 · opentofu/setup-opentofu v2.0.1→v2.0.2

bunfig semgrep fix

apps/api/bunfig.toml's header comment contained the literal [install] token. Semgrep's generic-mode bun-missing-minimum-release-age rule (from p/owasp-top-ten) has no TOML parser and read that comment as a second, empty install table — reporting minimumReleaseAge missing even though the real table sets it to 604800. ui/docs have no such header comment, so only api tripped. It only surfaced now because this batch reformats files under apps/api/src/, which is what gates the SAST scan (dependency-only batches never touch src/). Reworded the comment to drop the token; no install-behavior change.

Test plan

  • bun run check per app (typecheck + lint + lint:meta + knip) — clean for api, ui, docs
  • cd apps/api && bun run validate — check + 1188 pass / 0 fail (against the live dev stack)
  • cd apps/ui && bun run validate — check + test:ci + build + size:check all pass
  • cd apps/docs && bun run build:ci — passes with astro 7 + @astrojs/react 6
  • Full pre-push gate (gitleaks + semgrep + osv-scanner + Playwright smoke + per-app validates + infra-compose config matrix)

App merge bars

Area Command
API cd apps/api && bun run validate
UI cd apps/ui && bun run validate
Docs cd apps/docs && bun run build:ci
Repo drift bun run check (from repo root)

Conventions

  • No any, no blind as, no ! — no production source logic changed (only version pins, mechanical prettier reformat, and a bunfig comment)
  • No new env vars
  • No behavior changed — tests unchanged, all green

Closes #248, #249, #250, #251, #252, #253, #254, #255, #256, #257, #258, #259, #260, #261, #262, #263, #264, #265, #266, #267, #268, #269, #270, #271

agjs added 2 commits July 9, 2026 14:14
Consolidates 23 Dependabot PRs (#248#271) into one batch. Lockfiles
regenerated per app; all three app gates pass locally.

api (apps/api):
  pg 8.21.0→8.22.0, @anthropic-ai/sdk 0.105.0→0.106.0, openai 6.44.0→6.45.0,
  @sentry/bun 10.59.0→10.62.0, resend 6.14.0→6.16.0, stripe 22.2.2→22.3.0,
  bullmq 5.79.1→5.79.2, knip 6.16.1→6.23.0

ui (apps/ui):
  @sentry/react 10.59.0→10.62.0, i18next 26.3.1→26.3.3,
  lucide-react 1.21.0→1.22.0, @tanstack/react-query(+devtools) 5.101.0→5.101.2,
  @playwright/test 1.61.0→1.61.1, @eslint-community/eslint-plugin-eslint-comments
  4.7.1→4.7.2, knip 6.16.1→6.23.0

docs (apps/docs) — includes two majors, validated via build:ci:
  astro 6.4.8→7.0.3, @astrojs/react 5.0.7→6.0.0,
  wrangler 4.103.0→4.105.0, @axe-core/cli 4.11.3→4.12.1

lint tooling, lockstep across api + ui:
  eslint 10.5.0→10.6.0, typescript-eslint 8.61.1→8.62.0,
  eslint-plugin-unicorn 68.0.0→69.0.0, prettier 3.8.4→3.9.1

ci (.github/workflows):
  docker/login-action v4.2.0→v4.4.0, docker/build-push-action v7.2.0→v7.3.0,
  docker/setup-buildx-action v4.1.0→v4.2.0, opentofu/setup-opentofu v2.0.1→v2.0.2

prettier 3.9.1 collapses short one-member-per-line unions onto a single
line; the 14 reformatted *.types.ts / test files are mechanical style-only
churn from that bump (no logic change), committed so format:check stays green.
The apps/api bunfig header comment contained the literal `[install]`
token. Semgrep's generic-mode `bun-missing-minimum-release-age` rule
(from p/owasp-top-ten) has no TOML parser, so it read that comment as a
second, empty `[install]` table and reported minimumReleaseAge missing —
even though the real table sets it to 604800 (7 days). apps/ui and
apps/docs have no such header comment, which is why only api tripped.

This surfaced now because the deps batch reformats files under
apps/api/src/, which is what gates the semgrep SAST scan (dependency-only
batches never touch src/, so the latent finding was never scanned).

Reword the comment to drop the bracketed token and hoist minimumReleaseAge
directly under [install] to match ui/docs. No install-behavior change.
@agjs agjs merged commit 7c33c77 into main Jul 9, 2026
32 of 36 checks passed
@agjs agjs deleted the chore/deps-weekly-batch-20260709 branch July 9, 2026 13:35
This was referenced Jul 9, 2026
agjs added a commit that referenced this pull request Jul 9, 2026
Second weekly batch — three Dependabot PRs (#273, #274, #275) opened
right after #272 merged. Lockfiles regenerated; api + ui gates pass
locally (api 1188/0 tests, ui check + test + build + size all green).

api (apps/api):
  nodemailer 9.0.1→9.0.3 (#273)
  lint group (#274): eslint-plugin-unicorn 69.0.0→70.0.0,
  prettier 3.9.1→3.9.4, typescript-eslint 8.62.0→8.62.1

ui (apps/ui):
  tailwind-shadcn group (#275): lucide-react 1.22.0→1.23.0,
  radix-ui 1.6.0→1.6.1, @tailwindcss/vite 4.3.1→4.3.2, tailwindcss 4.3.1→4.3.2
  lint tooling bumped in lockstep with api (unicorn 70.0.0, prettier 3.9.4,
  typescript-eslint 8.62.1) so prettier/lint versions stay identical across
  apps and avoid format-check drift — Dependabot only opened the api lint PR.

unicorn 70 is a major bump; no new rule violations surfaced and prettier
3.9.4 required no reformatting, so there is no source churn this round.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant