MVCフレームワークのBackbone.js 1.1.0リリース。バージョンアップに伴う大きな機能追加はなし
JavaScriptのMVCフレームワークとして知られるBackbone.jsがマイナーバージョンアップ版の「Backbone.js 1.1.0」を公開しました。
開発者であるJeremy Ashkenas氏のツイートによると、「No big new features, really」(大きな新機能はまったくない)とのこと。しかし6カ月にわたって内部を効率化したとあります。
Backbone.js 1.1.0 is out, enjoy! http://t.co/4YnGFKbTpP No big new features really, but 6 months worth of internal streamlining.
— Jeremy Ashkenas (@jashkenas) October 11, 2013
Backbone.js 1.0と1.1.0のChange Logは次のようになっています。
Change Log
1.1.0 — Oct. 10, 2013 — Diff
- Made the return values of Collection's set, add, remove, and reset more useful. Instead of returning this, they now return the changed (added, removed or updated) model or list of models.
- Backbone Views no longer automatically attach options passed to the constructor as this.options, but you can do it yourself if you prefer.
- All "invalid" events now pass consistent arguments. First the model in question, then the error object, then options.
- You are no longer permitted to change the id of your model during parse. Use idAttribute instead.
- On the other hand, parse is now an excellent place to extract and vivify incoming nested JSON into associated submodels.
- Many tweaks, optimizations and bugfixes relating to Backbone 1.0, including URL overrides, mutation of options, bulk ordering, trailing slashes, edge-case listener leaks, nested model parsing...
Backbone.jsは小さくて軽いフレームワークとして知られています。バージョン1.1.0のソースコードを見ると、全部で1582行。そのコンパクトさは変わっていません。