Comparing version 0.4.11 to 0.4.12
# Change Log | ||
## 0.4.12 | ||
### Bug Fixes | ||
* [#197] Fixed issue where plugins were called with undefined during rehydration | ||
## 0.4.11 | ||
@@ -4,0 +10,0 @@ |
@@ -183,3 +183,4 @@ /** | ||
var pluginTasks = self._plugins.filter(function (plugin) { | ||
return 'function' === typeof plugin.rehydrate; | ||
return 'function' === typeof plugin.rehydrate | ||
&& obj.plugins[plugin.name]; | ||
}).map(function (plugin) { | ||
@@ -186,0 +187,0 @@ return new Promise(function (resolve, reject) { |
@@ -333,3 +333,4 @@ /** | ||
var pluginTasks = self._plugins.filter(function (plugin) { | ||
return 'function' === typeof plugin.rehydrate; | ||
return 'function' === typeof plugin.rehydrate | ||
&& obj.plugins[plugin.name]; | ||
}).map(function (plugin) { | ||
@@ -336,0 +337,0 @@ return new Promise(function (resolve, reject) { |
{ | ||
"name": "fluxible", | ||
"version": "0.4.11", | ||
"version": "0.4.12", | ||
"description": "A pluggable container for isomorphic flux applications", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Sorry, the diff of this file is not supported yet
99438
1049