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-application-visitProvides an API for creating an application instance and specifying an initial URL that it should route to. This is useful for testing (you can have multiple instances of an app without having to run serially and call
reset()each time), as well as being critical to for FastBoot. -
ember-testing-checkbox-helpersAdd
checkandunchecktest helpers.check:Checks a checkbox. Ensures the presence of the
checkedattributeExample:
check('#remember-me').then(function() { // assert something });
uncheck:Unchecks a checkbox. Ensures the absence of the
checkedattributeExample:
uncheck('#remember-me').then(function() { // assert something });
-
ember-htmlbars-component-generationEnables HTMLBars compiler to interpret
<x-foo></x-foo>as a component invocation (instead of a standard HTML5 style element). -
ember-htmlbars-each-with-indexAdds an optional second parameter to
{{each}}block parameters that is the index of the item.For example,
Added in #10160
-
ember-debug-handlersImplemencts RFC emberjs/rfcs#65, adding support for custom deprecation and warning handlers.
-
ember-registry-container-reformImplements RFC emberjs/rfcs#46, fully encapsulating and privatizing the
ContainerandRegistryclasses by exposing a select subset of public methods onApplicationandApplicationInstance.Applicationinitializers now receive a single argument toinitialize:application.Likewise,
ApplicationInstanceinitializers still receive a single argument to initialize:applicationInstance. -
ember-routing-routable-componentsImplements RFC emberjs/rfcs#38, adding support for routable components.
-
ember-metal-ember-assignAdd
Ember.assignthat is polyfill forObject.assign.