Skip to content

v8.0.0-ember-feature-flags

Latest

Choose a tag to compare

@github-actions github-actions released this 22 Feb 02:55
· 2 commits to main since this release
fa6b130

Release (2025-02-22)

ember-feature-flags 8.0.0 (major)

💥 Breaking Change

  • ember-feature-flags
    • #133 Remove normalization of feature flags. Previously feature flags were converted to camelcase internally. (@kategengler)
      * Flags were converted to camelcase for storage and for later reference since they could be referenced as properties on the Features service. Now, since the only APIs to reference flags are as strings or keys, what you pass in is what you should also pass in to check the values.

      Previously:

      this.features.setup({
        'foo-bar': true,
        'barBaz': false
      });
      
      Could be checked by using `this.features.isEnabled('fooBar')` or `this.features.isEnabled('bar-baz')`. Now both should be referenced as they are set: `this.features.isEnabled('foo-bar')` or `this.isEnabled('barBaz')`. 
    

Committers: 1