Skip to content

Conversation

@imoken777
Copy link

This PR fixes a version discrepancy in the drizzle-valibot package.json peerDependencies.

"peerDependencies": {
- "drizzle-orm": ">=0.36.0",
+ "drizzle-orm": ">=0.38.0",
"valibot": ">=1.0.0-beta.7"
},

The peerDependencies currently specify "drizzle-orm": ">=0.36.0", which does not reflect the actual minimum required version.

The project release clearly states that the required version of drizzle-orm is 0.38.0 or higher. drizzle-valibot changelogs

You must also have Drizzle ORM v0.38.0 or greater and Valibot v1.0.0-beta.7 or greater installed.

Using drizzle-valibot with drizzle-orm version 0.36.0 causes runtime errors.

This change updates the peerDependencies to "drizzle-orm": ">=0.38.0" to match the actual required version and prevent incorrect warnings and runtime failures.

The package.json incorrectly allows >=0.36.0, causing wrong warnings. Updated to match actual required version 0.38.0.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

1 participant