Skip to content

Commit

Permalink
Update CHANGELOG for 1.8.0-beta.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
rwjblue committed Sep 27, 2014
1 parent 5454b80 commit 4f90eca
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Ember Changelog

### Ember 1.8.0-beta.3 (September, 27, 2014)

* [BUGFIX] Use contextualElements to properly handle omitted optional start tags.
* [BUGFIX] Ensure that `Route.prototype.activate` is not retriggered when the model for the current route changes.
* [PERF] Fix optimization bailouts for `{{view}}` helper.
* [BUGFIX] Add `attributeBindings` for `lang` and `dir` (for bidirectional language support) in `Ember.TextField` and `Ember.TextAra`.
* [BUGFIX] Fix finishChains for all chains that reference an obj not just the ones rooted at that object.
* [BUGFIX] Refactor ES3 `Ember.keys` implementation.
* Rewrite Ember.Map to be faster and closer to ES6 implementation:
* [PERF + ES6] No longer clone array before enumeration (dramatically reduce allocations)
* [PERF] Don’t Rebind the callback of forEach if not needed
* [PERF + ES6] No longer allow Map#length to be bindable
* [PERF] Don’t double guid keys, as they are passed from map to ordered set (add/remove)
* [ES6] Deprecate Map#remove in-favor of the es6 Map#delete
* [ES6] Error if callback is not a function
* [ES6] Map#set should return the map. This enables chaining map.`map.set(‘foo’,1).set(‘bar’,3);` etc.
* [ES6] Remove length in-favor of size.
* [ES6] Throw if constructor is invoked without new
* [ES6] Make inheritance work correctly


### Ember 1.8.0-beta.2 (September, 20, 2014)

* [BUGFIX] Allow for bound property {{input}} type.
Expand Down

0 comments on commit 4f90eca

Please sign in to comment.