Skip to content

Commit a52925a

Browse files
committed
1.0.13
1 parent 97d9e0a commit a52925a

File tree

4 files changed

+27
-5
lines changed

4 files changed

+27
-5
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,28 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [1.0.13](https://github.com/fmenezes/json-stringify-date/compare/1.0.12...1.0.13)
8+
9+
> 14 October 2022
10+
11+
- Merge npm publish with github release [`#134`](https://github.com/fmenezes/json-stringify-date/pull/134)
12+
- Bump mocha from 9.2.2 to 10.0.0 [`#126`](https://github.com/fmenezes/json-stringify-date/pull/126)
13+
- Update node versions [`#133`](https://github.com/fmenezes/json-stringify-date/pull/133)
14+
- Bump shell-quote from 1.7.2 to 1.7.3 [`#127`](https://github.com/fmenezes/json-stringify-date/pull/127)
15+
- Bump jshint from 2.13.4 to 2.13.5 [`#130`](https://github.com/fmenezes/json-stringify-date/pull/130)
16+
- Bump moment from 2.29.3 to 2.29.4 [`#131`](https://github.com/fmenezes/json-stringify-date/pull/131)
17+
- Bump actions/setup-node from 3.2.0 to 3.5.0 [`#132`](https://github.com/fmenezes/json-stringify-date/pull/132)
18+
- Ability to set a custom function for checking dates [`#125`](https://github.com/fmenezes/json-stringify-date/pull/125)
19+
- Bump actions/setup-node from 2.4.1 to 3.2.0 [`#124`](https://github.com/fmenezes/json-stringify-date/pull/124)
20+
- Bump moment from 2.29.1 to 2.29.3 [`#121`](https://github.com/fmenezes/json-stringify-date/pull/121)
21+
- Bump mocha from 9.1.3 to 9.2.2 [`#117`](https://github.com/fmenezes/json-stringify-date/pull/117)
22+
- Bump auto-changelog from 2.3.0 to 2.4.0 [`#115`](https://github.com/fmenezes/json-stringify-date/pull/115)
23+
- Bump jshint from 2.13.1 to 2.13.4 [`#111`](https://github.com/fmenezes/json-stringify-date/pull/111)
24+
- Bump actions/checkout from 2 to 3 [`#116`](https://github.com/fmenezes/json-stringify-date/pull/116)
25+
- Bump github/codeql-action from 1 to 2 [`#120`](https://github.com/fmenezes/json-stringify-date/pull/120)
26+
- Bump node-fetch from 2.6.6 to 2.6.7 [`#123`](https://github.com/fmenezes/json-stringify-date/pull/123)
27+
- Bump cached-path-relative from 1.0.2 to 1.1.0 [`#110`](https://github.com/fmenezes/json-stringify-date/pull/110)
28+
729
#### [1.0.12](https://github.com/fmenezes/json-stringify-date/compare/1.0.11...1.0.12)
830

931
> 19 November 2021

browser.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ module.exports = (function () {
6363

6464
},{"moment":2}],2:[function(require,module,exports){
6565
//! moment.js
66-
//! version : 2.29.3
66+
//! version : 2.29.4
6767
//! authors : Tim Wood, Iskren Chernev, Moment.js contributors
6868
//! license : MIT
6969
//! momentjs.com
@@ -2518,7 +2518,7 @@ module.exports = (function () {
25182518
function preprocessRFC2822(s) {
25192519
// Remove comments and folding whitespace and replace multiple-spaces with a single space
25202520
return s
2521-
.replace(/\([^)]*\)|[\n\t]/g, ' ')
2521+
.replace(/\([^()]*\)|[\n\t]/g, ' ')
25222522
.replace(/(\s\s+)/g, ' ')
25232523
.replace(/^\s\s*/, '')
25242524
.replace(/\s\s*$/, '');
@@ -5699,7 +5699,7 @@ module.exports = (function () {
56995699

57005700
//! moment.js
57015701

5702-
hooks.version = '2.29.3';
5702+
hooks.version = '2.29.4';
57035703

57045704
setHookCallback(createLocal);
57055705

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "json-stringify-date",
3-
"version": "1.0.12",
3+
"version": "1.0.13",
44
"description": "Like JSON.stringify, but preserve timezones in date objects and parse dates into Date object",
55
"main": "index.js",
66
"browser": "browser.js",

0 commit comments

Comments
 (0)