Skip to content

Commit

Permalink
v6.0.2
Browse files Browse the repository at this point in the history
  - revert ES6 and restore compatibility down to node 0.6.
  • Loading branch information
ljharb committed Jan 17, 2016
1 parent d89b173 commit 47dfbd6
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
@@ -1,5 +1,16 @@
## [**6.0.2**](https://github.com/ljharb/qs/issues?milestone=33&state=closed)
- Revert ES6 requirement and restore support for node down to v0.8.

## [**5.1.0**](https://github.com/ljharb/qs/issues?milestone=29&state=open)
## [**6.0.1**](https://github.com/ljharb/qs/issues?milestone=32&state=closed)
- [**#127**](https://github.com/ljharb/qs/pull/127) Fix engines definition in package.json

## [**6.0.0**](https://github.com/ljharb/qs/issues?milestone=31&state=closed)
- [**#124**](https://github.com/ljharb/qs/issues/124) Use ES6 and drop support for node < v4

## [**5.2.0**](https://github.com/ljharb/qs/issues?milestone=30&state=closed)
- [**#64**](https://github.com/ljharb/qs/issues/64) Add option to sort object keys in the query string

## [**5.1.0**](https://github.com/ljharb/qs/issues?milestone=29&state=closed)
- [**#117**](https://github.com/ljharb/qs/issues/117) make URI encoding stringified results optional
- [**#106**](https://github.com/ljharb/qs/issues/106) Add flag `skipNulls` to optionally skip null values in stringify

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -4,7 +4,7 @@ A querystring parsing and stringifying library with some added security.

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

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

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

Expand Down
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -2,7 +2,7 @@
"name": "qs",
"description": "A querystring parser that supports nesting and arrays, with a depth limit",
"homepage": "https://github.com/ljharb/qs",
"version": "6.0.1",
"version": "6.0.2",
"repository": {
"type": "git",
"url": "https://github.com/ljharb/qs.git"
Expand All @@ -20,7 +20,7 @@
"qs"
],
"engines": {
"node": ">=4.0.0"
"node": ">=0.6"
},
"dependencies": {},
"devDependencies": {
Expand All @@ -35,7 +35,7 @@
},
"scripts": {
"test": "parallelshell 'npm run readme' 'npm run lint' 'npm run coverage'",
"tests-only": "parallelshell 'npm run readme' 'node test'",
"tests-only": "node test",
"readme": "evalmd README.md",
"lint": "eslint lib/*.js text/*.js",
"coverage": "covert test",
Expand Down

0 comments on commit 47dfbd6

Please sign in to comment.