From 47dfbd6740b3cc1593847825701c8aa136f636e3 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Sun, 17 Jan 2016 13:50:07 -0800 Subject: [PATCH] v6.0.2 - revert ES6 and restore compatibility down to node 0.6. --- CHANGELOG.md | 13 ++++++++++++- README.md | 2 +- package.json | 6 +++--- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ee03f27..2df5e9d3 100644 --- a/CHANGELOG.md +++ b/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 diff --git a/README.md b/README.md index 8395bfe4..335eafb4 100644 --- a/README.md +++ b/README.md @@ -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). diff --git a/package.json b/package.json index 0f1de91c..e941ea92 100644 --- a/package.json +++ b/package.json @@ -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" @@ -20,7 +20,7 @@ "qs" ], "engines": { - "node": ">=4.0.0" + "node": ">=0.6" }, "dependencies": {}, "devDependencies": { @@ -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",