All Versions
39
Latest Version
Avg Release Cycle
11 days
Latest Release
2842 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v6.4.1 Changes
February 28, 2017- NOTE: New
MyStore.state
shortcut (from 6.4.0) is not available in IE10 and below, use accordingly in your projects. - โ Remove test for it so that it doesn't fail, and is undocumented feature for now, until the day we can drop IE9 and IE10.
- NOTE: New
-
v6.4.0 Changes
February 28, 2017- ๐ Improved on class extending function used internally.
- โ
Made that extending function available externally at
Reflux.utils.inherits(NewClass, InheritsFrom)
so that it can be used for testing. - Made
MyStore.state
work as shortcut access toMyStore.singleton.state
(not available in IE9 and IE10, plan usage accordingly for your project).
-
v6.3.0 Changes
February 28, 2017- โ Added Reflux.PureComponent which extends from React.PureComponent instead of React.Component.
-
v6.2.0 Changes
February 13, 2017- โก๏ธ React.Component constructor arguments for
context
andupdater
added to Reflux.Component contructor.
- โก๏ธ React.Component constructor arguments for
-
v6.1.0 Changes
February 08, 2017- ๐ Documentation about Action listening/unsubscribing added.
- Reflux.serverMode added, only adds listeners when hooking store to component if not in server mode, eliminating memory leak.
- ๐ Bugfix with unmounting of reflux components that did not have any store attached to them.
-
v6.0.0 Changes
January 16, 2017- ๐ Switch to new docs.
- โก๏ธ Updated to
reflux-core
v1.0.0. - ๐ Allow complex definitions for child actions instead of just string for action name.
- ๐ฅ Breaking change: actions are sync by default unless child actions are involved.
-
v5.0.4 Changes
December 08, 2016- Workaround to babel proto issue with old browsers.
- ๐ Continued documentation refactoring (viewable in new-README.md).
- ๐ Minor doc fixes.
-
v5.0.3 Changes
November 25, 2016- ๐ฏ Implemented
Reflux.initStore
(basically clone ofReflux.initializeGlobalStore
but can be used more broadly). - ๐ Deprecate
Reflux.initializeGlobalStore
in favor of more broadly usableReflux.initStore
. - ๐ Major documentation refactor started, but not implemented yet (viewable in new-README.md).
- โก๏ธ Updated to run on
reflux-core
v0.4.2, which has more broad importing support.
- ๐ฏ Implemented
-
v5.0.2 Changes
November 22, 2016- โฌ๏ธ Reduced the need for
defineReact
by better detecting of React. - โก๏ธ Updated to run on
reflux-core
v0.4.1, which solves some memory leaks.
- โฌ๏ธ Reduced the need for
-
v5.0.1 Changes
November 17, 2016- โ Adding of full ES6 API, most notably
Reflux.Component
andReflux.Store
(and their sub-methods/properties). AlsodefineReact
,initializeGlobalStore
,GlobalState
,getGlobalState
,setGlobalState
.
- โ Adding of full ES6 API, most notably