Commit b46c47b 1 parent d89b173 commit b46c47b Copy full SHA for b46c47b
File tree 3 files changed +15
-4
lines changed
3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change
1
+ ## [ ** 6.0.2** ] ( https://github.com/ljharb/qs/issues?milestone=33&state=closed )
2
+ - Revert ES6 requirement and restore support for node down to v0.8.
1
3
2
- ## [ ** 5.1.0** ] ( https://github.com/ljharb/qs/issues?milestone=29&state=open )
4
+ ## [ ** 6.0.1** ] ( https://github.com/ljharb/qs/issues?milestone=32&state=closed )
5
+ - [ ** #127 ** ] ( https://github.com/ljharb/qs/pull/127 ) Fix engines definition in package.json
6
+
7
+ ## [ ** 6.0.0** ] ( https://github.com/ljharb/qs/issues?milestone=31&state=closed )
8
+ - [ ** #124 ** ] ( https://github.com/ljharb/qs/issues/124 ) Use ES6 and drop support for node < v4
9
+
10
+ ## [ ** 5.2.0** ] ( https://github.com/ljharb/qs/issues?milestone=30&state=closed )
11
+ - [ ** #64 ** ] ( https://github.com/ljharb/qs/issues/64 ) Add option to sort object keys in the query string
12
+
13
+ ## [ ** 5.1.0** ] ( https://github.com/ljharb/qs/issues?milestone=29&state=closed )
3
14
- [ ** #117 ** ] ( https://github.com/ljharb/qs/issues/117 ) make URI encoding stringified results optional
4
15
- [ ** #106 ** ] ( https://github.com/ljharb/qs/issues/106 ) Add flag ` skipNulls ` to optionally skip null values in stringify
5
16
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ A querystring parsing and stringifying library with some added security.
4
4
5
5
[ ![ Build Status] ( https://api.travis-ci.org/ljharb/qs.svg )] ( http://travis-ci.org/ljharb/qs )
6
6
7
- Lead Maintainer: [ Nathan LaFreniere ] ( https://github.com/nlf )
7
+ Lead Maintainer: [ Jordan Harband ] ( https://github.com/ljharb )
8
8
9
9
The ** qs** module was originally created and maintained by [ TJ Holowaychuk] ( https://github.com/visionmedia/node-querystring ) .
10
10
Original file line number Diff line number Diff line change 20
20
" qs"
21
21
],
22
22
"engines" : {
23
- "node" : " >=4.0.0 "
23
+ "node" : " >=0.6 "
24
24
},
25
25
"dependencies" : {},
26
26
"devDependencies" : {
35
35
},
36
36
"scripts" : {
37
37
"test" : " parallelshell 'npm run readme' 'npm run lint' 'npm run coverage'" ,
38
- "tests-only" : " parallelshell 'npm run readme' ' node test' " ,
38
+ "tests-only" : " node test" ,
39
39
"readme" : " evalmd README.md" ,
40
40
"lint" : " eslint lib/*.js text/*.js" ,
41
41
"coverage" : " covert test" ,
You can’t perform that action at this time.
0 commit comments