Ember 1.9.0-beta.3
- Ensure initializers have a
name
property (provides a helpful assertion if missing). - [BUILD TOOLING] Enable easier cross-browser testing by publishing builds and tests to S3.
- Enable
Ember.run.join
to return a value even if within an existing run loop. - Update
Ember.EventDispatcher
to useEmber.run.join
. This is required so that synchronous
events (like focus) do not spawn a nested run loop. - Deprecate context switching form of {{each}}.
- Deprecate context switching form of {{with}}.
- Add improved error message when a component lookup fails.
- Ensure that component actions that are subscribed to, trigger an assertion when unhandled. Consider the following example:
Clearly, component-a
has subscribed to some-other-component
's action
. Previously, if component-a
did not handle the action it would silently continue. Now, an assertion would be triggered.
- [PERF] Speedup Mixin creation.