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

@feathersjs/schema

Package Overview
Dependencies
Maintainers
4
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@feathersjs/schema - npm Package Compare versions

Comparing version 0.0.1-alpha.2 to 0.0.1-alpha.4

11

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

## [0.0.1-alpha.4](https://github.com/feathersjs/schema/compare/v0.0.1-alpha.3...v0.0.1-alpha.4) (2020-02-08)
### Bug Fixes
* Fix getting and resolving schemas from undefined objects ([#14](https://github.com/feathersjs/schema/issues/14)) ([511752e](https://github.com/feathersjs/schema/commit/511752e7992fc0100acd1189638a2bd8178abc70))
## [0.0.1-alpha.2](https://github.com/feathersjs/schema/compare/v0.0.1-alpha.1...v0.0.1-alpha.2) (2019-12-18)

@@ -8,0 +19,0 @@

3

lib/core.js

@@ -75,2 +75,5 @@ "use strict";

}
if (!target) {
return null;
}
let p = target;

@@ -77,0 +80,0 @@ do {

10

package.json
{
"name": "@feathersjs/schema",
"version": "0.0.1-alpha.2",
"version": "0.0.1-alpha.4",
"description": "Core Feathers schema",

@@ -45,3 +45,3 @@ "homepage": "https://feathersjs.com",

"dependencies": {
"@hapi/joi": "^16.1.8",
"@hapi/joi": "^17.0.2",
"@types/hapi__joi": "^16.0.3",

@@ -52,4 +52,4 @@ "reflect-metadata": "^0.1.13"

"@types/mocha": "^5.2.7",
"@types/node": "^12.7.12",
"mocha": "^6.2.1",
"@types/node": "^13.1.6",
"mocha": "^7.0.1",
"shx": "^0.3.2",

@@ -59,3 +59,3 @@ "ts-node": "^8.4.1",

},
"gitHead": "16097e1f91e03c9cdf900d3e836d68d4f2f425c7"
"gitHead": "b89b2115449d82b94a5c54017330d6ba17f2f8f8"
}

@@ -112,6 +112,10 @@ import Joi from '@hapi/joi';

if (typeof target === 'string') {
if (typeof target === 'string') {
return nameMap[target] || null;
}
if (!target) {
return null;
}
let p = target;

@@ -118,0 +122,0 @@

Sorry, the diff of this file is not supported yet

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