Closed alexcorre closed 7 years ago
Thanks for the fix! I'll try to get this merged/published tonight.
Thanks @mac- for merging. I see you released 3.0.0 to npm, but neglected to push the version bump and tag to github. Hard to verify that the release contains my fix without installing.
Are you planning to update github with the release version bump + tag?
Thanks!
yeah sorry... I'll get those pushed as well
Core node module
querystring
was updated in Node v6 to return plain objects that do not prototypically extend from the JavaScriptObject
.According to the Node docs:
See Node.js PR here: https://github.com/nodejs/node/pull/6055
breaking changes list for v5-v6: https://github.com/nodejs/node/wiki/Breaking-changes-between-v5-and-v6#querystring
As a result of this change, this packages validation of parsed query strings throws an error on this line when the var
object
is a parsed query string:https://github.com/mac-/ratify/blob/master/lib/RouteSchemaManager.js#L117