Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
dougwilson committed Jul 1, 2017
1 parent 48777dc commit deffce5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
unreleased
==========

* deps: [email protected]

4.15.3 / 2017-05-16
===================

Expand Down
3 changes: 2 additions & 1 deletion lib/middleware/query.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* Module dependencies.
*/

var merge = require('utils-merge')
var parseUrl = require('parseurl');
var qs = require('qs');

Expand All @@ -22,7 +23,7 @@ var qs = require('qs');
*/

module.exports = function query(options) {
var opts = Object.create(options || null);
var opts = merge({}, options)
var queryparse = qs.parse;

if (typeof options === 'function') {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"parseurl": "~1.3.1",
"path-to-regexp": "0.1.7",
"proxy-addr": "~1.1.4",
"qs": "6.4.0",
"qs": "6.5.0",
"range-parser": "~1.2.0",
"send": "0.15.3",
"serve-static": "1.12.3",
Expand Down

0 comments on commit deffce5

Please sign in to comment.