All Versions
89
Latest Version
Avg Release Cycle
62 days
Latest Release
-

Changelog History
Page 7

  • v2.2.0 Changes

    • 🚀 Release Sep 11, 2013

    ➕ Added bower support.

    Language files now use UMD.

    0️⃣ Creating moment defaults to current date/month/year.

    ➕ Added a bundle of moment and all language files.

  • v2.1.0 Changes

    • 🚀 Release Jul 8, 2013

    ➕ Added better week support.

    ➕ Added ability to set offset with moment#zone.

    ➕ Added ability to set month or weekday from a string.

    ➕ Added moment#min and moment#max

  • v2.0.0 Changes

    • 🚀 Release Feb 9, 2013

    ➕ Added short form localized tokens.

    ➕ Added ability to define language a string should be parsed in.

    ➕ Added support for reversed add/subtract arguments.

    ➕ Added support for endOf('week') and startOf('week').

    🛠 Fixed the logic for moment#diff(Moment, 'months') and moment#diff(Moment, 'years')

    moment#diff now floors instead of rounds.

    Normalized moment#toString.

    ➕ Added isSame, isAfter, and isBefore methods.

    ➕ Added better week support.

    ➕ Added moment#toJSON

    🛠 Bugfix: Fixed parsing of first century dates

    🛠 Bugfix: Parsing 10Sep2001 should work as expected

    🛠 Bugfix: Fixed weirdness with moment.utc() parsing.

    🔄 Changed language ordinal method to return the number + ordinal instead of just the ordinal.

    🔄 Changed two digit year parsing cutoff to match strptime.

    ✂ Removed moment#sod and moment#eod in favor of moment#startOf and moment#endOf.

    ✂ Removed moment.humanizeDuration() in favor of moment.duration().humanize().

    ✂ Removed the lang data objects from the top level namespace.

    Duplicate Date passed to moment() instead of referencing it.

  • v1.7.2 Changes

    • 🚀 Release Oct 2, 2012

    🛠 Bugfixes

  • v1.7.1 Changes

    • 🚀 Release Oct 1, 2012

    🛠 Bugfixes

  • v1.7.0 Changes

    • 🚀 Release Jul 26, 2012

    ➕ Added moment.fn.endOf() and moment.fn.startOf().

    ➕ Added validation via moment.fn.isValid().

    Made formatting method 3x faster. http://jsperf.com/momentjs-cached-format-functions

    ➕ Add support for month/weekday callbacks in moment.fn.format()

    ➕ Added instance specific languages.

    ➕ Added two letter weekday abbreviations with the formatting token dd.

    ⚡️ Various language updates.

    🛠 Various bugfixes.

  • v1.6.0 Changes

    • 🚀 Release Apr 26, 2012

    ➕ Added Durations.

    📜 Revamped parser to support parsing non-separated strings (YYYYMMDD vs YYYY-MM-DD).

    ➕ Added support for millisecond parsing and formatting tokens (S SS SSS)

    ➕ Added a getter for moment.lang()

    🛠 Various bugfixes.

    🚀 There are a few things deprecated in the 1.6.0 release.

    👀 1. The format tokens z and zz (timezone abbreviations like EST CST MST etc) will no longer be supported. Due to inconsistent browser support, we are unable to consistently produce this value. See this issue for more background.

    🗄 2. The method moment.fn.native is deprecated in favor of moment.fn.toDate. There continue to be issues with Google Closure Compiler throwing errors when using native, even in valid instances.

    👀 3. The way to customize am/pm strings is being changed. This would only affect you if you created a custom language file. For more information, see this issue.

  • v1.5.0 Changes

    • 🚀 Release Mar 20, 2012

    ➕ Added UTC mode.

    ➕ Added automatic ISO8601 parsing.

    🛠 Various bugfixes.

  • v1.4.0 Changes

    • 🚀 Release Feb 4, 2012

    ➕ Added moment.fn.toDate as a replacement for moment.fn.native.

    ➕ Added moment.fn.sod and moment.fn.eod to get the start and end of day.

    🛠 Various bugfixes.

  • v1.3.0 Changes

    • 🚀 Release Jan 5, 2012

    ➕ Added support for parsing month names in the current language.

    ➕ Added escape blocks for parsing tokens.

    ➕ Added moment.fn.calendar to format strings like 'Today 2:30 PM', 'Tomorrow 1:25 AM', and 'Last Sunday 4:30 AM'.

    ➕ Added moment.fn.day as a setter.

    🛠 Various bugfixes