https://github.com/moment/moment

sort by:
Revision Author Date Message Commit Date
d731fe7 Build 2.11.1 09 January 2016, 13:13:07 UTC
5dc1f7d Bump version to 2.11.1 09 January 2016, 13:11:33 UTC
ac1a238 Update changelog 2.11.1 09 January 2016, 13:10:52 UTC
398c67f Fix IE8 test bug 09 January 2016, 12:54:38 UTC
cd03dae Merge pull request #2869 from ichernev:per-locale-month-regex Fix months parsing for stranger locales 09 January 2016, 12:41:26 UTC
2b5d12c regex-escape months for exactMonthsParse (incomplete) 09 January 2016, 12:41:25 UTC
c32074a Sort month names by reverse length when constructing month parse regex 09 January 2016, 12:41:25 UTC
6e0b7a9 Fix months parsing for stranger locales 09 January 2016, 12:41:25 UTC
542bacd Merge pull request #2830 from TheAlphaNerd:add-grunt-cli dep: add grunt-cli 09 January 2016, 09:51:06 UTC
c404a81 dep: add grunt-cli currently the project relies on grunt-cli to run unit tests. There are no instructions in the readme to inform developers of this dependency. This PR adds grunt-cli to the dev-dependencies for a more seamless development process. This PR will also make moment compatible with [CITGM](https://github.com/nodejs/citgm) the node.js smoketesting utility. This will allow moment's unit test suite to be ran against every release of Node.js, giving us an opportunity to give you a heads up if anything breaks before a release. 09 January 2016, 09:51:06 UTC
566b333 Merge pull request #2864 from SimenB:patch-1 Include changelog in npm release 09 January 2016, 09:49:40 UTC
30af003 Include changelog in npm release 09 January 2016, 09:49:40 UTC
f07dc54 Update copyright to 2016 09 January 2016, 09:46:31 UTC
f8ffaac Merge pull request #2858 from nowells:global-date Fix Date mocking regression introduced in 2.11.0 09 January 2016, 09:42:27 UTC
e6fe681 Fix Date mocking regression introduced in 2.11.0 The commit https://github.com/moment/moment/commit/f54a32f4c62c12a710335211a73cb002a7249646 and the follow on refactoring https://github.com/moment/moment/commit/b1d686ed481e2211cb81a1c60eca850fcea93f21 broke the ability for Date mocking libraries ([MockDate](https://www.npmjs.com/package/mockdate), SinonJS, etc.) to mock out the Date object. I believe we should restore this functionality. ```js const moment = require('moment'), mockdate = require('mockdate'), frozenTime = moment(); mockdate.set(frozenTime); console.log('Frozen time: ', frozenTime.toISOString()); setTimeout(function() { console.log('Moment time: ', moment().toISOString()); }, 1000); ``` Running the code above will yield the following in `moment@2.10.6` and `moment@2.11.0` respectively. ```bash $ node index.js Frozen time: 2016-01-04T14:21:55.335Z Moment time: 2016-01-04T14:21:55.335Z $ node index.js Frozen time: 2016-01-04T14:21:55.335Z Moment time: 2016-01-04T14:21:56.355Z ``` - Fixes #2857 - Fixes #2855 09 January 2016, 09:42:27 UTC
5925ade Merge pull request #2865 from ichernev:fix-undefined-checks Use typeof checks for undefined for global variables 09 January 2016, 09:38:04 UTC
66bb2d9 Fix lint issues 09 January 2016, 09:38:04 UTC
ccbb6c2 Use typeof checks for undefined for global variables 09 January 2016, 09:38:04 UTC
74141ae Merge pull request #2868 from ichernev:fix-y-token Add format and parse token Y, so it actually works 09 January 2016, 09:36:35 UTC
1159e24 Apply PR comments 09 January 2016, 09:36:35 UTC
0d9cefb Add format and parse token Y, so it actually works 09 January 2016, 09:36:35 UTC
f1d7270 Merge pull request #2881 from ichernev:revert-sept Revert "Merge pull request #2746 from mbad0la:develop" Sep->Sept 09 January 2016, 09:33:32 UTC
a8ff975 Revert "Merge pull request #2746 from mbad0la:develop" This reverts commit 9ea2d6b1a86d59b36bce792771cffc3f85b382b0, reversing changes made to f52a86863dd1fc638501b5f4b4fbe371f8fa725d. 09 January 2016, 09:07:51 UTC
f472e19 Add commented console log that helps with debugging 09 January 2016, 09:05:30 UTC
0eb7101 Rebuild 2.11.0 02 January 2016, 23:30:23 UTC
bb712fc Fix broken week-year test 02 January 2016, 23:28:47 UTC
c74a101 Build 2.11.0 31 December 2015, 13:13:43 UTC
6effd83 Bump version to 2.11.0 31 December 2015, 13:05:08 UTC
a6f3d6d Update changelog for 2.11.0 31 December 2015, 13:05:08 UTC
14a6497 Fix issues in ca, tlh and tzl locale 31 December 2015, 13:05:08 UTC
2dc2997 Check all locales for bad expanded tokens 31 December 2015, 13:05:08 UTC
f149c6c Merge pull request #2842 from ichernev:fix-ie8 Fix broken tests in IE8 31 December 2015, 11:41:48 UTC
9d3c200 Do not depend on Date to parse an ISO string for IE8 compat 31 December 2015, 09:59:51 UTC
4b582f1 Do not use Object.keys and [].forEach for IE8 compat 31 December 2015, 09:59:33 UTC
fb3fb8b Do not use String.trim for IE8 compat 31 December 2015, 09:58:43 UTC
2015146 Do not use substr(-1) for IE8 compat 31 December 2015, 09:58:22 UTC
57e26cd Fix ISO matching for IE8 31 December 2015, 09:57:52 UTC
bbaa8aa Fix saucelabs config for Edge and IE 29 December 2015, 18:41:13 UTC
404cfd0 Merge pull request #2835 from ichernev:add-strict-creation-data Add strict field to creationData 29 December 2015, 18:12:52 UTC
5cd0486 Add strict field to creationData 29 December 2015, 18:12:52 UTC
8bb5dff Merge pull request #2833 from ichernev:fix-now Use moment.now instead of moment.fn.now for changing time source 29 December 2015, 18:05:46 UTC
b1d686e Use moment.now instead of moment.fn.now for changing time source 25 December 2015, 14:44:10 UTC
0897f50 Fix forgotten merge note in #2646 23 December 2015, 04:38:42 UTC
bf8642f Merge pull request #2666 from amaranthrose/klingon_tlh_locale Adds klingon(tlh) locale 18 December 2015, 14:36:04 UTC
87e55fd Adds klingon(tlh) locale 15 December 2015, 07:49:38 UTC
a7c225b Merge pull request #2799 from clairecoloma:develop Remove caps in spanish month and days 09 December 2015, 08:38:02 UTC
df5dced revert local file 09 December 2015, 08:38:02 UTC
63047bb Remove caps in spanish month and days 09 December 2015, 08:38:02 UTC
bba7bc0 Merge pull request #2794 from SwamWithTurtles:develop Tests shouldn't fail on non-whole hour offsets: 09 December 2015, 08:34:38 UTC
284ba78 Remove checked in IDEA files 09 December 2015, 08:34:38 UTC
08cc66a Remove now unused tz_hour variable 09 December 2015, 08:34:38 UTC
89134c0 Remove northern hemisphere dependent tests 09 December 2015, 08:34:38 UTC
c536c70 Make tests involving hours-only off-set pass when non-whole hour offsets 09 December 2015, 08:34:38 UTC
c3e79c7 Merge pull request #2786 from manveru:develop Don't treat string offsets like ints 09 December 2015, 08:26:03 UTC
6016d1d don't treat string offsets like ints 09 December 2015, 08:26:03 UTC
61800d3 Merge pull request #2777 from johanneswuerbach:two-digit-time-zone Tests for two-digit time zone offsets 09 December 2015, 08:23:39 UTC
c0013e5 Tests for two-digit time zone offsets 09 December 2015, 08:23:39 UTC
75a178e Merge pull request #2773 from rclanan:develop New isUndefined utility method 09 December 2015, 08:16:29 UTC
5f691b1 New isUndefined utility method Updated all test for undefined to use new utility method isUndefined 09 December 2015, 08:16:29 UTC
816245f Merge pull request #2766 from notebowl:alternate-clock-source-support Alternate Clock Source Support 09 December 2015, 08:13:33 UTC
331029b Fix tests for all timezones 09 December 2015, 08:13:26 UTC
b601c88 does build server use UTC time? 09 December 2015, 08:13:12 UTC
f54a32f implement support for retrieving current date from alternate clock sources 09 December 2015, 08:13:12 UTC
9ea2d6b Merge pull request #2746 from mbad0la:develop Changed September Abbreviation to "Sept" in locale-specific english files and default locale file 09 December 2015, 07:13:45 UTC
e78353d Fix monthParse functions for en family 09 December 2015, 07:13:26 UTC
7ba8c9e Update en.js 09 December 2015, 07:06:48 UTC
18d7f08 Added Sep/Sept parsing test 09 December 2015, 07:06:48 UTC
8820045 Update en-ca.js 09 December 2015, 07:06:48 UTC
64cc91e Update en-gb.js 09 December 2015, 07:06:48 UTC
4014c78 Update en-nz.js 09 December 2015, 07:06:48 UTC
88c272e Update en-au.js 09 December 2015, 07:06:48 UTC
9b5ac21 Update is_valid.js 09 December 2015, 07:06:48 UTC
e3ef9e9 Update create.js 09 December 2015, 07:06:48 UTC
676466a Update create.js 09 December 2015, 07:06:48 UTC
9a43cfb Update listers.js 09 December 2015, 07:06:48 UTC
293a4f8 Update en.js 09 December 2015, 07:06:48 UTC
5d4a7ce Update en-nz.js 09 December 2015, 07:06:48 UTC
2720639 Update en-gb.js 09 December 2015, 07:06:48 UTC
40e369e Update en-ca.js 09 December 2015, 07:06:48 UTC
e427b59 Update en-au.js 09 December 2015, 07:06:48 UTC
ed5c97b Update month.js 09 December 2015, 07:06:48 UTC
6a02f58 Update en-au.js 09 December 2015, 07:05:44 UTC
16212ae Update en-ca.js 09 December 2015, 07:05:44 UTC
14cfe89 Update en-gb.js 09 December 2015, 07:05:44 UTC
759ec12 Update en-nz.js 09 December 2015, 07:05:44 UTC
f52a868 Merge pull request #2744 from mj1856:setFullYear Only call setFullYear when necessary 09 December 2015, 06:53:35 UTC
f89da2d Only call setFullYear when necessary 09 December 2015, 06:53:35 UTC
11b18a8 Merge pull request #2741 from ichernev:fix-cases Fix cases in Croatian 09 December 2015, 06:52:09 UTC
810363e Fix hr accusative/nominative 09 December 2015, 06:52:09 UTC
8016bbe Better support for accusative/nominative months and long weekdays 09 December 2015, 06:52:09 UTC
a978248 Merge pull request #2740 from ichernev:duration-format Enable 'd hh:mm:ss.sss' format for durations 09 December 2015, 06:48:07 UTC
a47bc4e Enable 'd hh:mm:ss.sss' format for durations Fix #2342 09 December 2015, 06:48:07 UTC
4205550 Merge pull request #2739 from ichernev:semicolon-before-iife Add ; before each main file's IIFE 09 December 2015, 06:46:17 UTC
1bf7e9c Add ; before each main file's IIFE 09 December 2015, 06:46:17 UTC
c86a868 Merge pull request #2734 from chriscartlidge:develop ADDED: Support for the en-ie locale based on the IS/EN 28601 standard. 09 December 2015, 06:39:53 UTC
b918aeb FIXED: Typo 09 December 2015, 06:39:53 UTC
a922e27 ADDED: Support for the en-ie locale based on the IS/EN 28601 standard. 09 December 2015, 06:39:53 UTC
1d7599f Merge pull request #2731 from kambo:develop Added dot after days and [kl.] on time formats for "nn" locale 09 December 2015, 06:29:03 UTC
1294c4c Added dot after days and [kl.] on time formats for "nn" locale 09 December 2015, 06:28:45 UTC
2fca078 Merge pull request #2726 from B0k0:fix/locale-mk Fix Macedonian locale 09 December 2015, 06:25:20 UTC
back to top