@stringtale/express
Advanced tools
Comparing version 0.5.4 to 0.5.5
# @stringtale/express | ||
## 0.5.5 | ||
### Patch Changes | ||
- 113edc3: Add secure to cookies | ||
## 0.5.4 | ||
@@ -4,0 +10,0 @@ |
@@ -62,3 +62,4 @@ "use strict"; | ||
cookie.serialize("stringtale-token", token, { | ||
httpOnly: true | ||
httpOnly: true, | ||
secure: true | ||
}) | ||
@@ -74,3 +75,4 @@ ); | ||
httpOnly: true, | ||
maxAge: 0 | ||
maxAge: 0, | ||
secure: true | ||
}) | ||
@@ -77,0 +79,0 @@ ); |
{ | ||
"name": "@stringtale/express", | ||
"version": "0.5.4", | ||
"version": "0.5.5", | ||
"main": "index.js", | ||
@@ -5,0 +5,0 @@ "types": "index.d.ts", |
13135
154