]> git.ipfire.org Git - thirdparty/moment.git/log
thirdparty/moment.git
7 years agoMerge pull request #3518 from maggiepint/babel babel 3519/head 5052/head
Maggie Pint [Sat, 22 Oct 2016 02:32:40 +0000 (19:32 -0700)] 
Merge pull request #3518 from maggiepint/babel

Start of babel conversion

7 years agocheckmark babel convert 3517/head 3518/head
Maggie Pint [Sat, 22 Oct 2016 02:23:00 +0000 (19:23 -0700)] 
checkmark babel convert

8 years agoBuild 2.15.1 2.15.1
Iskren Chernev [Wed, 21 Sep 2016 03:33:57 +0000 (20:33 -0700)] 
Build 2.15.1

8 years agoBump version to 2.15.1
Iskren Chernev [Wed, 21 Sep 2016 03:32:29 +0000 (20:32 -0700)] 
Bump version to 2.15.1

8 years agoUpdate changelog for 2.15.1
Iskren Chernev [Wed, 21 Sep 2016 03:31:32 +0000 (20:31 -0700)] 
Update changelog for 2.15.1

8 years agoMerge pull request #3438 from ichernev:fix-locale-autoload
Iskren Chernev [Wed, 21 Sep 2016 03:07:12 +0000 (20:07 -0700)] 
Merge pull request #3438 from ichernev:fix-locale-autoload

[bugfix] Fix locale autoload, revert #3344

8 years agoRevert "Merge pull request #3344 from yiminghe:module_require"
Iskren Chernev [Thu, 15 Sep 2016 07:05:32 +0000 (00:05 -0700)] 
Revert "Merge pull request #3344 from yiminghe:module_require"

This reverts commit bb6a30e3e9a1b2022b68794b30dd68ed561aa847, reversing
changes made to d4c5f8e8b503a590e6661a3ae5510b92f1c43631.

8 years agoMerge pull request #3404 from anotheredward/patch-1
Matt Johnson [Wed, 14 Sep 2016 16:55:33 +0000 (09:55 -0700)] 
Merge pull request #3404 from anotheredward/patch-1

add license to bower.json

8 years agoUpdate Moment.js.nuspec authors and put releaseNotes (not used for 2.15.0 unfortunately)
Iskren Chernev [Tue, 13 Sep 2016 05:06:21 +0000 (22:06 -0700)] 
Update Moment.js.nuspec authors and put releaseNotes (not used for 2.15.0 unfortunately)

8 years agoAdd meteor/package.js to bump version script
Iskren Chernev [Tue, 13 Sep 2016 04:56:47 +0000 (21:56 -0700)] 
Add meteor/package.js to bump version script

8 years agoUse fixed version in meteor/package.js
Iskren Chernev [Tue, 13 Sep 2016 04:57:19 +0000 (21:57 -0700)] 
Use fixed version in meteor/package.js

8 years agoBuild 2.15.0 2.15.0
Iskren Chernev [Mon, 12 Sep 2016 08:47:46 +0000 (01:47 -0700)] 
Build 2.15.0

8 years agoBump version to 2.15.0
Iskren Chernev [Mon, 12 Sep 2016 08:46:17 +0000 (01:46 -0700)] 
Bump version to 2.15.0

8 years agoUpdate changelog for 2.15.0
Iskren Chernev [Mon, 12 Sep 2016 08:45:30 +0000 (01:45 -0700)] 
Update changelog for 2.15.0

8 years agoMerge pull request #3427 from ichernev:fix-ie8
Iskren Chernev [Mon, 12 Sep 2016 07:08:41 +0000 (00:08 -0700)] 
Merge pull request #3427 from ichernev:fix-ie8

[misc] ie8: Fix IE8

8 years agoDetect Date().toISOString before using it in tests for IE8 3427/head
Iskren Chernev [Mon, 12 Sep 2016 06:52:47 +0000 (23:52 -0700)] 
Detect Date().toISOString before using it in tests for IE8

8 years agoExclude ro locale from weekday parsing safety checks
Iskren Chernev [Mon, 12 Sep 2016 06:52:25 +0000 (23:52 -0700)] 
Exclude ro locale from weekday parsing safety checks

8 years agoFix isObject in IE8
Iskren Chernev [Mon, 12 Sep 2016 06:51:31 +0000 (23:51 -0700)] 
Fix isObject in IE8

8 years agoMerge pull request #3345 from webbiesdk:updateTo214
Iskren Chernev [Wed, 7 Sep 2016 08:40:19 +0000 (01:40 -0700)] 
Merge pull request #3345 from webbiesdk:updateTo214

[misc] typescript: Add isoWeekdays(str), locales, defaultFormatUtc

8 years agoUpdated the declaration file.
Erik Krogh Kristensen [Tue, 2 Aug 2016 12:19:02 +0000 (14:19 +0200)] 
Updated the declaration file.
Added locales, new since 2.12
Added a new overload of isoWeekday, which is possible since the input is passed through `parseIsoWeekday` since 2.14
Added defaultFormatUtc, new since 2.13.

8 years agoMerge pull request #3323 from seansfkelley:union-types-for-typings
Iskren Chernev [Wed, 7 Sep 2016 08:38:40 +0000 (01:38 -0700)] 
Merge pull request #3323 from seansfkelley:union-types-for-typings

[misc] typescript: refactor constructor and ISO format hack

8 years agoMake moment's typings for parsing stricter and also allow them to accept union types.
Sean Kelley [Sun, 24 Jul 2016 09:45:09 +0000 (11:45 +0200)] 
Make moment's typings for parsing stricter and also allow them to accept union types.

This commit was adapted from 1ec036686e70ad0d837ed2443684d54bca13af01 in DefinitelyTyped.
See https://github.com/DefinitelyTyped/DefinitelyTyped/pull/8765 for context. The original
body of the commit message follows.

These changes do two things.

1. Replace very lax typings like `any[]` with stricter, more-correct versions. In particular,
the ISO_8601 constant, while /technically/ a void function, is actually an opaque sentinel
that a consumer should not know anything about it. The function type was replaced with a
sentinel type using the principle of "brands" that can be seen in the Typescript compiler:
https://github.com/Microsoft/TypeScript/blob/413d9a639f933df7539070b236c1677de8302a93/src/compiler/types.ts#L9

2. Replace the many overloads of the parsing methods with a smaller representative set that
uses union types instead. Aside from succinctness, this allows callers to provide a union
type as the argument, as long as it matches, which was not possible before (Typescript does
not explode the union type to see if overloads cover all the possibilities).

8 years agoMerge pull request #3316 from gachou:develop
Iskren Chernev [Wed, 7 Sep 2016 08:32:52 +0000 (01:32 -0700)] 
Merge pull request #3316 from gachou:develop

[misc] typescript: Add moment().creationData() declaration

8 years agoAdd #creationData() to TypeScript interface in moment.d.ts
Nils Knappmeier [Fri, 10 Jun 2016 12:33:12 +0000 (14:33 +0200)] 
Add #creationData() to TypeScript interface in moment.d.ts

8 years agoMerge pull request #3303 from poke:develop
Iskren Chernev [Wed, 7 Sep 2016 08:29:42 +0000 (01:29 -0700)] 
Merge pull request #3303 from poke:develop

[misc] typescript: Add 'date' to UnitOfTime

8 years agoAdd date to UnitOfTime
Patrick Westerhoff [Thu, 14 Jul 2016 14:26:49 +0000 (16:26 +0200)] 
Add date to UnitOfTime

- `date` refers to the day of the month
- `day` refers to the day of the week

8 years agoMerge pull request #3282 from johnnyreilly:develop
Iskren Chernev [Wed, 7 Sep 2016 07:24:55 +0000 (00:24 -0700)] 
Merge pull request #3282 from johnnyreilly:develop

[misc] typescript: Ensure moment.d.ts is tested for syntax

8 years agoMake sure to run typescript tests with regular tests
Iskren Chernev [Wed, 7 Sep 2016 07:15:40 +0000 (00:15 -0700)] 
Make sure to run typescript tests with regular tests

8 years agoDo NOT depend on global typescript installation
Iskren Chernev [Wed, 7 Sep 2016 07:15:17 +0000 (00:15 -0700)] 
Do NOT depend on global typescript installation

8 years agoDrop usage of moduleResolution
John Reilly [Sun, 4 Sep 2016 20:08:49 +0000 (21:08 +0100)] 
Drop usage of moduleResolution

8 years agoMoved to use Grunt approach to run TypeScript tests as suggested here: https://github...
John Reilly [Sat, 20 Aug 2016 14:40:09 +0000 (15:40 +0100)] 
Moved to use Grunt approach to run TypeScript tests as suggested here: https://github.com/moment/moment/pull/3282#issuecomment-239356967

8 years agoTrigger npm run test-typings in Travis CI build
John Reilly [Mon, 4 Jul 2016 10:31:38 +0000 (11:31 +0100)] 
Trigger npm run test-typings in Travis CI build

8 years agoAdd TypeScript as a dev dependency
John Reilly [Mon, 4 Jul 2016 10:25:54 +0000 (11:25 +0100)] 
Add TypeScript as a dev dependency

8 years agoAdd tests for moment.d.ts
John Reilly [Mon, 4 Jul 2016 10:18:24 +0000 (11:18 +0100)] 
Add tests for moment.d.ts

as discussed in https://github.com/moment/moment/pull/3280

8 years agoMerge pull request #3273 from tamird:patch-1
Iskren Chernev [Sun, 4 Sep 2016 07:49:00 +0000 (00:49 -0700)] 
Merge pull request #3273 from tamird:patch-1

[pkg] jspm: Include moment.d.ts file in package

8 years agoInclude moment.d.ts file in packages (jspm)
Tamir Duberstein [Sat, 2 Jul 2016 21:00:49 +0000 (17:00 -0400)] 
Include moment.d.ts file in packages (jspm)

Similar to aea2a8961bc4dbff0471d0615af1f4fb98fc81d7 and required for
use with https://github.com/frankwallis/plugin-typescript.

8 years agoMerge pull request #3398 from JohnMacAslan:shorten-thai-LT
Iskren Chernev [Sat, 3 Sep 2016 07:11:10 +0000 (00:11 -0700)] 
Merge pull request #3398 from JohnMacAslan:shorten-thai-LT

[locale] th: Shorten LT and LTS formats

8 years agoshorten Thai LT and LTS formats
John MacAslan [Thu, 25 Aug 2016 21:09:56 +0000 (17:09 -0400)] 
shorten Thai LT and LTS formats

8 years agoMerge pull request #3396 from fidelpita:develop
Iskren Chernev [Sat, 3 Sep 2016 06:47:02 +0000 (23:47 -0700)] 
Merge pull request #3396 from fidelpita:develop

[locale] gl: Improve month, weekday names, datetime formats, doy

8 years agoCorrections to Galician locale
Fidel Pita [Thu, 25 Aug 2016 11:05:14 +0000 (13:05 +0200)] 
Corrections to Galician locale

 - Months and days of week changed to lowercase
 - "en" + "un*" contraction for future times has been generalized
 - Corrected first week of the year (ISO 8601)

8 years agoMerge pull request #3388 from CorasWorksSolutions:develop
Iskren Chernev [Sat, 3 Sep 2016 06:33:02 +0000 (23:33 -0700)] 
Merge pull request #3388 from CorasWorksSolutions:develop

[misc] ISO deprecation clarification and better deprecation trace

8 years agoUpdate deprecate function to expand values of an argument which is an object
CorasWorksSolutions [Mon, 22 Aug 2016 16:14:09 +0000 (12:14 -0400)] 
Update deprecate function to expand values of an argument which is an object

8 years agoUpdate deprecation message for non ISO dates to be more explicit
CorasWorksSolutions [Mon, 22 Aug 2016 16:09:01 +0000 (12:09 -0400)] 
Update deprecation message for non ISO dates to be more explicit

8 years agoMerge pull request #3383 from ben-ng:develop
Iskren Chernev [Sat, 3 Sep 2016 06:31:20 +0000 (23:31 -0700)] 
Merge pull request #3383 from ben-ng:develop

[bugfix] toJSON: Fix isValid so that toJSON works after a moment is frozen

8 years agoIncorporate discussed changes
Iskren Chernev [Sat, 3 Sep 2016 06:29:42 +0000 (23:29 -0700)] 
Incorporate discussed changes

