Skip to content

chore(deps): update dependency ember-moment to v11#1082

Open
renovate[bot] wants to merge 1 commit intostagingfrom
renovate/ember-moment-11.x
Open

chore(deps): update dependency ember-moment to v11#1082
renovate[bot] wants to merge 1 commit intostagingfrom
renovate/ember-moment-11.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Mar 31, 2026

This PR contains the following updates:

Package Change Age Confidence
ember-moment ^10.0.0^11.1.0 age confidence

Release Notes

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

v11.1.0

  • ember-moment 11.1.0 (minor)
🚀 Enhancement
  • ember-moment
    • #​417 start emitting declarations during the build - extracted from the JS files (@​mansona)
Committers: 1

v11.0.0

  • ember-moment 11.0.0 (major)
💥 Breaking Change
Committers: 1

v10.0.3

  • ember-moment 10.0.3 (patch)
🐛 Bug Fix
🏠 Internal
Committers: 1

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 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:

    • 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


Configuration

📅 Schedule: (in timezone Europe/Amsterdam)

  • 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 added the dependencies Pull requests that update a dependency file label Mar 31, 2026
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Mar 31, 2026

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: yarn.lock
/opt/containerbase/tools/corepack/0.34.7/18.14.2/node_modules/corepack/dist/lib/corepack.cjs:22658
  const isURL = URL.canParse(range);
                    ^

TypeError: URL.canParse is not a function
    at parseSpec (/opt/containerbase/tools/corepack/0.34.7/18.14.2/node_modules/corepack/dist/lib/corepack.cjs:22658:21)
    at Object.getSpec (/opt/containerbase/tools/corepack/0.34.7/18.14.2/node_modules/corepack/dist/lib/corepack.cjs:22807:55)
    at Engine.findProjectSpec (/opt/containerbase/tools/corepack/0.34.7/18.14.2/node_modules/corepack/dist/lib/corepack.cjs:23026:31)
    at async Engine.executePackageManagerRequest (/opt/containerbase/tools/corepack/0.34.7/18.14.2/node_modules/corepack/dist/lib/corepack.cjs:23065:24)
    at async Object.runMain (/opt/containerbase/tools/corepack/0.34.7/18.14.2/node_modules/corepack/dist/lib/corepack.cjs:23771:7)

Node.js v18.14.2

@renovate renovate Bot force-pushed the renovate/ember-moment-11.x branch from f23d4a1 to 69ed24c Compare April 29, 2026 13:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants