steem-wise-core
steem-wise-core copied to clipboard
fix(deps): update dependency ow to ^0.19.0
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| ow | ^0.10.0 -> ^0.19.0 |
Release Notes
sindresorhus/ow
v0.19.0
v0.18.0
Improvements
Fixes
v0.17.0
v0.16.0
Breaking
- Require Node.js 10
5568d9f
Enhancements
Fixes
- Fix usage in the browser when using Webpack
0c0f64b
v0.15.1
- Include the
dev-onlyfile in the package64ab6b8
v0.15.0
- Add proper
notmessages (#130)5b74b14 - Preserve argument error stack trace in the browser (#164)
a58814c
v0.14.0
Breaking
- Require Node.js 8
25be9db
Enhancements
- Export shim if running on browser in production (#129)
acc5c9bNote: If you intend on usingowfor development purposes only, userequire('ow/dev-only')instead of the usualimport 'ow', and run the bundler withNODE_ENVset toproduction(e.g.$ NODE_ENV="production" parcel build index.js). This will makeowautomatically export a shim when running in production, which should result in a significantly lower bundle size.
v0.13.2
v0.13.1
Fixes:
- Fix type definition directory in package.json
3d19c6b
v0.13.0
Enhancements:
- Add support for a custom validation function (#137)
702c283 - Add
string.urlpredicate (#140)0a0972c - Add
number.oneOfpredicate (#132)e4d581e - Use the package.json "browser" field to toggle Node.js-specific functionality (#145)
3c42d59
Fixes:
- Handle missing object property in
exactShapepredicate (#142)5421063 - Only call captureStackTrace when possible (#141)
e697ccd
v0.12.0
v0.11.1
v0.11.0
Add support for optional predicates (#124) 44272ab 🎉
This means you can now validate the input if it exists and ignore it if it doesn't.
// This passes
ow(2, ow.optional.number);
// This passes too
ow(undefined, ow.optional.number);
// This fails
ow(true, ow.optional.number);
We chose to only allow undefined and not null as that's how default parameters work too.
Renovate configuration
:date: Schedule: At any time (no schedule defined).
:vertical_traffic_light: Automerge: Disabled by config. Please merge this manually once you are satisfied.
:recycle: Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
:no_bell: Ignore: Close this PR and you won't be reminded about this update 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.