citizenlab
citizenlab copied to clipboard
Bump yup from 0.32.11 to 1.6.1 in /front
Bumps yup from 0.32.11 to 1.6.1.
Release notes
Sourced from yup's releases.
v1 Because I finally got around to it
v1.0.0-beta.7
Fixes published artifacts for the
mainfieldv1.0.0-beta.5 - partial fixes and cast migration path
Beta 5 fixes
partialanddeepPartialmaking it work correctly withlazyschema. Specifically the optionality is added after lazy is evaluated but before any otherwhenconditions are added. This makes it consistent with other conditional schema, where runtime conditions always supersede previous schema configuration. This allows for optional overrides if necessary.const person = object({ name: string().required(), age: number().required(), legalGuardian: string().when('age', { is: (age) => age != null && age < 18, then: (schema) => schema.required(), }), });const optionalPerson = person.partial()
person.cast({name: 'James', age: 6 }) // => TypeError legalGuardian required
// age is still required b/c it's applied after the
partial
optionalPerson.cast({name: 'James', age: 6 }) // => TypeError legalGuardian required
This works slightly differently for
lazywhich have no schema to "start" with:const config = object({ nameOrIdNumber: lazy((value) => { if (typeof value === 'number') return number().required() return string().required() }), });const opti = config.partial()
config.cast({}) // => TypeError nameOrIdNumber is required
config.partial().cast({}) // => {}
Cast optionality migration path
A larger breaking change in v1 is the assertion of optionality during
cast, making previous patterns likestring().nullable().required()no longer possible. Generally this pattern is used when deserialized data is not valid to start, but will become valid through user input such as with an HTML form. v1 no longer allows this, but in order to make migration easier we've added an option tocastthat mimics the previous behavior (not exactly but closely).const name = string().required() </tr></table>
... (truncated)
Changelog
Sourced from yup's changelog.
1.6.1 (2024-12-17)
Bug Fixes
- lazy validation errors thrown in builders should resolve async like other validations (c7d7f97)
1.6.0 (2024-12-16)
Features
- expose LazySchema (2b0f126)
1.5.0 (2024-12-03)
Bug Fixes
Features
- Add exact and stripUnknown method to object() (adcdd8d)
1.4.0 (2024-03-06)
Bug Fixes
Features
... (truncated)
Commits
d00abc3Publish v1.6.1c7d7f97fix: lazy validation errors thrown in builders should resolve async like othe...f27fa44Publish v1.6.00d7c327build: modernize stuff2b0f126feat: expose LazySchemac26f9afUpdate README.md8ac18b6Publish v1.5.0adcdd8dfeat: Add exact and stripUnknown method to object()87be159Fix ValidationError.formatError() clobbering path param (#2250)5a22c16let/const consistency in README: let preference (#2227)- Additional commits viewable in compare view
You can trigger a rebase of this PR by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Note Automatic rebases have been disabled on this pull request as it has been open for over 30 days.
| Warnings | |
|---|---|
| :warning: | The PR title contains no Jira issue key (case-sensitive) |
| :warning: | The branch name contains no Jira issue key (case-sensitive) |
| Messages | |
|---|---|
| :book: | Changelog provided 🎉 |
| :book: | |
| :book: |
Generated by :no_entry_sign: dangerJS against a228d085c2882de6e65d76cf72cee43633e804be
Superseded by #12225.