deps: consolidated dependency upgrades (supersedes #52, #53, #54, #56) - #57
Merged
Conversation
Root prod (PR #54): @a2a-js/sdk 0.3.14, @langchain/openai 1.5.5 (+ core 1.2.3), otel 0.220.0/2.9.0, auto-instrumentations-node 0.78.0, bullmq 5.80.2, helmet 8.3.0. Root dev (PR #53): @types/node 26, coverage-v8/vitest 4.1.10, eslint 10.7, fast-check 4.9, prettier 3.9.5, typescript-eslint 8.63. TS 7 rejected (removes node10 moduleResolution + baseUrl - full migration, not a bump). Snyk (PR #56): SNYK-JS-OPENTELEMETRYPROPAGATORJAEGER-17901201 fixed via otel bump; npm audit clean. Board (PR #52): react 19.2.7, zustand 5.0.14, tailwind 4.3.2 (CSS-first migration: @tailwindcss/postcss, @import, backdrop-blur-xs, config removed), TS 6.0.3, vite 8.1.4, vitest 4.1.10, playwright 1.61.1. Gates: lint/typecheck/arch/api-extractor green; 1155 tests, 100% coverage; board build + 148 tests green; npm ci sync verified both lockfiles. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
This PR consolidates multiple dependency-bump PRs into a single, lockfile-synced upgrade across the root package and the /board app, including major upgrades (React 19, Tailwind 4, Zustand 5) and OpenTelemetry updates.
Changes:
- Upgrades root production + dev dependencies (notably
@langchain/openai1.x, OpenTelemetry 0.220, lint/test toolchain updates). - Migrates the board app to Tailwind 4’s CSS-first setup (PostCSS plugin +
@import 'tailwindcss') and removes the unused Tailwind config. - Updates board framework dependencies (React 19 / Zustand 5) and adjusts one Tailwind utility rename (
backdrop-blur-sm→backdrop-blur-xs).
Reviewed changes
Copilot reviewed 6 out of 8 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| package.json | Root dependency and devDependency upgrades (LangChain/OpenTelemetry/tooling versions). |
| board/tailwind.config.js | Removes Tailwind v3 config as part of Tailwind v4 CSS-first migration. |
| board/src/index.css | Switches to Tailwind v4 CSS import (@import 'tailwindcss'). |
| board/src/components/layout/Header.tsx | Updates a renamed Tailwind utility class for v4 blur scale. |
| board/postcss.config.js | Switches PostCSS plugin from tailwindcss/autoprefixer to @tailwindcss/postcss. |
| board/package.json | Board dependency upgrades (React/Zustand/Vite/Vitest/Tailwind 4 + new @tailwindcss/postcss). |
| board/package-lock.json | Lockfile regenerated for board dependency tree changes. |
Files not reviewed (1)
- board/package-lock.json: Generated file
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
CI runs Node 22's bundled npm 10, which requires nested copies (filing-cabinet's typescript@5.9.3, eslint's ignore@7.0.6) that npm 11 dedupes away — the root cause of npm ci failures on all dependabot/snyk PRs. Both lockfiles verified with npm ci under npm 10 and npm 11. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This was referenced Jul 16, 2026
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changed and why
Consolidates the four open bot PRs into one verified upgrade. All four were failing CI (#53/#54/#56 with
npm cilockfile-sync errors, #52 on the Board UI job), so the upgrades were re-applied frommainwith properly regenerated lockfiles and each major tested individually.Root — production deps (supersedes #54)
@a2a-js/sdk0.3.13 → 0.3.14@langchain/openai0.5.18 → 1.5.5 (major) +@langchain/core→ 1.2.3 in lockfile. The tree already resolved core 1.x via overrides (kaibanjs transitively uses@langchain/openai1.4.7), so this aligns the direct dep with the tree instead of splitting it.sdk-node0.219.0 → 0.220.0,auto-instrumentations-node0.77 → 0.78,sdk-metrics2.8 → 2.9bullmq5.79.0 → 5.80.5,helmet8.2.0 → 8.3.0Root — dev deps (supersedes #53)
@types/node26,@vitest/coverage-v8+vitest4.1.10,eslint10.7.0,fast-check4.9.0,prettier3.9.5,typescript-eslint8.64.0moduleResolution: node10andbaseUrl(errors TS5108/TS5102 against our tsconfig). Adopting it is a module-resolution migration, not a dependency bump. Staying on 6.0.3 (latest 6.x).Snyk fix (supersedes #56)
npm audit --audit-level=highreports 0 vulnerabilities. [Snyk] Fix for 1 vulnerabilities #56 itself shipped a half-updated lockfile, which is why its CI failed.Board (supersedes #52)
react/react-dom18.3.1 → 19.2.7,@types/react(-dom) 19.x — board already usescreateRoot; no code changes neededzustand4.5.7 → 5.0.14 — board uses the namedcreateimport; no code changes neededtailwindcss3.4 → 4.3.2 with the CSS-first migration:@tailwindcss/postcssplugin,@import 'tailwindcss',tailwind.config.jsremoved (its customsurfacecolors andpulse-slowanimation were unused),autoprefixerdropped (built into v4),backdrop-blur-sm→backdrop-blur-xs(v4 scale rename, same 4px)typescript5.9.3 → 6.0.3,vite8.1.4,vitest4.1.10,@playwright/test1.61.1,@vitejs/plugin-react6.0.3,happy-dom20.10.6,postcss8.5.19Test coverage
npm cilockfile sync verified for both root and board (the exact failure mode of the superseded PRs)Breaking changes
None to the public API (api-extractor reports no drift). Board visual note: Tailwind 4 preflight may shift minor default styles; borders all carry explicit colors and no renamed utilities were in use, so impact should be nil — worth a quick eyeball of the board and a
test:visualbaseline refresh if diffs appear.Security implications
Positive: fixes the high-severity jaeger-propagator advisory; audit clean at high level.
Closes #52, closes #53, closes #54, closes #56.
🤖 Generated with Claude Code