All Versions
39
Latest Version
Avg Release Cycle
11 days
Latest Release
2614 days ago

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.
  • 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 to MyStore.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 and updater added to Reflux.Component contructor.
  • 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 of Reflux.initializeGlobalStore but can be used more broadly).
    • ๐Ÿ—„ Deprecate Reflux.initializeGlobalStore in favor of more broadly usable Reflux.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.
  • 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.
  • v5.0.1 Changes

    November 17, 2016
    • โž• Adding of full ES6 API, most notably Reflux.Component and Reflux.Store (and their sub-methods/properties). Also defineReact, initializeGlobalStore, GlobalState, getGlobalState, setGlobalState.