ember-cli-simple-store
Advanced tools
Comparing version 0.9.1 to 0.9.2
{ | ||
"name": "ember-cli-simple-store", | ||
"version": "0.9.1", | ||
"version": "0.9.2", | ||
"description": "ember-cli addon that provides a simple identity map for ember.js web applications", | ||
@@ -5,0 +5,0 @@ "directories": { |
@@ -26,3 +26,3 @@ # ember-cli-simple-store | ||
this.store.push("person", {id: 1, name: "toran"}); | ||
store.push("person", {id: 1, name: "toran"}); | ||
``` | ||
@@ -33,3 +33,3 @@ | ||
this.store.remove("person", 123); | ||
store.remove("person", 123); | ||
``` | ||
@@ -40,3 +40,3 @@ | ||
this.store.find("person"); | ||
store.find("person"); | ||
``` | ||
@@ -47,3 +47,3 @@ | ||
this.store.find("person", 123); | ||
store.find("person", 123); | ||
``` | ||
@@ -54,3 +54,3 @@ | ||
this.store.find("person", {account_id: 789}); | ||
store.find("person", {account_id: 789}); | ||
``` | ||
@@ -66,3 +66,3 @@ | ||
} | ||
this.store.find("person", filter, ["salary", "name"]); | ||
store.find("person", filter, ["salary", "name"]); | ||
``` | ||
@@ -73,3 +73,3 @@ | ||
this.store.findOne("person"); | ||
store.findOne("person"); | ||
``` | ||
@@ -80,3 +80,3 @@ | ||
this.store.clear("person"); | ||
store.clear("person"); | ||
``` | ||
@@ -87,3 +87,3 @@ | ||
this.store.clear(); | ||
store.clear(); | ||
``` | ||
@@ -90,0 +90,0 @@ |
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
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
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
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
4558212
29
55042
1