Comparing version 0.2.0 to 0.2.1
{ | ||
"name": "reflux", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"homepage": "https://github.com/spoike/reflux", | ||
@@ -5,0 +5,0 @@ "authors": [ |
@@ -5,2 +5,8 @@ # Changelog | ||
## v0.2.1 | ||
* IE8 trailing comma bug fix [#145](https://github.com/spoike/refluxjs/pull/145) | ||
* Multiple use of Reflux.connect bug fix [#142](https://github.com/spoike/refluxjs/issues/142), [#143](https://github.com/spoike/refluxjs/pull/143) | ||
* Added .npmignore file, removing non-essential files from `npm install` [#125](https://github.com/spoike/refluxjs/issues/125) | ||
## v0.2.0 | ||
@@ -7,0 +13,0 @@ |
{ | ||
"name": "reflux", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "A simple library for uni-directional dataflow application architecture inspired by ReactJS Flux", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -16,15 +16,3 @@ var Reflux = require('../src'), | ||
componentDidMount: function(){ | ||
var warned = false; | ||
for(var m in Reflux.ListenerMethods){ | ||
if (this[m] && typeof console && typeof console.warn === "function" && !warned ){ | ||
console.warn( | ||
"Component using Reflux.connect already had property '"+m+"'. "+ | ||
"Either you had your own property with that name which was now overridden, "+ | ||
"or you combined connect with ListenerMixin which is unnecessary as connect "+ | ||
"will include the ListenerMixin methods automatically." | ||
); | ||
warned = true; | ||
} | ||
this[m] = Reflux.ListenerMethods[m]; | ||
} | ||
_.extend(this,Reflux.ListenerMethods); | ||
var me = this, cb = (key === undefined ? this.setState : function(v){me.setState(_.object([key],[v]));}); | ||
@@ -31,0 +19,0 @@ this.listenTo(listenable,cb); |
@@ -175,3 +175,3 @@ var _ = require('./utils'), | ||
*/ | ||
joinStrict: maker("strict"), | ||
joinStrict: maker("strict") | ||
}; |
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
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
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
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
2
0
54742
26
747
1