ember-feature-flags
Advanced tools
Changelog
v6.1.0 (2025-02-11)
features.myFeature
and features.get('myFeature')
will no longer
work. Use isEnabled
and the {{feature-flag}}
template helper
instead.Changelog
v5.0.0 (2018-02-27)
enableFeature
, it is now just enableFeature('foo')
Changelog
v4.2.0 (2018-02-02)
flags
computed property. (@SergeAstapov)Changelog
v4.1.0
feature-flag
helper for use in templates (Thanks @SergeAstapov)Changelog
v4.0.0
features
service, it must now be explicitly injected where you want to use it. (Thanks @SergeAstapov)withFeature
to addon-test-support
, it should now be imported from ember-feature-flags/test/helpers/with-feature
(Thanks @SergeAstapov)Changelog
v3.0.1
features
service, it must now be explicitly injected where you want to use it. (Thanks @SergeAstapov)Changelog
v3.0.0
features
is now a Ember.Service. It is still injected by default, and at the configured name into routes, controllers and components. This may be a breaking change if you were injecting the service elsewhere. The injection is now service:<configured name>
.features.enabled
(which became features.isEnabled
), resetFeatureFlags
test helper (no longer needed), setting feature flags via APP.FEATURESfeatures.setup
will now notifyPropertyChange
for the flags set (Thanks @jcope2013)test-support
folder that will merge with host app's test directory