Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update dependency yup to v0.32.8 #146

Merged
merged 1 commit into from
Dec 25, 2020
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 23, 2020

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
yup 0.30.0 -> 0.32.8 age adoption passing confidence
@types/yup 0.29.9 -> 0.29.11 age adoption passing confidence

Release Notes

jquense/yup

v0.32.8

Compare Source

v0.32.7

Compare Source

v0.32.6

Compare Source

Bug Fixes

v0.32.5

Compare Source

Bug Fixes
  • types: change base.default() to any (01c6930)

v0.32.4

Compare Source

Bug Fixes
  • types: rm base pick/omit types as they conflict with more specific ones (14e2c8c)
Features

v0.32.3

Compare Source

Bug Fixes
  • types: AnyObjectSchema anys (1c54665)

v0.32.2

Compare Source

Bug Fixes

v0.32.1

Compare Source

Bug Fixes

v0.32.0

Compare Source

Features
BREAKING CHANGES
  • concat doesn't check for "unset" nullable or presence when merging meaning the nullability and presence will always be the same as the schema passed to concat(). They can be overridden if needed after concatenation
  • schema factory functions are no longer constructors. The classes are now also exported for extension or whatever else. e.g. import { StringSchema, string } from 'yup'

0.31.1 (2020-12-01)

Bug Fixes
  • swallowed errors on nested schema with no tests (5316ab9), closes #​1127
Features

v0.31.1

Compare Source

Bug Fixes
  • swallowed errors on nested schema with no tests (5316ab9), closes #​1127
Features

v0.31.0

Compare Source

Bug Fixes
Features
  • add array.length() and treat empty arrays as valid for required() (fbc158d)
  • add object.pick and object.omit (425705a)
  • deprecate the getter overload of default() (#​1119) (5dae837)
  • more strictly coerce strings, exclude arrays and plain objects (963d2e8)
BREAKING CHANGES
  • array().required() will no longer consider an empty array missing and required checks will pass.

To maintain the old behavior change to:

array().required().min(1)
  • plain objects and arrays are no long cast to strings automatically

to recreate the old behavior:

string().transform((_, input) => input != null && input.toString ? input.toString() : value);

Renovate configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/yup-0.x branch from 5b05022 to 45928ca Compare December 1, 2020 01:44
@renovate renovate bot changed the title fix(deps): update dependency yup to v0.31.0 fix(deps): update dependency yup to v0.31.1 Dec 1, 2020
@renovate renovate bot force-pushed the renovate/yup-0.x branch 2 times, most recently from 5fe50dc to f52b44c Compare December 3, 2020 20:20
@renovate renovate bot changed the title fix(deps): update dependency yup to v0.31.1 fix(deps): update dependency yup to v0.32.0 Dec 3, 2020
@renovate renovate bot force-pushed the renovate/yup-0.x branch from f52b44c to 99dcb36 Compare December 4, 2020 14:21
@renovate renovate bot changed the title fix(deps): update dependency yup to v0.32.0 fix(deps): update dependency yup to v0.32.1 Dec 4, 2020
@renovate renovate bot force-pushed the renovate/yup-0.x branch from 99dcb36 to fbfb2ac Compare December 7, 2020 15:06
@renovate renovate bot changed the title fix(deps): update dependency yup to v0.32.1 fix(deps): update dependency yup to v0.32.2 Dec 7, 2020
@renovate renovate bot force-pushed the renovate/yup-0.x branch from fbfb2ac to e2bc4d0 Compare December 7, 2020 16:25
@renovate renovate bot changed the title fix(deps): update dependency yup to v0.32.2 fix(deps): update dependency yup to v0.32.3 Dec 7, 2020
@renovate renovate bot force-pushed the renovate/yup-0.x branch from e2bc4d0 to ae0ff5f Compare December 7, 2020 21:13
@renovate renovate bot changed the title fix(deps): update dependency yup to v0.32.3 fix(deps): update dependency yup to v0.32.4 Dec 7, 2020
@renovate renovate bot force-pushed the renovate/yup-0.x branch from ae0ff5f to ca73919 Compare December 7, 2020 22:47
@renovate renovate bot changed the title fix(deps): update dependency yup to v0.32.4 fix(deps): update dependency yup to v0.32.5 Dec 7, 2020
@renovate renovate bot force-pushed the renovate/yup-0.x branch from ca73919 to 8ca9738 Compare December 8, 2020 15:08
@renovate renovate bot changed the title fix(deps): update dependency yup to v0.32.5 fix(deps): update dependency yup to v0.32.6 Dec 8, 2020
@renovate renovate bot force-pushed the renovate/yup-0.x branch from 8ca9738 to 40a4bc8 Compare December 10, 2020 18:37
@renovate renovate bot changed the title fix(deps): update dependency yup to v0.32.6 fix(deps): update dependency yup to v0.32.7 Dec 10, 2020
@renovate renovate bot force-pushed the renovate/yup-0.x branch from 40a4bc8 to 476c6e3 Compare December 10, 2020 18:43
@renovate renovate bot changed the title fix(deps): update dependency yup to v0.32.7 fix(deps): update dependency yup to v0.32.8 Dec 10, 2020
@renovate renovate bot force-pushed the renovate/yup-0.x branch from 476c6e3 to 6639254 Compare December 16, 2020 15:17
@Airfooox Airfooox merged commit fc2783d into next Dec 25, 2020
@renovate renovate bot deleted the renovate/yup-0.x branch December 25, 2020 17:03
Airfooox pushed a commit that referenced this pull request Dec 25, 2020
## [1.4.2](v1.4.1...v1.4.2) (2020-12-25)

### Bug Fixes

* **deps:** update dependency yup to v0.32.8 ([#146](#146)) ([fc2783d](fc2783d))
@Airfooox
Copy link
Owner

🎉 This PR is included in version 1.4.2 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants