From 041cfbc3479c68d23f7cf5d7deba39c2e5a2c8c4 Mon Sep 17 00:00:00 2001 From: Shivan Kaul Sahib Date: Thu, 19 Mar 2020 15:31:52 -0700 Subject: [PATCH 1/2] Create CHANGELOG.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Better late than never 😄 --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..6e21ae12 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +## 4.0.0 + +- SameSite cookie support +- Cookie prefix support +- Support for promises +- Use ESLint and Prettier to apply consistent, modern formatting +- '.local' support +- Numerous bug fixes! From 2342275a763e582fc97647ccb0bb6ff609d8b69f Mon Sep 17 00:00:00 2001 From: Shivan Date: Thu, 26 Mar 2020 21:00:21 -0700 Subject: [PATCH 2/2] Add major/minor split --- CHANGELOG.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e21ae12..5328f244 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,21 @@ All notable changes to this project will be documented in this file. ## 4.0.0 +### Breaking Changes (Major Version) + +- Modernized JS Syntax + - Use ESLint and Prettier to apply consistent, modern formatting (add dependency on `universalify`, `eslint` and `prettier`) +- Upgraded version dependencies for `psl` and `async` +- Re-order parameters for `findCookies()` - callback fn has to be last in order to comply with `universalify` +- Use Classes instead of function prototypes to define classes + - Might break people using `.call()` to do inheritance using function prototypes + +### Minor Changes - SameSite cookie support - Cookie prefix support - Support for promises -- Use ESLint and Prettier to apply consistent, modern formatting - '.local' support - Numerous bug fixes! + + +