chore(deps): upgrade all dependencies (2026-07-13) - #12
Draft
devin-ai-integration[bot] wants to merge 11 commits into
Draft
devin-ai-integration[bot] wants to merge 11 commits into
devin-ai-integration[bot] wants to merge 11 commits into
Conversation
Co-Authored-By: Phil Bedford <phil.bedford@cognition.ai>
Co-Authored-By: Phil Bedford <phil.bedford@cognition.ai>
…gin-svgr 4->5 Co-Authored-By: Phil Bedford <phil.bedford@cognition.ai>
Co-Authored-By: Phil Bedford <phil.bedford@cognition.ai>
Co-Authored-By: Phil Bedford <phil.bedford@cognition.ai>
Co-Authored-By: Phil Bedford <phil.bedford@cognition.ai>
Co-Authored-By: Phil Bedford <phil.bedford@cognition.ai>
Co-Authored-By: Phil Bedford <phil.bedford@cognition.ai>
Co-Authored-By: Phil Bedford <phil.bedford@cognition.ai>
Co-Authored-By: Phil Bedford <phil.bedford@cognition.ai>
…ectormap runtime) Co-Authored-By: Phil Bedford <phil.bedford@cognition.ai>
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
Author
Frontend recording |
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.
Summary
Upgrades all outdated npm dependencies in TailAdmin React, following the "Upgrade All Dependencies" playbook (batched patch → minor → major, validating
npm run build+npm run lintafter each batch, one commit per batch/major). Resolves all 13npm auditadvisories (1 critical, 6 high, 5 moderate, 1 low) → 0 vulnerabilities. Frontend was visually verified in a real browser with a 60s recorded walkthrough and zero console errors.The repo's version-prefix convention is preserved: caret
^everywhere excepttypescriptwhich stays tilde~.3 major bumps were intentionally skipped (details below) because they break the build/lint/runtime and fixing them would require refactoring app source or pulling prerelease deps — out of scope for a dependency bump.
Upgraded packages
Patch (
chore(deps): upgrade patch dependencies)Minor (
chore(deps): upgrade minor dependencies)Major (one commit each)
~preservedSecurity fixes (npm audit: 13 → 0)
npm audit fix</style>XSS → postcss 8.5.19npm audit fixSkipped major upgrades (documented, not silent)
@react-jvectormap/coreat runtime — its webpack-bundled dist references the css-loader runtime, and vite 7+'s esbuild CJS-interop change makes the default export non-callable (_..._css_loader_..._default(...) is not a function), crashing the whole app to a blank page.optimizeDeps.excludedid not help. jvectormap is a React-19-forced-override dep (seeoverrides) that ships a prebuilt bundle, so it can't be upgraded to fix this. Verified in-browser at the vite-8 commit. vite 6.4.3 still clears the vite security advisory.@babel/core@8.0.0-rcvia@rolldown/plugin-babel(only needed by vite 8); pulling a prerelease core violates supply-chain safety. 5.2.0 is a real major bump (4→5) and works with vite 6.react-hooks/purity, setState-in-effect) which flag 4 preexisting violations inThemeContext,AppSidebar,Calendar→npm run lintfails. Fixing requires refactoring app source, out of scope.typescript-eslint@8.63only supports>=4.8.4 <6.1.0, so TS 7 crasheseslint. 6.0.3 is the latest supported and still a major bump (5→6).Source impact
Actively imported in
src/: react, react-dom, react-router, apexcharts + react-apexcharts (charts), @fullcalendar/* (Calendar), react-dropzone (DropZone), react-helmet-async (PageMeta), tailwind-merge, clsx.swiperis referenced only via CSS class names (no JS import). The rest are dev/build-only (vite, eslint, typescript, tailwind tooling, @types/*).Validation
npm run build(tsc -b && vite build) — passesnpm run lint— passes (0 errors, 2 preexistingreact-refreshwarnings, unchanged from baseline)npm audit— 0 vulnerabilitiesVideo demo
60s interactive walkthrough of the upgraded app (dashboard KPIs + ApexCharts, sidebar nav, calendar, forms, tables, charts, profile, dark mode) — zero console errors:
upgrade-demo.mp4
Link to Devin session: https://app.devin.ai/sessions/8d9b21c593344cea9141145ccf4f81cb
Requested by: @dr-phil
Devin Review