Releases: klee-contrib/focus-core
Focus Core v0.12.4
Install
npm i [email protected]
To resume this release
Bug fixes
- Minor fixes which are not detailled here
- Fixes for webpack use locally
[i18n] translation is now provided by focus-core
No longer need to use i18n as a dependency.
i18n.t' is now exposed by
focus-core/translation`.
[Backbone] routing is now provided by focus-core
No longer need to use Backbone as a dependency.
Backbone.history
is now exposed by focus-core/history
.
[searchAction] Focus not replaced with Focus-core
In src/search/search-action/index.js, an old namespaceFocus.dispatcher.handleServeraction was used instead of FocusCore.dispatcher... which had forced you to declare a legacy in your project.
This is now corrected.
Focus Core v0.12.3
Install
npm i [email protected]
Bug fixes
- [Quick-Serch] correct event emit in quick search
- [Popin] Fix confirm popin call context
[Quick-Serch] correct event emit in quick search
Issue
Quick search was launched 3 times is some cases (when more than one criteria is changed).
Patch
This behaviour is now corrected. Quick search is now always launched once, even all of criterias are launched.
Focus-components
Associated to : klee-contrib/focus-components#891
Popin
Fix confirm popin call context.
Focus Core v0.12.2
- Use webpack-focus
- Upgrade to babel 6
- Search triggered three times
- optimize the store's events emission
See https://github.com/KleeGroup/focus-core/issues?q=milestone%3A0.12.2+is%3Aclosed
Focus Core 0.12.1
Merge pull request #266 from KleeGroup/version-0.12.1 [version] 0.12.1
Focus Core v0.12.0
Store
The status
node of the store now
- Is updated when the data is updated
- Can be updated without a data update
- It adds specific handler to deal with status changes
The action builder no longer update the store before the service load, if shouldDumpStoreOnActionCall
is not defined.
Sevral unit tests have been added to the
CoreStore
Focus v0.11.0
Please read the associated PR of FocusComponents in order to have more information regarding React 0.14
upgrade.
Improvements
- The error parser is now an almost pure error parser. It is tested on the macroscopic level. The action builder is now responsible for dispatching errors see #214
- The
network.fetch
is no longer CORS but you can change it in the options see #213
React 0.14
This version uses a new version of React
which is 0.14
This is a Release Candidate version, v0.14.0-rc1
, please read http://facebook.github.io/react/blog/2015/09/10/react-v0.14-rc1.html, it is already used in production on Facebook
website.
- React is now splitted into two libs:
React
andReactDOM
- As the current warning says
getDOMNode
is deprecated, and you will have to renameReact.findDOMNode
inReactDOM.findDOMNode
. - Read what
PropTypes
are for your components https://facebook.github.io/react/docs/reusable-components.html
Focus v0.10.1
Focus hasn't hange a lot in this version. Please read Focus-components v0.6.1 release note.
The main new feature is an improvement of action-builder:
See #190 #193 #195
You can now:
- perform multi node update, add a
postService
function which is chained to the service promise - The
store
isn't dumped when the action is a save action, you can use theshouldDumpStoreOnActionCall
config property to change this behaviour. This will stop the blink effect on save. Load actions should haveshouldDumpStoreOnActionCall
.