Address https://github.com/moment/moment/security/advisories/GHSA-8hfj-j24r-96c4
Updated deprecation message, bugfix in hi locale
New locales (es-mx, bn-bd).
Minor bugfixes and locale improvements.
More tests.
Moment is in maintenance mode. Read more at this link:
https://momentjs.com/docs/#/-project-status/
Fix bug where .format() modifies original instance, and locale updates
Added Turkmen locale, other locale improvements, slight TypeScript fixes
TypeScript fixes and many locale improvements
Remove package.json module property. It looks like webpack behaves differently
for modules loaded via module vs jsnext:main.
This release includes ES Module bundled moment, separate from it's source code
under dist/ folder. This might alleviate issues with finding the `./locale
subfolder for loading locales. This might also mean now webpack will bundle all
locales automatically, unless told otherwise.
This is a quick patch release to address some of the issues raised after
releasing 2.25.0.
Release May 1, 2020
#4611 022dc038 [feature] Support for strict string parsing, fixes #2469
18 bigfixes
Release Jan 21, 2019
#4338 [bugfix] Fix startOf/endOf DST issues while boosting performance
Release Dec 12, 2018
#4863 [new locale] added Kurdish language (ku)
Release May 31, 2018
#4564 [bugfix] Avoid using trim()
Release Apr 14, 2018
#4495 [bugfix] Added HTML5_FMT to moment.d.ts
Release Mar 30, 2018
#4423 [new locale] Added Mongolian locale mn
Release Mar 2, 2018
#4391 [bugfix] Fix #4390: use offset properly in toISOString
Release Dec 18, 2017
#4359 [locale] Fix Arabic locale for months (again)
Release Dec 16, 2017
Release Dec 10, 2017
#4332 [bugfix] Fix weekday verification for UTC and offset days (fixes #4227)
Release Nov 29, 2017
Release Nov 11, 2017
#4255 [bugfix] Fix year setter for random days in a leap year, fixes #4238
Make react native and webpack both work
* #4225 #4226 #4232
Bugfixes, new locales, locale fixes etc...
Release Mar 22, 2017
#3853 [misc] Fix invalid whitespace character causing inability to parse
moment.js
7 new locales, many locale improvements and some misc changes
Release Dec 03, 2016
#3638 [misc] TS: Make typescript definitions work with 1.x
CONTRIBUTING.md
Release Nov 22, 2016
#3435 [new locale] yo: Yoruba (Nigeria) locale
And more locale, build and typescript improvements
Also some locale and typescript improvements
Plus es-do locale and locale bugfixes
Plus 3 new locales and locale fixes.
And more
Release February 7, 2016
#2939 use full-string match to speed up aspnet regex match
Release January 4, 2016
#2624 Proper handling of invalid moments
#2641 Implement basic format and comma as ms separator in ISO 8601
#2515 Fix regression introduced
in 2.10.5
related to moment.ISO_8601
parsing.
Important changes:
* #2357 Improve unit bubbling for ISO dates
this fixes day to year conversions to work around end-of-year (~365 days). As
a side effect 365 days is 11 months and 30 days, and 366 days is one year.
* #2438 Fix inconsistent moment.min and moment.max results
Return invalid result if any of the inputs is invalid
* #2494 Fix two digit year parsing with YYYY format
This brings the benefits of YY to YYYY
* #2368 perf: use faster form of copying dates, across the board improvement
Release May 13, 2015
add moment.fn.to
and moment.fn.toNow
(similar to from
and fromNow
)
Release April 9, 2015
fixed moment-with-locales in browser env caused by esperanto change
Ported code to es6 modules.
languages:
* 2104 Frisian (fy) language file with unit test
* 2097 add ar-tn locale
deprecations:
* 2074 Implement moment.fn.utcOffset
, deprecate moment.fn.zone
features:
* 2088 add moment.fn.isBetween
* 2054 Call updateOffset when creating moment (needed for default timezone in
moment-timezone)
* 1893 Add moment.isDate method
* 1825 Implement toJSON function on Duration
* 1809 Allowing moment.set() to accept a hash of units
* 2128 Add firstDayOfWeek, firstDayOfYear locale getters
* 2131 Add quarter diff support
Some bugfixes and language improvements -- full changelog
Features:
Some bugfixes and language improvements -- full changelog
Bugfixes:
Minor bugfixes:
Object.prototype.hasOwnProperty
obj.hasOwnProperty
(ie8 bug)duration#toString()
Release August 1, 2014
bugfix #1813: fix moment().lang([key]) incompatibility
Release July 31, 2014
incompatible changes
deprecations (old behavior will be dropped in 3.0)
lang
is renamed to locale
, langData
-> localeData
. Also there is now defineLocale
that should be used when creating new localesadd(unit, value)
and subtract(unit, value)
are now deprecated. Use add(value, unit)
and subtract(value, unit)
instead.duration.toIsoString
to duration.toISOString
. The js standard library and moment's toISOString
follow that convention.new locales
bugfixes, locale bugfixes, performance improvements, features
Release June 12, 2014
new languages
#1678 Bengali (bn)
features
#1663 configurable relative time thresholds
bugfixes
Release April 12 , 2014
languages
features
18 bugs fixed
Release January 22, 2014
languages
bugfixes
testing
Release Dec 24, 2013
New languages
Features
Q
22 bugfixes
Release Oct 27, 2013
Deprecate globally exported moment, will be removed in next major
Removed a trailing comma [1169] and fixed a bug with months
, weekdays
getters #1171.
Changed isValid, added strict parsing.
Week tokens parsing.
Fixed bug in string prototype test.
Updated authors and contributors.
Added bower support.
Language files now use UMD.
Creating moment defaults to current date/month/year.
Added a bundle of moment and all language files.
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
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.
Bugfixes
Bugfixes
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.
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.
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.
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.
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.
Added UTC mode.
Added automatic ISO8601 parsing.
Various bugfixes.
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.
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
Added timezones to parser and formatter.
Added moment.fn.isDST
.
Added moment.fn.zone
to get the timezone offset in minutes.
Various bugfixes
Added time specific diffs (months, days, hours, etc)
Added moment.fn.format
localized masks. 'L LL LLL LLLL' issue 29
Fixed issue 31.
Added moment.version
to get the current version.
Removed window !== undefined
when checking if module exists to support browserify. issue 25
Added convenience methods for getting and setting date parts.
Added better support for moment.add()
.
Added better lang support in NodeJS.
Renamed library from underscore.date to Moment.js
Added Portuguese, Italian, and French language support
Added _date.lang() support.
Added support for passing multiple formats to try to parse a date. _date("07-10-1986", ["MM-DD-YYYY", "YYYY-MM-DD"]);
Made parse from string and single format 25% faster.
Bugfix for issue 8 and issue 9.
Bugfix for issue 5.
Dropped the redundant _date.date()
in favor of _date()
.
Removed _date.now()
, as it is a duplicate of _date()
with no parameters.
Removed _date.isLeapYear(yearNumber)
. Use _date([yearNumber]).isLeapYear()
instead.
Exposed customization options through the _date.relativeTime
, _date.weekdays
, _date.weekdaysShort
, _date.months
, _date.monthsShort
, and _date.ordinal
variables instead of the _date.customize()
function.
Added date input formats for input strings.
Added underscore.date to npm. Removed dependencies on underscore.
Added 'z'
and 'zz'
to _.date().format()
. Cleaned up some redundant code to trim off some bytes.
Cleaned up the namespace. Moved all date manipulation and display functions to the _.date() object.
Switched to the Underscore methodology of not mucking with the native objects' prototypes.
Made chaining possible.
Changed date names to be a more pseudo standardized 'dddd, MMMM Do YYYY, h:mm:ss a'.
Added Date.prototype
functions add
, subtract
, isdst
, and isleapyear
.
Changed function names to be more concise.
Changed date format from php date format to custom format.
Initial release