Skip to content

Releases: adopted-ember-addons/ember-moment

v7.0.0-beta.1

21 Nov 00:33
Compare
Choose a tag to compare
v7.0.0-beta.1 Pre-release
Pre-release
7.0.0-beta.1

Service and time zone attr support

07 Oct 02:41
Compare
Choose a tag to compare
  • Adds support a timeZone argument on all helpers
  • Adds a service which contains two methods: changeLocale and changeTimeZone
    • Invoking either of these methods will cause all helpers to rerender if a locale/timezone was not specified

Removes legacy helper support

19 Sep 09:43
Compare
Choose a tag to compare
4.0.0

Update package.json

Fixing ember version detection

11 Sep 07:14
Compare
Choose a tag to compare
3.6.4

fixing previous logic in case ember not installed

Version bump shim to warn on locale mismatches

23 Aug 21:42
Compare
Choose a tag to compare
Merge pull request #92 from stefanpenner/shim-upgrade

bumping ember-cli-moment-shim to warn on mismatch locales

Bugfix global output format

19 Aug 08:02
Compare
Choose a tag to compare
3.6.1

3.6.1 to fix global output typo

2.0 beta + canary fixed, global allowEmpty configuration option, slimmer dist

18 Aug 22:45
Compare
Choose a tag to compare

3.6.0

  • 2.0-beta + 2.0-canary supported again
  • test support for deprecated helpers
  • global allowEmpty configuration option
  • removes unused helper modules from builds (slimmer dists)

Cancel timer, work around test helper issue

13 Aug 03:14
Compare
Choose a tag to compare
3.5.1

version bump :cake: 3.5.1

Beta and canary support, updates deps

08 Aug 22:46
Compare
Choose a tag to compare

Adds allow-empty and locale arguments. Adds global output format option

08 Aug 21:07
Compare
Choose a tag to compare
  • Adds allow-empty argument to helpers to prevent Invalid Date to be rendered when passed an empty value (null, undefined, or "")
{{moment-format date allow-empty=true}}
  • Adds locale argument to helpers to locally scope locale format to specific helpers
{{moment-format date locale='es'}}
  • Adds a global output format string option to config/environment
module.exports = function() {
  return {
    moment: {
      outputFormat: 'L' // overrides the `LLLL` that moment defaults to
    }
  }
};