Releases: magalhas/backbone-react-component
Releases · magalhas/backbone-react-component
v0.10.0
v0.9.0
v0.8.1
v0.8.0
Breaking changes
- React v0.13
- Internally
@setState
will be always used instead of@setProps
, so you're model/collections data will be available under@state
(#36, #54) @getModel
and@getCollection
no longer crawls the dirty_owner
reference (which will be removed on incoming React release), instead they are able to grab the model and collection instances through@context
(new React feature)- When passing a single model, the JSON representation will be available under
@state.model
instead of directly into@state
- New
@overrideModel
and@overrideCollection
methods to programatically override a model/collection in a component. This is useful for use cases such asreact-router
(#60)
Minor
- Listen to
Backbone.Model#invalid
event (#53) @$
now fallbacks to DOM'squerySelector
ifjQuery
is not present
Bug fixes
- Allow to change collection/model references (#29) (by filtering
@componentWillReceiveProps
)