Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update webapp dependencies #11532

Merged
merged 3 commits into from Jul 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
168 changes: 104 additions & 64 deletions packages/webapp/.npm/package/npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions packages/webapp/package.js
@@ -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"});

Expand Down
4 changes: 2 additions & 2 deletions packages/webapp/webapp_server.js
Expand Up @@ -68,15 +68,15 @@ 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;
}

// fallback to standard filter function
return compress.filter(req, res);
};
}

// #BrowserIdentification
//
Expand Down