Skip to content

Latest commit

 

History

History
66 lines (40 loc) · 1.49 KB

CHANGELOG.md

File metadata and controls

66 lines (40 loc) · 1.49 KB

CHANGELOG

4.0.8

  • Simply replace \ to / rather than using Uri when parsing a storage base directory.

4.0.7

  • Allow to configure whether to delete host cookies when load failed.
  • Fix directory parsing for the file storage.
  • Add WebCookieJar to convenient Web usages instead of throwing exceptions.

4.0.5

  • Fixed problem with returning false if cookiePath end with '/'.

4.0.4

  • Export Cookie from universal_io.

4.0.3

  • Fix runtime type cast exception.

4.0.2

  • Use universal_io to handle imports. This also bumps the minimum required SDK version to 2.15.0.

4.0.1

  • Clean codes and update documents.
  • Support to compile on Web.

4.0.0

  • Preserve all cookies that with same name but in different paths when request (as Chrome acts). For example, in request header: Cookie: a=1; a=2; a=3. Note: Cookies with same name will be sorted by path (longer path first) when return (List<Cookie> that loadForRequest returned).
  • Fix path and domain match error (#30)
  • Fix #31: Use the "directory" of request-uri as default path if there is no 'Path' component in Set-Cookie line (in 3.x, used root '/', it is not standard).

3.0.1

  • refactor

3.0.0

  • Change all APIs to async
  • Add deletedeleteAll APIs in CookieJar class.
  • Support custom cookie persistent storage。

2.0.1

  • support nullsafety

1.0.1

  • add forceInit method for PersistCookieJar
  • handle cookie name conflicts

0.0.1

  • Initial version, created by Stagehand