Socket
Socket
Sign inDemoInstall

connect

Package Overview
Dependencies
Maintainers
4
Versions
234
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

connect - npm Package Compare versions

Comparing version 2.27.1 to 2.27.2

9

History.md

@@ -0,1 +1,10 @@

2.27.2 / 2014-10-28
===================
* Fix handling of URLs containing `://` in the path
* deps: body-parser@~1.9.2
- deps: qs@2.3.2
* deps: qs@2.3.2
- Fix parsing of mixed objects and values
2.27.1 / 2014-10-22

@@ -2,0 +11,0 @@ ===================

2

lib/proto.js

@@ -106,3 +106,3 @@ /*!

, pathlength = searchIndex !== -1 ? searchIndex : req.url.length
, fqdn = 1 + req.url.substr(0, pathlength).indexOf('://')
, fqdn = req.url[0] !== '/' && 1 + req.url.substr(0, pathlength).indexOf('://')
, protohost = fqdn ? req.url.substr(0, req.url.indexOf('/', 2 + fqdn)) : ''

@@ -109,0 +109,0 @@ , removed = ''

{
"name": "connect",
"description": "High performance middleware framework",
"version": "2.27.1",
"version": "2.27.2",
"author": "TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)",

@@ -21,3 +21,3 @@ "contributors": [

"basic-auth-connect": "1.0.0",
"body-parser": "~1.9.1",
"body-parser": "~1.9.2",
"bytes": "1.0.0",

@@ -43,3 +43,3 @@ "cookie": "0.1.2",

"parseurl": "~1.3.0",
"qs": "2.3.0",
"qs": "2.3.2",
"response-time": "~2.2.0",

@@ -46,0 +46,0 @@ "serve-favicon": "~2.1.6",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc