Skip to content

Conversation

@renovate
Copy link

@renovate renovate bot commented Sep 2, 2023

This PR contains the following updates:

Package Change Age Confidence
ember-moment 7.8.110.0.2 age confidence

Release Notes

adopted-ember-addons/ember-moment (ember-moment)

v10.0.2

ember-moment 10.0.2 (patch)

🐛 Bug Fix
Committers: 1

v10.0.1

ember-moment 10.0.1 (patch)

📝 Documentation
🏠 Internal
Committers: 6
10.0.0
  • [BREAKING] This addon no longer provides the 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.
  • [BREAKING] This is a v2 addon so your app must have ember-auto-import >= 2.
  • [BREAKING] 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.
9.0.1
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 [email protected] -- 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:

    • 3.16
    • 3.20
    • 3.24

    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

    @&#8203;duration(...) myDuration

    you would now want:

    get myDuration() {
      return moment.duration(...);
    }
  • (internal): Migrate to GitHub Actions

8.0.0
  • [BREAKING] drops Node 6 support
  • Updates ember-macro-helpers to 4.x
7.8.1
7.7.0
7.6.0
  • @​kellyselden Fix invalid reexport for helpers/unix
  • Upgrade ember-cli and dependencies
7.3.0
  • Setting locale now sets locale on global moment object
  • Added setLocale and setTimeZone. Better naming. Will continue to support changeLocale and changeTimeZone but have updated README to prefer new method names
  • Added localeChanged and timeZoneChanged events
  • @​mfeltz scoped moment-subtract and moment-add to use the moment service locale property
7.2.0
7.1.1
  • Removed ember-macro-helpers
7.1.0
  • @​kellyselden ported computed macro factory to use computed macro utility methods from ember-macro-helpers
7.0.3
  • Upgrade ember-cli-moment-shim to 3.0.0
  • now helper now recomputes using setTimeout instead of run.later #​205
7.0.2
  • Revert upgrade ember-cli-moment-shim to 2.2.1 (moment.now issue)
7.0.1
  • Upgrade ember-cli-moment-shim to 2.2.1
7.0.0
  • Upgrade ember-cli-moment-shim to 1.3.0
  • now helper returns moment.now() instead of new Date()
  • Added moment helper
  • Added moment-calendar helper
  • @​GarPit Added moment-to-date helper
  • @​stavarotti added unix helper
  • @​yads added moment-subtract moment-add helpers
  • Removed ember-getowner-polyfill as a direct dep
  • Add moment query helpers (is-between, is-same-or-after, is-same-or-before, is-same, is-after, is-before)
  • BREAKING: no longer defaults moment-format to LLLL and instead uses the moment default format (ISO 8601)
  • Adopted yarn
6.0.0
  • [BREAKING] computed property macros can now support composition (stefanpenner#139)
5.1.0
5.0.2
  • Prevent moment 2.11.0 from being installed due to it being unsupported
5.0.1
  • Reduce size and complexity of computeds
5.0.0
  • Rewrote computeds to support literals as arguments
  • Do not warn on missing date when allowEmpty
4.2.1
  • Remove ember-new-computed
  • Remove use of an Ember global
  • Remove need for instance initializer
4.2.0
  • Upgrade ember-cli-moment-shim
  • Add a defaultFormat property to the service, which moment-format helpers observer to recompute
  • BUGFIX: outputFormat typo on config/environment.js lookup led to it never being properly looked up
4.1.0
  • 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
4.0.1
  • Removes two unused npm deps
4.0.0
  • Removes support for legacy helpers
  • Drops support for Ember < 1.13.0 (continue to use 3.x for < 1.13.0 support)
3.6.3-3.6.4
  • Ember version detection incorrectly reported
3.6.2
  • Warn on locale mismatch, silently ignore en locale since included by default in moment
3.6.1
  • Bugfix global output format
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)
3.5.1
  • destroy interval timers on Helper destroy
  • work around issue with Ember.run.next blocking test helpers
3.5.0
  • Support for 2.0.0-beta and canary
  • Upgrades dependencies
3.4.0
  • 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
    }
  }
};
3.3.0
  • Adds toNow computed property macro
  • Adds moment-to-now htmlbar helper
  • Fixes documentation error around computed property macro argument order
  • Adds the ability to hide the prefix/suffix from toNow/fromNow helpers and computed property macro output
3.2.1
  • Removes deprecation warnings from Ember 1.13.6
3.2.0
  • Deprecate helpers: moment, ago, duration in favor of moment-format, moment-from-now, moment-duration
  • Deprecate computed property modules:
    • ember-moment/computeds/ago -> ember-moment/computeds/from-now
    • ember-moment/computeds/moment -> ember-moment/computeds/format
  • Removed EnumerableUtils.map
  • Updated ember-cli-moment-shim to 0.6.0
3.1.0
  • Conditionally include all locales if true is passed to includeLocales option
3.0.2
  • Smoke tests added
  • Fixing regression which broke 1.10.0
  • Added Ember 1.10.0 -> #release to the Travis CI matrix
3.0.1
  • Fixes regression in <= 1.12.0 where the helpers are not registered properly
3.0.0
  • Support to programmatically including moment i18n locale data via includeLocales
  • Removes support for Ember.Handlebars.helpers in favor of just supporting HTMLBars going forward
  • Removes ember-moment/computed. Explicit full path import paths to avoid naming conflicts.
    • ember-moment/computeds/duration
    • ember-moment/computeds/moment
    • ember-moment/computeds/from-now
2.0.1
2.0.0
  • 1.13.x support
  • moment and moment timezone are now pulled in from ember-cli-moment-shim instead of ember-moment
  • BREAKING: moved EmberApp's ember-moment configuration object to config/environment.js and renamed to moment.
// config/environment.js
module.exports = function(environment) {
  return {
    moment: {
      includeTimezone: 'all'
    }
  }
}
1.1.1
  • [BUGFIX] HTMLBars should use makeBoundHelper
1.1.0
  • [ENHANCEMENT] HTMLBars support (backwards compat. with Handlebars)

  • [ENHANCEMENT] Adding duration helper with examples in the dummy app

1.0.0
  • [BREAKING ENHANCEMENT] The full moment Handlebars helper signature is now

    `{{moment-format date outputFormat inputFormat}}`
    

    to better reflect common usage pattern. You are usually passing a date as the first argument, which does not require specifying an inputFormat, and at the same time, you usually do want to specify an output format. #​12.

    Fixes case of passing both input and output formats, and changes default output format.

    Adds a few more usage examples to dummy app, and improves tests accordingly.

  • [BUGFIX] Passing a two arguments to the moment helper was not handled properly.

  • [ENHANCEMENT] Added more examples to the dummy app

0.2.0

Early versions, before this doc was maintained

v10.0.0

Compare Source

  • [BREAKING] This addon no longer provides the 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.
  • [BREAKING] This is a v2 addon so your app must have ember-auto-import >= 2.
  • [BREAKING] 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.

v9.0.1

Compare Source

v9.0.0

Compare Source

  • [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 [email protected] -- 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:

    • 3.16
    • 3.20
    • 3.24

    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

    @&#8203;duration(...) myDuration

    you would now want:

    get myDuration() {
      return moment.duration(...);
    }
  • (internal): Migrate to GitHub Actions

v8.0.2

Compare Source

v8.0.1

Compare Source

v8.0.0

Compare Source

  • [BREAKING] drops Node 6 support
  • Updates ember-macro-helpers to 4.x

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/ember-moment-10.x branch from 2674531 to 914bf9d Compare January 20, 2024 05:12
@renovate renovate bot force-pushed the renovate/ember-moment-10.x branch from 914bf9d to a5cf913 Compare June 27, 2024 15:51
@renovate renovate bot force-pushed the renovate/ember-moment-10.x branch from a5cf913 to 9d11362 Compare June 6, 2025 23:09
@renovate renovate bot force-pushed the renovate/ember-moment-10.x branch from 9d11362 to 1b4c29d Compare August 13, 2025 15:14
@renovate renovate bot force-pushed the renovate/ember-moment-10.x branch from 1b4c29d to 09deff1 Compare November 19, 2025 01:00
@renovate renovate bot force-pushed the renovate/ember-moment-10.x branch from 09deff1 to 07dba8a Compare December 31, 2025 13:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant