This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
vue-types@5.1.0
Minor Changes
ec32a30: Force stricter type for the .validate(fn) function arguments:
// Before: v is of type unknown
string().validate((v) => v === 'Hello') // <-- TS error!
// After: v is of type string
string().validate((v) => v === 'Hello') // <-- Works!
This should not be a breaking change, but you should be aware of the new behavior.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
vue-types@5.1.0
Minor Changes
ec32a30: Force stricter type for the
.validate(fn)
function arguments:This should not be a breaking change, but you should be aware of the new behavior.
vue-types-nuxt@2.0.0
Patch Changes