UNPKG

reflux-core

Version:

A simple library for uni-directional dataflow application architecture inspired by ReactJS Flux

46 lines (24 loc) 1.91 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](https://github.com/reflux/refluxjs/milestones). ## 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! * Removed promise extensions. These are now moved to [reflux-promise](https://github.com/reflux/reflux-promise) library. * Removed evil `eval`! \o/ This fixes CSP problems, see [reflux/refluxjs#409](https://github.com/reflux/refluxjs/issues/409) ## v0.2.1 * Improved `Reflux.createActions`. See [reflux/refluxjs#391](https://github.com/reflux/refluxjs/pull/391). ## v0.2.0 * Extend `Reflux.createActions` to accept a mixed array of strings and definition objects. See [reflux/refluxjs#391](https://github.com/reflux/refluxjs/pull/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](https://github.com/reflux/reflux-core/issues/2), [reflux/refluxjs#380](https://github.com/reflux/refluxjs/issues/380). * Extracted from refluxjs v0.2.11. See [reflux/refluxjs#380](https://github.com/reflux/refluxjs/issues/380), [reflux/refluxjs#107](https://github.com/reflux/refluxjs/issues/107).