ember-moment
Advanced tools
Changelog
10.0.0
moment
library itself. Apps should depend directly on either moment
or moment-timezone
and import it via ember-auto-import
. Apps should make sure to remove any dependencies on ember-cli-moment-shim
. See "Using Moment in Ember Apps & Addons" in the README.ember-auto-import
>= 2.includeTimezone
, includeLocales
, and localeOutputPath
options in config/environment.js
are removed, since this addon is no longer responsible for providing moment
. See "Controlling Locale and Timezone Data" in the README.Changelog
9.0.1
defaultFormat
configured #363Changelog
9.0.0
[BREAKING] drops support for Node 8 and 10
[BREAKING] drops support for ember-source < 3.16
If you need to use ember-moment with ember-source older than 3.16,
you can still use ember-moment@v8.x -- there is a branch on GitHub,
ember-classic
that is still open for bugfixes and other updates, if
folks need them.
Currently supported ember-source versions (tested in CI) are:
Additionally, CI is also testing against ember-release/beta/canary as well as embroider-safe and embroider-optimized builds.
[BREAKING] removed computed property macros
Octane prefers vanillaJS:tm: getters over computed macros.
For example, where you would previously have
@duration(...) myDuration
you would now want:
get myDuration() {
return moment.duration(...);
}
(internal): Migrate to GitHub Actions