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.0.0-rc.2 to 3.0.0

94

History.md

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

3.0.0 / 2014-05-29
==================
* No changes
3.0.0-rc.2 / 2014-05-04

@@ -21,2 +26,91 @@ =======================

2.18.0 / 2014-05-29
===================
* deps: compression@1.0.3
* deps: serve-static@1.1.0
- Fix content negotiation when no `Accept` header
- Properly support all HTTP methods
- Support vanilla node.js http servers
- Treat `ENAMETOOLONG` as code 414
- Use accepts for negotiation
* deps: serve-static@1.2.0
- Calculate ETag with md5 for reduced collisions
- Fix wrong behavior when index file matches directory
- Ignore stream errors after request ends
- Skip directories in index file search
- deps: send@0.4.0
2.17.3 / 2014-05-27
===================
* deps: express-session@1.2.1
- Fix `resave` such that `resave: true` works
2.17.2 / 2014-05-27
===================
* deps: body-parser@1.2.2
- invoke `next(err)` after request fully read
- deps: raw-body@1.1.6
* deps: method-override@1.0.2
- Handle `req.body` key referencing array or object
- Handle multiple HTTP headers
2.17.1 / 2014-05-21
===================
* fix `res.charset` appending charset when `content-type` has one
2.17.0 / 2014-05-20
===================
* deps: express-session@1.2.0
- Add `resave` option to control saving unmodified sessions
* deps: morgan@1.1.1
- "dev" format will use same tokens as other formats
- `:response-time` token is now empty when immediate used
- `:response-time` token is now monotonic
- `:response-time` token has precision to 1 μs
- fix `:status` + immediate output in node.js 0.8
- improve `buffer` option to prevent indefinite event loop holding
- simplify method to get remote address
- deps: bytes@1.0.0
* deps: serve-index@1.0.3
- Fix error from non-statable files in HTML view
2.16.2 / 2014-05-18
===================
* fix edge-case in `res.appendHeader` that would append in wrong order
* deps: method-override@1.0.1
2.16.1 / 2014-05-17
===================
* remove usages of `res.headerSent` from core
2.16.0 / 2014-05-17
===================
* deprecate `res.headerSent` -- use `res.headersSent`
* deprecate `res.on("header")` -- use on-headers module instead
* fix `connect.version` to reflect the actual version
* json: use body-parser
- add `type` option
- fix repeated limit parsing with every request
- improve parser speed
* urlencoded: use body-parser
- add `type` option
- fix repeated limit parsing with every request
* dep: bytes@1.0.0
* add negative support
* dep: cookie-parser@1.1.0
- deps: cookie@0.1.2
* dep: csurf@1.2.0
- add support for double-submit cookie
* dep: express-session@1.1.0
- Add `name` option; replacement for `key` option
- Use `setImmediate` in MemoryStore for node.js >= 0.10
2.15.0 / 2014-05-04

@@ -23,0 +117,0 @@ ===================

34

package.json
{
"name": "connect",
"version": "3.0.0-rc.2",
"version": "3.0.0",
"description": "High performance middleware framework",
"author": "TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)",
"contributors": [
{
"name": "Douglas Christopher Wilson",
"email": "doug@somethingdoug.com"
},
{
"name": "Jonathan Ong",
"email": "me@jongleberry.com"
},
{
"name": "Tim Caswell",
"email": "tim@creationix.com"
}
],
"keywords": [

@@ -13,3 +28,2 @@ "framework",

"repository": "git://github.com/senchalabs/connect.git",
"author": "TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)",
"dependencies": {

@@ -22,12 +36,8 @@ "debug": "0.8.1",

"devDependencies": {
"mocha": "~1.18.2",
"should": "~3.3.0",
"istanbul": "0.2.10",
"mocha": "~1.19.0",
"should": "~3.3.1",
"supertest": "~0.12.0"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/senchalabs/connect/master/LICENSE"
}
],
"license": "MIT",
"engines": {

@@ -37,4 +47,6 @@ "node": ">= 0.10.0"

"scripts": {
"test": "mocha --reporter spec"
"test": "mocha --require test/support/env --reporter dot",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec"
}
}

@@ -1,2 +0,2 @@

# Connect [![Build Status](https://travis-ci.org/senchalabs/connect.svg?branch=master)](https://travis-ci.org/senchalabs/connect) [![NPM version](https://badge.fury.io/js/connect.svg)](http://badge.fury.io/js/connect)
# Connect [![NPM version](https://badge.fury.io/js/connect.svg)](http://badge.fury.io/js/connect) [![Build Status](https://travis-ci.org/senchalabs/connect.svg?branch=master)](https://travis-ci.org/senchalabs/connect) [![Coverage Status](https://img.shields.io/coveralls/senchalabs/connect.svg)](https://coveralls.io/r/senchalabs/connect)

@@ -3,0 +3,0 @@ Connect is an extensible HTTP server framework for [node](http://nodejs.org) using "plugins" known as _middleware_.

Sorry, the diff of this file is not supported yet

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