Please read the Feature Flag Guide for a detailed explanation.
-
ember-libraries-isregistered
Add
isRegistered
toEmber.libraries
. This convenience method checks whether a library is registered with Ember or not. -
ember-improved-instrumentation
Adds additional instrumentation to Ember:
interaction.<event-name>
for events handled by a component.interaction.ember-action
for closure actions.interaction.link-to
for link-to execution.
-
ember-testing-resume-test
Introduces the
resumeTest
testing helper to complement thepauseTest
helper. -
ember-module-unification
Introduces support for Module Unification (RFC) to Ember. This includes:
- Passing the
source
of alookup
/factoryFor
call as an argument toexpandLocalLookup
on the resolver. - Making
lookupComponentPair
friendly 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_UNIFICATION
flag on the ember-resolver package. - Passing the
-
ember-glimmer-angle-bracket-nested-lookup
Allow the invoking nested components to be invoked with the
<Foo::Bar>
syntax.See RFC #457.
-
ember-glimmer-angle-bracket-built-ins
Allow the built-in
LinkTo
,Input
, andTextarea
components to be invoked with the angle bracket invocation sytnax.See RFC #459.
-
ember-glimmer-forward-modifiers-with-splattributes
Allows element modifiers to be applied to components that use angle-bracket syntax, and applies those modifiers to the element or elements receiving the splattributes.
See RFC #435.