steem-wise-core icon indicating copy to clipboard operation
steem-wise-core copied to clipboard

fix(deps): update dependency ow to ^0.19.0

Open renovate[bot] opened this issue 7 years ago • 0 comments

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
ow ^0.10.0 -> ^0.19.0 age adoption passing confidence

Release Notes

sindresorhus/ow

v0.19.0

Compare Source

  • Allow potentially undefined functions to be checked (#​184) 06b98a5

v0.18.0

Compare Source

Improvements
Fixes
  • Fix for static type error for ow.object.valuesOfType() (#​185) b3c5fbd

v0.17.0

Compare Source

  • Add ArrayBufferPredicate, DataViewPredicate, TypedArrayPredicate (#​173) f010b90

v0.16.0

Compare Source

Breaking
Enhancements
  • Export ArgumentError 952390a
  • Allow using ow.any with ow.array.ofType ec59a5c
Fixes
  • Fix usage in the browser when using Webpack 0c0f64b

v0.15.1

Compare Source

  • Include the dev-only file in the package 64ab6b8

v0.15.0

Compare Source

v0.14.0

Compare Source

Breaking
Enhancements
  • Export shim if running on browser in production (#​129) acc5c9b Note: If you intend on using ow for development purposes only, use require('ow/dev-only') instead of the usual import 'ow', and run the bundler with NODE_ENV set to production (e.g. $ NODE_ENV="production" parcel build index.js). This will make ow automatically export a shim when running in production, which should result in a significantly lower bundle size.

v0.13.2

Compare Source

v0.13.1

Compare Source

Fixes:

  • Fix type definition directory in package.json 3d19c6b

v0.13.0

Compare Source

Enhancements:

Fixes:

v0.12.0

Compare Source

v0.11.1

Compare Source

v0.11.0

Compare Source

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.

renovate[bot] avatar Mar 12 '19 17:03 renovate[bot]