Skip to content

Latest commit

 

History

History
67 lines (42 loc) · 1.99 KB

CHANGELOG.md

File metadata and controls

67 lines (42 loc) · 1.99 KB

Changelog

v4.0.2 (2021-06-11)

🐛 Bug Fix

  • #372 Remove non-existing defaultRules re-export (@mydea)

Committers: 2

4.0.0 (Dec 3, 2020)

  • switch to GH actions

  • fix and expand TypeScript types

  • Embroider compatibility test scenarios via ember-try

  • upgrade all dependencies (As of dec 3, 2020)

  • update package.json#engines to reflect actually supported node versions (as of Dec 3, 2020)

  • Drop string extension support #154

    The deprecated global access has been removed. If you used to access Emeber.inflector, Ember.String.singularize or Ember.String.pluralize via the window.Ember global, you must now import the module like this instead:

    import { singularize } from 'ember-inflector'
    singularize('cats');
    

    See PR for more details.

  • Document custom rules #149

3.0.0 (May 1, 2018)

2.3.0 (April 20, 2018)

  • Fix deprecation regarding Ember.EXTEND_PROTOTYPES.
  • Add ability to specify count to Inflector.pluralize and {{pluralize.

2.2.0 (March 27, 2018)

  • Fix documentation snippets in README.
  • Fix issue with local CI runs.

2.1.0 (November 11, 2017)

  • Deprecate Ember.Inflector, Ember.String.singularize, Ember.String.pluralize.

2.0.0 (April 22, 2017)

  • Update to use Babel 6
  • Drop support for Node 0.10 and Node 0.12.

1.10.1 (January 9, 2017)

  • [BUGFIX] Return the same output format for defined.amd environments.

1.10.0 (January 3, 2017)

  • Expose the same API (singularize, pluralize) for all UMD consumers

1.9.6 (August 3, 2016)

  • Fix "bonus" inflection. - #108