PascalPlantey
PascalPlantey
Not working for me. I've set ```JS "overrides": { "cookie": "0.6.0" }, ``` in package.json, and checked that the deployed production cookie version is 0.6.0 in node modules. I'm using...
@vojvodics I'm using 'express' 4.15.2 and express-session 1.17.1, and I think the cookie.js in express-session should not hide the partitioned attribute: ```JS var Cookie = module.exports = function Cookie(options) {...
@vojvodics you are correct, I found some code below in the source, suppressing the `partitioned` attribute ```JS get data() { return { originalMaxAge: this.originalMaxAge , expires: this._expires , secure: this.secure...