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 3.3.1 to 3.3.2

14

History.md

@@ -0,1 +1,6 @@

3.3.2 / 2014-10-28
==================
* Fix handling of URLs containing `://` in the path
3.3.1 / 2014-10-22

@@ -83,2 +88,11 @@ ==================

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

@@ -85,0 +99,0 @@ ===================

2

lib/proto.js

@@ -86,3 +86,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)) : ''

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

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

@@ -6,0 +6,0 @@ "contributors": [

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