Releases: jshttp/cookie
Releases Β· jshttp/cookie
v1.1.1
v1.1.0
v1.0.2
Fixed
- Loosen cookie name/value validation (#210)
- fix:
options.priorityused incorrect fallback (#207) by @jonchurch
Added
v1.0.1
v1.0.0
Breaking changes
- Use modern JS features, ship TypeScript definition (#175) 1cc64ff
- Adds
__esModulemarker, imports need to useimport { parse, serialize }orimport * as cookie
- Adds
- Minimum node.js v18
- Uses null prototype object for
parsereturn value - Changes
strictandpriorityto match the lower case strings (i.e.low, notLOWorLow) - Require
maxAgeto be an integer usingNumber.isIntegercheck - Delegates decode implementation details to
decodeoption (i.e. error handling and quote parsing is defined bydecode) - Improve arg/option error messages (#162) e206fd5 @MaoShizhong
Other
- Remove
hasOwnProperty, useundefinedcheck for performance (#183) 8f3ee9e @gurgunday
v0.7.2
0.7.1
0.7.0
- perf: parse cookies ~10% faster (#144 by @kurtextrem and #170)
- fix: narrow the validation of cookies to match RFC6265 (#167 by @bewinsnw)
- fix: add
maintopackage.jsonfor rspack (#166 by @proudparrot2)
0.6.0
- Add
partitionedoption
0.5.0
- Add
priorityoption - Fix
expiresoption to reject invalid dates - pref: improve default decode speed
- pref: remove slow string split in parse