8 years agoFix isValid so that toJSON works after a moment is frozen
Ben Ng [Fri, 19 Aug 2016 14:34:31 +0000 (10:34 -0400)] 
Fix isValid so that toJSON works after a moment is frozen

8 years agoMerge pull request #3381 from schempy:hotfix-issue-3083
Iskren Chernev [Sat, 3 Sep 2016 06:14:16 +0000 (23:14 -0700)] 
Merge pull request #3381 from schempy:hotfix-issue-3083

[bugfix] parsing: Fix parseZone without timezone in string, fixes #3083

8 years agoFixed parseZone without timezone returning unexpected result
Brian Schemp [Fri, 19 Aug 2016 03:14:33 +0000 (17:14 -1000)] 
Fixed parseZone without timezone returning unexpected result

8 years agoMerge pull request #3372 from joineral32:develop
Iskren Chernev [Sat, 3 Sep 2016 06:08:17 +0000 (23:08 -0700)] 
Merge pull request #3372 from joineral32:develop

[misc] benchmarks: Add add, subtract, endOf, query benchmarks

8 years agoAdded benchmarks for some supported operations
joineral32 [Mon, 15 Aug 2016 21:29:49 +0000 (17:29 -0400)] 
Added benchmarks for some supported operations

8 years agoMerge pull request #3356 from shaishavgandhi05:develop
Iskren Chernev [Sat, 3 Sep 2016 06:06:10 +0000 (23:06 -0700)] 
Merge pull request #3356 from shaishavgandhi05:develop

[locale] bs hr me sl sr sr-cyrl: Change 'DD. MM. YYYY' to 'DD.MM.YYYY' in L

8 years agoAdded commits
shaishavgandhi05 [Sat, 6 Aug 2016 05:04:22 +0000 (01:04 -0400)] 
Added commits

Signed-off-by: shaishavgandhi05 <shaishgandhi@gmail.com>
8 years agoChanged 'DD. MM. YYYY' to 'DD.MM.YYYY'
shaishavgandhi05 [Sat, 6 Aug 2016 04:19:48 +0000 (00:19 -0400)] 
Changed 'DD. MM. YYYY' to 'DD.MM.YYYY'

Signed-off-by: shaishavgandhi05 <shaishgandhi@gmail.com>
8 years agoMerge pull request #3344 from yiminghe:module_require
Iskren Chernev [Sat, 3 Sep 2016 06:00:05 +0000 (23:00 -0700)] 
Merge pull request #3344 from yiminghe:module_require

[pkg] exports: use module.require for nodejs

8 years agouse module.require for nodejs
yiminghe [Tue, 2 Aug 2016 10:50:14 +0000 (18:50 +0800)] 
use module.require for nodejs

8 years agoMerge pull request #3339 from jfarid27:fix-issue-3338
Iskren Chernev [Sat, 3 Sep 2016 05:56:46 +0000 (22:56 -0700)] 
Merge pull request #3339 from jfarid27:fix-issue-3338

[tests] Test creation of moment with format and undefined input

8 years agofixes #3338
J. Farid [Fri, 29 Jul 2016 19:10:40 +0000 (15:10 -0400)] 
fixes #3338

8 years agoMerge pull request #3333 from skfd:feature-loc-zh-hk
Iskren Chernev [Sat, 3 Sep 2016 05:53:37 +0000 (22:53 -0700)] 
Merge pull request #3333 from skfd:feature-loc-zh-hk

[new locale] zh-hk: Chinese (Hong Kong) locale

8 years agofix comments
Konstantin Konev [Thu, 28 Jul 2016 20:56:01 +0000 (23:56 +0300)] 
fix comments

8 years ago`zh-hk` support.
Konstantin Konev [Thu, 28 Jul 2016 20:49:58 +0000 (23:49 +0300)] 
`zh-hk` support.

8 years agoMerge pull request #3326 from abeja-inc:develop
Iskren Chernev [Sat, 3 Sep 2016 05:49:59 +0000 (22:49 -0700)] 
Merge pull request #3326 from abeja-inc:develop

[locale] jv: Fix full locale name -- Japanese to JaVanese

8 years agoJapanese to JaVanese in jv.js
lunardog [Wed, 27 Jul 2016 04:58:35 +0000 (13:58 +0900)] 
Japanese to JaVanese in jv.js

