Skip to content

Latest commit

 

History

History
45 lines (24 loc) · 1.82 KB

CHANGELOG.md

File metadata and controls

45 lines (24 loc) · 1.82 KB

Changelog

v1.0.0

  • Breaking change: actions are now sync by default unless they involve child actions.
  • Child actions can now have complex definitions instead of only string action names.

Check for latest changes on the milestones page.

v0.4.3

  • Ignore the babelrc file when publishing to npm.

v0.4.2

  • Allows both var Reflux = require('reflux-core') and import Reflux from 'reflux-core' style importing even though they return different results.

v0.4.1

  • Fixes exporting differences that grew between v0.3.0 and v0.4.0 and prevent refluxjs from actually using reflux-core.

v0.4.0

  • In order for Keep.js to actually store actions/stores you must call Reflux.__keep.useKeep() - [deprecated in favor of v0.4.1]

v0.3.0

Breaking changes!

v0.2.1

v0.2.0

  • Extend Reflux.createActions to accept a mixed array of strings and definition objects. See reflux/refluxjs#391.

  • Version number for reflux-core is exposed in Reflux.version object. May also contain version numbers for extensions and add-ons.

  • Implemented hook for add-ons and extensions, Reflux.use(). See #2, reflux/refluxjs#380.

  • Extracted from refluxjs v0.2.11. See reflux/refluxjs#380, reflux/refluxjs#107.