Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

HISTORY.md 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. 0.3.1 / 2016-05-26
  2. ==================
  3. * Fix `sameSite: true` to work with draft-7 clients
  4. - `true` now sends `SameSite=Strict` instead of `SameSite`
  5. 0.3.0 / 2016-05-26
  6. ==================
  7. * Add `sameSite` option
  8. - Replaces `firstPartyOnly` option, never implemented by browsers
  9. * Improve error message when `encode` is not a function
  10. * Improve error message when `expires` is not a `Date`
  11. 0.2.4 / 2016-05-20
  12. ==================
  13. * perf: enable strict mode
  14. * perf: use for loop in parse
  15. * perf: use string concatination for serialization
  16. 0.2.3 / 2015-10-25
  17. ==================
  18. * Fix cookie `Max-Age` to never be a floating point number
  19. 0.2.2 / 2015-09-17
  20. ==================
  21. * Fix regression when setting empty cookie value
  22. - Ease the new restriction, which is just basic header-level validation
  23. * Fix typo in invalid value errors
  24. 0.2.1 / 2015-09-17
  25. ==================
  26. * Throw on invalid values provided to `serialize`
  27. - Ensures the resulting string is a valid HTTP header value
  28. 0.2.0 / 2015-08-13
  29. ==================
  30. * Add `firstPartyOnly` option
  31. * Throw better error for invalid argument to parse
  32. * perf: hoist regular expression
  33. 0.1.5 / 2015-09-17
  34. ==================
  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
  38. 0.1.4 / 2015-09-17
  39. ==================
  40. * Throw better error for invalid argument to parse
  41. * Throw on invalid values provided to `serialize`
  42. - Ensures the resulting string is a valid HTTP header value
  43. 0.1.3 / 2015-05-19
  44. ==================
  45. * Reduce the scope of try-catch deopt
  46. * Remove argument reassignments
  47. 0.1.2 / 2014-04-16
  48. ==================
  49. * Remove unnecessary files from npm package
  50. 0.1.1 / 2014-02-23
  51. ==================
  52. * Fix bad parse when cookie value contained a comma
  53. * Fix support for `maxAge` of `0`
  54. 0.1.0 / 2013-05-01
  55. ==================
  56. * Add `decode` option
  57. * Add `encode` option
  58. 0.0.6 / 2013-04-08
  59. ==================
  60. * Ignore cookie parts missing `=`
  61. 0.0.5 / 2012-10-29
  62. ==================
  63. * Return raw cookie value if value unescape errors
  64. 0.0.4 / 2012-06-21
  65. ==================
  66. * Use encode/decodeURIComponent for cookie encoding/decoding
  67. - Improve server/client interoperability
  68. 0.0.3 / 2012-06-06
  69. ==================
  70. * Only escape special characters per the cookie RFC
  71. 0.0.2 / 2012-06-01
  72. ==================
  73. * Fix `maxAge` option to not throw error
  74. 0.0.1 / 2012-05-28
  75. ==================
  76. * Add more tests
  77. 0.0.0 / 2012-05-28
  78. ==================
  79. * Initial release