4 * Add `SameSite=None` support
9 * Fix `sameSite: true` to work with draft-7 clients
10 - `true` now sends `SameSite=Strict` instead of `SameSite`
15 * Add `sameSite` option
16 - Replaces `firstPartyOnly` option, never implemented by browsers
17 * Improve error message when `encode` is not a function
18 * Improve error message when `expires` is not a `Date`
23 * perf: enable strict mode
24 * perf: use for loop in parse
25 * perf: use string concatination for serialization
30 * Fix cookie `Max-Age` to never be a floating point number
35 * Fix regression when setting empty cookie value
36 - Ease the new restriction, which is just basic header-level validation
37 * Fix typo in invalid value errors
42 * Throw on invalid values provided to `serialize`
43 - Ensures the resulting string is a valid HTTP header value
48 * Add `firstPartyOnly` option
49 * Throw better error for invalid argument to parse
50 * perf: hoist regular expression
55 * Fix regression when setting empty cookie value
56 - Ease the new restriction, which is just basic header-level validation
57 * Fix typo in invalid value errors
62 * Throw better error for invalid argument to parse
63 * Throw on invalid values provided to `serialize`
64 - Ensures the resulting string is a valid HTTP header value
69 * Reduce the scope of try-catch deopt
70 * Remove argument reassignments
75 * Remove unnecessary files from npm package
80 * Fix bad parse when cookie value contained a comma
81 * Fix support for `maxAge` of `0`
92 * Ignore cookie parts missing `=`
97 * Return raw cookie value if value unescape errors
102 * Use encode/decodeURIComponent for cookie encoding/decoding
103 - Improve server/client interoperability
108 * Only escape special characters per the cookie RFC
113 * Fix `maxAge` option to not throw error