Update dependencies - #78
Merged
Merged
Conversation
Changepacks@devup-api/core@0.1.19 → 0.1.20 - packages/core/package.jsonPatch
@devup-api/fetch@0.1.22 → 0.1.23 - packages/fetch/package.jsonPatch
@devup-api/generator@0.1.25 → 0.1.26 - packages/generator/package.jsonPatch
@devup-api/hookform@0.1.6 → 0.1.7 - packages/hookform/package.jsonPatch
@devup-api/next-plugin@0.1.14 → 0.1.15 - packages/next-plugin/package.jsonPatch
@devup-api/react-query@0.1.16 → 0.1.17 - packages/react-query/package.jsonPatch
@devup-api/rsbuild-plugin@0.1.14 → 0.1.15 - packages/rsbuild-plugin/package.jsonPatch
@devup-api/ui@0.1.3 → 0.1.4 - packages/ui/package.jsonPatch
@devup-api/utils@0.1.11 → 0.1.12 - packages/utils/package.jsonPatch
@devup-api/vite-plugin@0.1.14 → 0.1.15 - packages/vite-plugin/package.jsonPatch
@devup-api/webpack-plugin@0.1.14 → 0.1.15 - packages/webpack-plugin/package.jsonPatch
@devup-api/zod@0.1.4 → 0.1.5 - packages/zod/package.jsonPatch
|
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.
Ran
bunx @dependency-check-updates/cli -d -u --rm, which upgrades every manifest tolatestand wipes all lockfiles andnode_modulesso the tree is regenerated fromscratch (591 MiB removed, then reinstalled).
Major bumps
typescript^6^7@types/node^25^26vite-plugin-dts^4.5^5.0actions/checkoutv5v7codecov/codecov-actionv5v7Minor / patch bumps
@biomejs/biome2.4 → 2.5,vite8.0 → 8.2,zod4.3 → 4.4,react/react-dom19.2.4 → 19.2.8,
next16.2.2 → 16.3.2,@vitejs/plugin-react6.0.1 → 6.1.0,happy-dom20.8 → 20.11,@hookform/resolvers>=5.2.2 → >=5.9.1,react-hook-formTwo follow-ups the upgrade required
1. TypeScript 7 broke
vite-plugin-dts.@devup-api/hookformand@devup-api/uifailed to build:
TypeScript 7 is the native port and no longer ships the JS Compiler API that
vite-plugin-dtsuses for declaration emit. Added the official compatibility package@typescript/typescript6as a devDependency to the two packages that usevite-plugin-dts. All 12 packages build again.2. Biome 2.5 changed formatting. It now breaks
test.each([...])(...)calls acrosslines, so 19 test files were reformatted via
bun run lint:fix. Cosmetic only, nobehavioral change.
Verification
bun run build— all 12 packages exit 0bun test— 1117 pass / 0 failbun run lint— cleanVersion bump
Patch for all 12 published packages: TypeScript 7 regenerates the declaration output for
every package, and
hookform/react-query/zodadditionally changeddependencies/peerDependenciesranges.