8 years agoMerge pull request #3322 from pranjalk:develop
Iskren Chernev [Sat, 3 Sep 2016 05:47:34 +0000 (22:47 -0700)] 
Merge pull request #3322 from pranjalk:develop

[misc] Updated Changelog to add release dates

8 years agoUpdate CHANGELOG.md
Pranjal Kumar [Sun, 24 Jul 2016 07:18:03 +0000 (12:48 +0530)] 
Update CHANGELOG.md

Added Release date in the changelog

8 years agoMerge pull request #3317 from Nicolaidavies:patch-1
Iskren Chernev [Sat, 3 Sep 2016 05:45:29 +0000 (22:45 -0700)] 
Merge pull request #3317 from Nicolaidavies:patch-1

[locale] ss: Fix siSwati locale name in comment

8 years agoChange Locale name
Nicolai Davies [Fri, 22 Jul 2016 08:38:45 +0000 (10:38 +0200)] 
Change Locale name

During the cleanup of the comments, the name was changed from siSwati to Swazi.

A Swazi is a person and siSwati is the language.

8 years agoMerge pull request #3312 from sibennayak:fix/3284
Iskren Chernev [Thu, 1 Sep 2016 10:07:55 +0000 (03:07 -0700)] 
Merge pull request #3312 from sibennayak:fix/3284

[bugfix] locales: Enable locale-datnwithout moment ta getters without moment (fixes #3284)

8 years agoDrop unused import
Iskren Chernev [Thu, 1 Sep 2016 10:06:40 +0000 (03:06 -0700)] 
Drop unused import

8 years agoFixed a jscs error
Siben Nayak [Wed, 20 Jul 2016 09:23:25 +0000 (14:53 +0530)] 
Fixed a jscs error

8 years agoAdded Unit tests (refs #3284)
Siben Nayak [Wed, 20 Jul 2016 09:02:29 +0000 (14:32 +0530)] 
Added Unit tests (refs #3284)

8 years agoFix for locale-data without moment (fixes #3284)
Siben Nayak [Tue, 19 Jul 2016 07:57:04 +0000 (13:27 +0530)] 
Fix for locale-data without moment (fixes #3284)

8 years agoMerge pull request #3310 from shakib609:locale_bn_fix
Iskren Chernev [Thu, 1 Sep 2016 10:04:38 +0000 (03:04 -0700)] 
Merge pull request #3310 from shakib609:locale_bn_fix

[locale] bn: Better month and weekday names

8 years agoUpdate some bengali translations
Shakib Hossain [Fri, 12 Aug 2016 06:33:41 +0000 (12:33 +0600)] 
Update some bengali translations

8 years agoMerge pull request #3299 from jorrit:patch-1
Iskren Chernev [Thu, 1 Sep 2016 10:02:38 +0000 (03:02 -0700)] 
Merge pull request #3299 from jorrit:patch-1

[pkg] npm: Do not include .npmignore in npm package

8 years agoRemove npmignore file from npm package
Jorrit Schippers [Tue, 12 Jul 2016 13:28:15 +0000 (15:28 +0200)] 
Remove npmignore file from npm package

8 years agoMerge pull request #3276 from not-an-aardvark:issue3266
Iskren Chernev [Thu, 1 Sep 2016 09:59:48 +0000 (02:59 -0700)] 
Merge pull request #3276 from not-an-aardvark:issue3266

[bugfix] duration: parser: Support ms durations in .NET syntax

8 years agoUse extra duration precision for rounding
not-an-aardvark [Mon, 4 Jul 2016 04:41:11 +0000 (00:41 -0400)] 
Use extra duration precision for rounding

8 years agoEnsure that millisecond durations are parsed from .NET timestamps
not-an-aardvark [Mon, 4 Jul 2016 04:01:32 +0000 (00:01 -0400)] 
Ensure that millisecond durations are parsed from .NET timestamps

(fixes #3266)

8 years agoMerge pull request #3267 from kikoanis:develop
Iskren Chernev [Thu, 1 Sep 2016 09:53:42 +0000 (02:53 -0700)] 
Merge pull request #3267 from kikoanis:develop

[new locale] ar-ly: Arabic (Libya) locale

8 years agoAdd full locale name in comment
Iskren Chernev [Thu, 1 Sep 2016 09:52:44 +0000 (02:52 -0700)] 
Add full locale name in comment

8 years agoUndo changes to component.json
Ali Hmer [Sun, 28 Aug 2016 01:31:29 +0000 (19:31 -0600)] 
Undo changes to component.json

8 years agoremoving ./locale/ar-ly/js
Ali Hmer [Sun, 26 Jun 2016 21:47:58 +0000 (15:47 -0600)] 
removing ./locale/ar-ly/js

8 years agoAdded ar-ly locale test
Ali Hmer [Sun, 26 Jun 2016 21:37:44 +0000 (15:37 -0600)] 
Added ar-ly locale test

8 years agoAdded ar-ly locale test
Ali Hmer [Sun, 26 Jun 2016 21:35:08 +0000 (15:35 -0600)] 
Added ar-ly locale test

8 years agoAdded ar-ly locale
Ali Hmer [Sun, 26 Jun 2016 20:49:56 +0000 (14:49 -0600)] 
Added ar-ly locale

8 years agoMerge pull request #3259 from middagj:fix-nl-parse-month
Iskren Chernev [Thu, 1 Sep 2016 09:39:32 +0000 (02:39 -0700)] 
Merge pull request #3259 from middagj:fix-nl-parse-month

[locale] nl: Parse Dutch abbreviated month name without dot

8 years agoParse Dutch abbreviated month name without dot
Jacob Middag [Wed, 22 Jun 2016 13:16:03 +0000 (15:16 +0200)] 
Parse Dutch abbreviated month name without dot

8 years agoMerge pull request #3255 from johnideal:add-maori
Iskren Chernev [Thu, 1 Sep 2016 09:35:13 +0000 (02:35 -0700)] 
Merge pull request #3255 from johnideal:add-maori

[new locale] mi: Maori language

8 years agoMinor changes
Iskren Chernev [Thu, 1 Sep 2016 09:34:24 +0000 (02:34 -0700)] 
Minor changes

8 years agoadd contact / author info
John Corrigan [Tue, 30 Aug 2016 18:56:13 +0000 (13:56 -0500)] 
add contact / author info

8 years agoadd maori (mi-nz)
John Corrigan [Tue, 21 Jun 2016 17:23:37 +0000 (12:23 -0500)] 
add maori (mi-nz)

8 years agoFix flaky test
Iskren Chernev [Thu, 1 Sep 2016 08:43:53 +0000 (01:43 -0700)] 
Fix flaky test

8 years agoMerge pull request #3055 from ichernev:locale-scripts
Iskren Chernev [Wed, 31 Aug 2016 18:19:43 +0000 (11:19 -0700)] 
Merge pull request #3055 from ichernev:locale-scripts

[misc] locales script

8 years agoAdd find-commenters option to the script
Iskren Chernev [Mon, 21 Mar 2016 03:16:08 +0000 (20:16 -0700)] 
Add find-commenters option to the script

8 years agoInitial version of script for dealing with locale authors
Iskren Chernev [Mon, 21 Mar 2016 01:46:00 +0000 (18:46 -0700)] 
Initial version of script for dealing with locale authors

8 years agoMake sure all locales have authors with github links
Iskren Chernev [Mon, 21 Mar 2016 01:45:43 +0000 (18:45 -0700)] 
Make sure all locales have authors with github links

8 years agoadd license to bower.json 3404/head
Ed [Mon, 29 Aug 2016 22:47:40 +0000 (10:47 +1200)] 
add license to bower.json

8 years agoMerge pull request #3186 from maggiepint/issueTemplates
Maggie Pint [Sat, 27 Aug 2016 21:48:55 +0000 (14:48 -0700)] 
Merge pull request #3186 from maggiepint/issueTemplates

moment issue template

8 years agoAdd more info about nuget setup 3369/head
Iskren Chernev [Mon, 4 Jul 2016 07:51:28 +0000 (00:51 -0700)] 
Add more info about nuget setup

8 years agoBuild 2.14.1 2.14.1
Iskren Chernev [Mon, 4 Jul 2016 06:39:29 +0000 (23:39 -0700)] 
Build 2.14.1