Releases: emberjs/ember.js
Releases · emberjs/ember.js
v1.11.0-beta.1
Changelog
- #10160 [FEATURE] Add index as an optional parameter to #each blocks @tim-evans
- #10186 Port attributeBindings to AttrNode views @mixonic
- #10184 Initial support basic Node.js rendering.
- #10179 [FEATURE] Execute initializers in their respective context @gf3
- #10213 Ensure overriding attribute bindings is possible @miguelcobain
- #10320 Start breaking up Ember.View code into mixins based on purpose @ebryn
- #10221 Embed enabled features in debug builds. @rwjblue
- #10215 [Bugfix beta] Prevent Ember from erroring when the errorThrown property is
undefined
@bmac - #10326 Let
View#appendChild
instantiateSimpleBoundView
s rather than doing it manually ourselves @ebryn - #10280 Moves route-recognizer to a NPM dep, bumps emberjs-build @danmcclain
- #10256 Simplify and modularize app/router initialization @emberjs
- #10254 Make computed.or and computed.and return truthy values @soulcutter
- #10271 Clean up boot process @emberjs
- #10268 Bumped sha to get tildeio/route-recognizer#40, which fixes #10190 @jayphelps
- #10316 Make LinkView FastBoot™-compatible @emberjs
- #10321
View#element
isn’t observable, we don’t need to useset
@ebryn - #10323 Remove
meta.descs
@ebryn - #10324 Don’t run this mandatory setter test in prod @ebryn
- #10329 Update transpiler to Esperanto. @rwjblue
- #10352 Add internal
_willDestroyElement
hook to prevent using instance-based events @ebryn - #10336 Remove unnecessary check for
NativeArray
@tricknotes - #10334 Update to HTMLBars v0.10.0. @rwjblue
- #10338 Ensure computed.oneWay is exported properly. @linstula
- #10345 Update to QUnit 1.17.1. @rwjblue
- #10350 Make meta.cache & meta.cacheMeta lazy @ebryn
- #10353 Avoid creating context bindings for collection views @mmun
Ember v1.10.0
Changelog
- [BUGFIX] Ensure that property case is normalized.
- [BUGFIX] Prevent an error from being thrown if the errorThrown property is a string when catching unhandled promise rejections.
- [BUGFIX]
contenteditable
elements should fire focus events inember-testing
click helper. - [BUGFIX] Remove HTMLBars from builds
ember.debug.js
andember.prod.js
builds. Please see http://emberjs.com/blog/2015/02/05/compiling-templates-in-1-10-0.html for more details. - [BUGFIX] Ensure that calling the
wait
testing helpe without routing works properly. - [BUGFIX] Ensure that a plus sign in query params are treated as spaces.
- [BUGFIX] Fix broken
Ember.Test.unregisterWaiter
semantics. - [BUGFIX] Allow unbound helpers to add attributes.
- [BUGFIX] Ensure compat helpers calling
options.fn
work. - [BUGFIX] Fix memory leak in view streams.
- [BUGFIX] Don't render default layout for
Ember.TextField
. - Update HTMLBars version to v0.8.5:
- Allow numbers to be parsed as HTML in IE.
- Add namespace detection.
- Include line number in error thrown for unclosed HTML element.
removeAttribute
fix for IE <11 and SVG.- Disable
cloneNodes
in IE8. - Improve HTML validation and error messages thrown.
- Fix a number of template compliation issues in IE8.
- Use the correct namespace in
parseHTML
(fixes various issues that occur
when changing to and from alternate namespaces). - Ensure values are converted to
String
's when setting attributes (fixes issues in IE10 & IE11). - Change
setProperty
andmorph
to remove anundefined
attr value.
- Remove dots from default resolver descriptions.
- Add helpful assertion if a block helper is not found.
- Make Ember.HTMLBars version of registerHelper private.
- [BUGFIX] Add
options.types
andoptions.hashTypes
for Handlebars compatible helpers. - [BUGFIX] Fix usage of
emptyView
with{{#each}}
helper. - Assert if an attribute set statically and via bind-attr. For example:
<div class="foo" {{bind-attr class="bar"}}></div>
will now trigger an assertion (instead of
silently failing). - [BUGFIX] Fix deprecated bindAttr helper.
- [BUGFIX] Do not allow both keyword and block params.
- Cleanup HTMLBars public API
- Remove
Ember.HTMLBars.helper
. - Remove internal
registerBoundHelper
function (use
registerHelper('blah', makeViewHelper(SomeView))
orregisterHelper('blah', makeBoundHelper(func))
).
- Remove
- [BUGFIX] Fix Handlebars compat mode
registerHelper
interop withmakeViewHelper
. - [BUGFIX] Ensure that
mergedProperties
are properly merged when all properties are not present. - Add options argument to pass url to
Ember.deprecate
. - Deprecate
{{bind}}
helper. - Pass array to
Ember.computed.filter
callback - [BUGFIX] Prevent mandatory-setter when setter is already present.
- Remove Handlebars from dependencies.
- Fix error when parsing templates with invalid end tags.
- [BUGFIX] Allow makeBoundHelper to be a sub-expression.
- [BUGFIX] Allow compat makeBoundHelpers to be sub-expressions.
- [BUGFIX] Export Ember.Handlebars compat shim for
Ember.Handlebars.SafeString
andEmber.Handlebars.Utils.escapeExpression
. - [BUGFIX] Allow
Ember.inject
injected properties to be overridden (makes testing significantly easier). - [BUGFIX] Don’t assert uncaught RSVP rejections. We are already logging the error, but asserting breaks everything else on the run loop queue.
- [BUGFIX] Allow tagName to be a CP (with deprecation).
- [BUGFIX] Allow view instances in {{view}}.
- [BUGFIX] Ensure bound attrs flush immediately.
- [PERFORMANCE] Initialize views in preRender state.
- [PERFORMANCE]
View#element
should not be observable. - Add ember-template-compiler package.
- Rename
Ember.HTMLBars.registerASTPlugin
toEmber.HTMLBars.registerPlugin
. - Export
ember-template-compiler.js
. - Escape
href
,src
, andbackground
attributes fora
,link
,img
, andiframe
elements. - Move debugging file output from
ember.js
toember.debug.js
. - Remove
templateData
property from views. - Restructure
Ember.libraries
to be more idiomatic. - Prevent creating an extra view for each select option.
- Deprecate the block form of the bind helper.
- Cleanup
Ember.CoreObject
init argument passing. - Allow all rejection types to be handled by default RSVP error handler.
- Deprecate setting ContainerView#childViews.
- [FEATURE] ember-htmlbars - Enable the HTMLBars rendering engine.
- [FEATURE] ember-htmlbars-block-params - Enable block params feature for HTMLBars.
Ember 1.10.0-beta.4
Changelog:
- [BUGFIX] Fix usage of
emptyView
with{{#each}}
helper. - Assert if an attribute set statically and via bind-attr. For example:
<div class="foo" {{bind-attr class="bar"}}></div>
will now trigger an assertion (instead of
silently failing). - [BUGFIX] Fix deprecated bindAttr helper.
- [BUGFIX] Do not allow both keyword and block params.
- Update to HTMLBars v0.8.1
- Improve HTML validation and error messages thrown.
- Fix a number of template compliation issues in IE8.
- Use the correct namespace in
parseHTML
(fixes various issues that occur
when changing to and from alternate namespaces). - Ensure values are converted to
String
's when setting attributes (fixes issues in IE10 & IE11). - Change
setProperty
andmorph
to remove anundefined
attr value.
- Cleanup HTMLBars public API
- Remove
Ember.HTMLBars.helper
. - Remove internal
registerBoundHelper
function (use
registerHelper('blah', makeViewHelper(SomeView))
orregisterHelper('blah', makeBoundHelper(func))
).
- Remove
- [BUGFIX] Fix Handlebars compat mode
registerHelper
interop withmakeViewHelper
. - [BUGFIX] Ensure that
mergedProperties
are properly merged when all properties are not present. - Add options argument to pass url to
Ember.deprecate
.
Ember v1.10.0-beta.3
Changelog
- Deprecate
{{bind}}
helper. - Pass array to
Ember.computed.filter
callback - [BUGFIX] Prevent mandatory-setter when setter is already present.
- Remove Handlebars from dependencies.
- Update HTMLBars to 0.7.1.
- Fix error when parsing templates with invalid end tags.
Ember v1.10.0-beta.2
Changelog
- [BUGFIX] Allow makeBoundHelper to be a sub-expression.
- [BUGFIX] Allow compat makeBoundHelpers to be sub-expressions.
- [BUGFIX] Export Ember.Handlebars compat shim for
Ember.Handlebars.SafeString
andEmber.Handlebars.Utils.escapeExpression
. - [BUGFIX] Allow
Ember.inject
injected properties to be overridden (makes testing significantly easier). - [BUGFIX] Don’t assert uncaught RSVP rejections. We are already logging the error, but asserting breaks everything else on the run loop queue.
- [BUGFIX] Allow tagName to be a CP (with deprecation).
- [BUGFIX] Allow view instances in {{view}}.
- [BUGFIX] Ensure bound attrs flush immediately.
- [PERFORMANCE] Initialize views in preRender state.
- [PERFORMANCE]
View#element
should not be observable. - Add ember-template-compiler package.
- Rename
Ember.HTMLBars.registerASTPlugin
toEmber.HTMLBars.registerPlugin
. - Export
ember-template-compiler.js
. - Escape
href
,src
, andbackground
attributes fora
,link
,img
, andiframe
elements.
Ember v1.9.1
Changelog
- Allow
{{view}}
helper to proper handle view instances. - Escape
href
,src
, andbackground
attributes fora
,link
,img
, andiframe
elements.
Ember v1.10.0-beta.1
Changelog
- Move debugging file output from
ember.js
toember.debug.js
. - Remove
templateData
property from views. - Restructure
Ember.libraries
to be more idiomatic. - Prevent creating an extra view for each select option.
- Deprecate the block form of the bind helper.
- Cleanup
Ember.CoreObject
init argument passing. - Allow all rejection types to be handled by default RSVP error handler.
- Deprecate setting ContainerView#childViews.
- [FEATURE] ember-htmlbars - Enable the HTMLBars rendering engine.
- [FEATURE] ember-htmlbars-block-params - Enable block params feature for HTMLBars.
Ember 1.9.0
Release Blog Post
Changelog
- Add deprecation for quoteless outlet names (
{{outlet main}}
should be{{outlet 'main'}}
). - [BUGFIX] Update the
Ember.Map#forEach
callback to include the map being iterated over. - [BUGFIX] Ensure that tagless container views are rendered properly.
- [PERF]
Ember.View#_outlets
is no longer observable. - [PERF] Avoid extending a view for every
{{each}}
. - 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 for 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.
- [BREAKING] Require Handlebars 2.0. See blog post for details.
- Allow all rejection types in promises to be handled.
- Mandatory setter checks for configurable, and does not clobber non-configurable properties.
- Remove long deprecated
Ember.empty
andEmber.none
. - Refactor
Ember.platform
. Ember.HashLocation
no longer assumes any hash is a route, uses forward slash prefix convention#/foo
.- Log unhandled promise rejections in testing.
- Deprecate
Ember.Handlebars.get
. - Warn if FEATURES flagging is used in non-canary, debug builds.
- Streamify template bindings.
- Make Ember.Namespace#toString ember-cli aware.
- Prevent extra
method.toString
checks when setting_super
. - [PERF] Speedup watchKey by preventing for in related deopt.
- [FEATURE] ember-routing-fire-activate-deactivate-events.
- [FEATURE] ember-testing-pause-test.
Ember 1.9.0-beta.4
Changelog
- Add deprecation for quoteless outlet names (
{{outlet main}}
should be{{outlet 'main'}}
). - [BUGFIX] Update the
Ember.Map#forEach
callback to include the map being iterated over. - [BUGFIX] Ensure that tagless container views are rendered properly.
- [PERF]
Ember.View#_outlets
is no longer observable. - [PERF] Avoid extending a view for every
{{each}}
.
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.