mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Update webapp dependencies
This commit is contained in:
@@ -1,17 +1,17 @@
|
||||
Package.describe({
|
||||
summary: "Serves a Meteor app over HTTP",
|
||||
version: '1.11.1'
|
||||
version: '1.12.0-beta240.0'
|
||||
});
|
||||
|
||||
Npm.depends({"basic-auth-connect": "1.0.0",
|
||||
"cookie-parser": "1.4.3",
|
||||
connect: "3.6.5",
|
||||
compression: "1.7.1",
|
||||
errorhandler: "1.5.0",
|
||||
parseurl: "1.3.2",
|
||||
send: "0.16.1",
|
||||
"stream-to-string": "1.1.0",
|
||||
"qs": "6.4.0",
|
||||
"cookie-parser": "1.4.5",
|
||||
connect: "3.7.0",
|
||||
compression: "1.7.4",
|
||||
errorhandler: "1.5.1",
|
||||
parseurl: "1.3.3",
|
||||
send: "0.17.1",
|
||||
"stream-to-string": "1.2.0",
|
||||
"qs": "6.10.1",
|
||||
useragent: "2.3.0",
|
||||
"@vlasky/whomst": "0.1.6"});
|
||||
|
||||
|
||||
@@ -68,7 +68,7 @@ var sha1 = function (contents) {
|
||||
return hash.digest('hex');
|
||||
};
|
||||
|
||||
function shouldCompress(req, res) {
|
||||
function shouldCompress(req, res) {
|
||||
if (req.headers['x-no-compression']) {
|
||||
// don't compress responses with this request header
|
||||
return false;
|
||||
@@ -76,7 +76,7 @@ var sha1 = function (contents) {
|
||||
|
||||
// fallback to standard filter function
|
||||
return compress.filter(req, res);
|
||||
};
|
||||
}
|
||||
|
||||
// #BrowserIdentification
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user