Skip to content

Commit 47dfbd6

Browse files
committed
v6.0.2
- revert ES6 and restore compatibility down to node 0.6.
1 parent d89b173 commit 47dfbd6

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

CHANGELOG.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
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.
13

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)
314
- [**#117**](https://github.com/ljharb/qs/issues/117) make URI encoding stringified results optional
415
- [**#106**](https://github.com/ljharb/qs/issues/106) Add flag `skipNulls` to optionally skip null values in stringify
516

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A querystring parsing and stringifying library with some added security.
44

55
[![Build Status](https://api.travis-ci.org/ljharb/qs.svg)](http://travis-ci.org/ljharb/qs)
66

7-
Lead Maintainer: [Nathan LaFreniere](https://github.com/nlf)
7+
Lead Maintainer: [Jordan Harband](https://github.com/ljharb)
88

99
The **qs** module was originally created and maintained by [TJ Holowaychuk](https://github.com/visionmedia/node-querystring).
1010

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "qs",
33
"description": "A querystring parser that supports nesting and arrays, with a depth limit",
44
"homepage": "https://github.com/ljharb/qs",
5-
"version": "6.0.1",
5+
"version": "6.0.2",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/ljharb/qs.git"
@@ -20,7 +20,7 @@
2020
"qs"
2121
],
2222
"engines": {
23-
"node": ">=4.0.0"
23+
"node": ">=0.6"
2424
},
2525
"dependencies": {},
2626
"devDependencies": {
@@ -35,7 +35,7 @@
3535
},
3636
"scripts": {
3737
"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",
3939
"readme": "evalmd README.md",
4040
"lint": "eslint lib/*.js text/*.js",
4141
"coverage": "covert test",

0 commit comments

Comments
 (0)