Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 1.62 KB

FEATURES.md

File metadata and controls

44 lines (29 loc) · 1.62 KB

About Features

Please read the Feature Flag Guide for a detailed explanation.

Feature Flags

  • ember-libraries-isregistered

    Add isRegistered to Ember.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 the pauseTest helper.

  • glimmer-custom-component-manager

    Adds an ability to for developers to integrate their own custom component managers into Ember Applications per RFC.

  • ember-module-unification

    Introduces support for Module Unification (RFC) to Ember. This includes:

    • Passing the source of a lookup/factoryFor call as the second argument to an Ember resolver's resolve method (as a positional arg we will call referrer).
    • 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.