Please read the Feature Flag Guide for a detailed explanation.
-
ember-libraries-isregisteredAdd
isRegisteredtoEmber.libraries. This convenience method checks whether a library is registered with Ember or not. -
ember-improved-instrumentationAdds additional instrumentation to Ember:
interaction.<event-name>for events handled by a component.interaction.ember-actionfor closure actions.interaction.link-tofor link-to execution.
-
ember-testing-resume-testIntroduces the
resumeTesttesting helper to complement thepauseTesthelper. -
glimmer-custom-component-managerAdds an ability to for developers to integrate their own custom component managers into Ember Applications per RFC.
-
ember-glimmer-named-argumentsAdd
{{@foo}}syntax to access named arguments in component templates per RFC. -
ember-metal-es5-gettersDefine ES5 getters for computed properties, eliminating the need to access them using
Ember.get(). See RFC. -
ember-module-unificationIntroduces support for Module Unification (RFC) to Ember. This includes:
- Passing the
sourceof alookup/factoryForcall as an argument toexpandLocalLookupon the resolver. - Making
lookupComponentPairfriendly to local/private resolutions. The new code ensures a local resolution is not paired with a global resolution.
This feature is paired with the
EMBER_RESOLVER_MODULE_UNIFICATIONflag on the ember-resolver package. - Passing the
-
ember-template-block-let-helperIntroduce the block form of the
lethelper per RFC.