Comparing version 0.2.2 to 0.2.3
@@ -0,1 +1,6 @@ | ||
0.2.3 / 2015-10-25 | ||
================== | ||
* Fix cookie `Max-Age` to never be a floating point number | ||
0.2.2 / 2015-09-17 | ||
@@ -2,0 +7,0 @@ ================== |
@@ -117,3 +117,3 @@ /*! | ||
if (isNaN(maxAge)) throw new Error('maxAge should be a Number'); | ||
pairs.push('Max-Age=' + maxAge); | ||
pairs.push('Max-Age=' + Math.floor(maxAge)); | ||
} | ||
@@ -120,0 +120,0 @@ |
{ | ||
"name": "cookie", | ||
"description": "cookie parsing and serialization", | ||
"version": "0.2.2", | ||
"version": "0.2.3", | ||
"author": "Roman Shtylman <shtylman@gmail.com>", | ||
@@ -16,3 +16,3 @@ "contributors": [ | ||
"devDependencies": { | ||
"istanbul": "0.3.20", | ||
"istanbul": "0.3.22", | ||
"mocha": "1.21.5" | ||
@@ -19,0 +19,0 @@ }, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
9648