Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

yup

Package Overview
Dependencies
Maintainers
1
Versions
127
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yup - npm Package Compare versions

Comparing version 0.17.5 to 0.17.6

7

CHANGELOG.md

@@ -0,1 +1,8 @@

v0.17.6 - Thu, 21 Apr 2016 14:59:59 GMT
---------------------------------------
- [139dd24](../../commit/139dd24) [changed] lazy qualifies as a yup schema
v0.17.5 - Thu, 21 Apr 2016 11:20:16 GMT

@@ -2,0 +9,0 @@ ---------------------------------------

2

lib/object.js

@@ -282,5 +282,5 @@ 'use strict';

if (Ref.isRef(value) && !value.isContext) addNode(value.path);else if (isSchema(value)) value._deps.forEach(addNode);
if (Ref.isRef(value) && !value.isContext) addNode(value.path);else if (isSchema(value) && value._deps) value._deps.forEach(addNode);
}
}return toposort.array(nodes, edges).reverse();
}

@@ -44,3 +44,5 @@ 'use strict';

Lazy.prototype.__isYupSchema__ = true;
exports.default = Lazy;
module.exports = exports['default'];
{
"name": "yup",
"version": "0.17.5",
"version": "0.17.6",
"description": "Dead simple Object schema validation",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc