falcor-json-graph
Advanced tools
Comparing version 2.1.0 to 2.1.1
@@ -5,2 +5,12 @@ # Change Log | ||
<a name="2.1.1"></a> | ||
## [2.1.1](https://github.com/Netflix/falcor-json-graph/compare/v2.1.0...v2.1.1) (2017-12-21) | ||
### Bug Fixes | ||
* JsonMap and JsonGraph types should not assume values are present. ([2bade2d](https://github.com/Netflix/falcor-json-graph/commit/2bade2d)) | ||
<a name="2.1.0"></a> | ||
@@ -7,0 +17,0 @@ # [2.1.0](https://github.com/Netflix/falcor-json-graph/compare/v2.0.0...v2.1.0) (2017-12-12) |
@@ -5,3 +5,3 @@ // | ||
@@ -16,3 +16,3 @@ | ||
@@ -19,0 +19,0 @@ |
{ | ||
"name": "falcor-json-graph", | ||
"version": "2.1.0", | ||
"version": "2.1.1", | ||
"description": "A set of factory functions for creating JSON Graph values.", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -5,3 +5,3 @@ // @flow | ||
export type JsonValue = Primitive | JsonMap | JsonValue[]; | ||
export type JsonMap = { [key: string]: JsonValue }; | ||
export type JsonMap = { [key: string]: JsonValue | void }; | ||
@@ -16,3 +16,3 @@ export type Key = Primitive; | ||
export type JsonGraph = { [key: string]: JsonGraphNode, $type?: empty }; | ||
export type JsonGraph = { [key: string]: JsonGraphNode | void, $type?: empty }; | ||
export type JsonGraphNode = JsonGraph | JsonGraphLeaf; | ||
@@ -19,0 +19,0 @@ export type JsonGraphLeaf = |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
49757
0