Socket
Socket
Sign inDemoInstall

q-io

Package Overview
Dependencies
Maintainers
1
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

q-io - npm Package Compare versions

Comparing version 1.10.3 to 1.10.4

CHANGES.md

8

http-apps/fs.js

@@ -10,2 +10,3 @@

var HtmlApps = require("./html");
var Deprecate = require("../deprecate");

@@ -56,3 +57,8 @@ /**

return Q.when(fs.canonical(path), function (canonical) {
if (!fs.contains(root, canonical) && !options.followInsecureSymlinks)
//TODO remove for 2.0.0
if (options.followInsecureSymlinks) {
Deprecate.deprecationWarning("followInsecureSymlinks", "followInsecureSymbolicLinks");
options.followInsecureSymbolicLinks = true;
}
if (!fs.contains(root, canonical) && !options.followInsecureSymbolicLinks)
return options.notFound(request, response);

@@ -59,0 +65,0 @@ if (path !== canonical && options.redirectSymbolicLinks)

2

http.js

@@ -315,3 +315,3 @@ /**

});
});
}).done();

@@ -318,0 +318,0 @@ return deferred.promise;

{
"name": "q-io",
"version": "1.10.3",
"version": "1.10.4",
"description": "IO using Q promises",

@@ -5,0 +5,0 @@ "homepage": "http://github.com/kriskowal/q-io/",

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