Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.79 KB

CHANGELOG.rst

File metadata and controls

32 lines (23 loc) · 1.79 KB

RESThub Backbone stack changelog

This changelog references the major changes (features, important bugs and security fixes) of resthub-spring-stack project. Some changes break backwards compatibility, check out the UPGRADE section before you upgrade your application.

To get the full diff between two versions, go to https://github.com/resthub/resthub-backbone-stack/compare/resthub-2.0.0...resthub-2.1.0

2.1.0 version (XX-YY-2013)

Upgrade from 2.0.0

Following libraries updated and may lead to some minor incompatibility, most significant ones are detailed bellow :
  • View.dispose() has been replaced by View.stopListening()
  • You should use listenTo() and stopListening() instead of on() and off() since they allow automatic event cleanup when the view is destroyed
  • Model validation is now only enforced by default in Model#save and no longer enforced by default upon construction or in Model#set, unless the {validate:true} option is passed.

New features and fixes

  • Cache buster when using IE in order to avoid lot of bugs caused by IE aggressive caching strategy
  • Fix IE7 and IE8 compatibility
  • Get model validation constraints from server (see resthub/resthub-spring-stack#165) and translate these cosntraints to effective client Backbone Validation constraints.