Releases: adopted-ember-addons/ember-moment
Releases · adopted-ember-addons/ember-moment
v7.0.0-beta.1
7.0.0-beta.1
Service and time zone attr support
- Adds support a
timeZone
argument on all helpers - Adds a service which contains two methods:
changeLocale
andchangeTimeZone
- Invoking either of these methods will cause all helpers to rerender if a locale/timezone was not specified
Removes legacy helper support
4.0.0 Update package.json
Fixing ember version detection
3.6.4 fixing previous logic in case ember not installed
Version bump shim to warn on locale mismatches
Merge pull request #92 from stefanpenner/shim-upgrade bumping ember-cli-moment-shim to warn on mismatch locales
Bugfix global output format
3.6.1 3.6.1 to fix global output typo
2.0 beta + canary fixed, global allowEmpty configuration option, slimmer dist
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
3.5.1 version bump :cake: 3.5.1
Beta and canary support, updates deps
3.5.0 version bump
Adds allow-empty and locale arguments. Adds global output format option
- Adds
allow-empty
argument to helpers to prevent Invalid Date to be rendered when passed an empty value (null, undefined, or "")
- Adds
locale
argument to helpers to locally scope locale format to specific helpers
- Adds a global output format string option to config/environment
module.exports = function() {
return {
moment: {
outputFormat: 'L' // overrides the `LLLL` that moment defaults to
}
}
};