Ember Cookies Versions Save

Cookies abstraction for Ember.js that works both in the browser as well as with Fastboot on the server

v1.1.2

4 months ago

What's Changed

:bug: Fix

:house: Misc

Full Changelog: https://github.com/mainmatter/ember-cookies/compare/v1.1.1...v1.1.2

v1.1.1

7 months ago

What's Changed

Full Changelog: https://github.com/mainmatter/ember-cookies/compare/v1.1.0...v1.1.1

v1.1.0-re-release.2

7 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/mainmatter/ember-cookies/compare/v1.0.0...v1.1.0

v1.0.0

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/mainmatter/ember-cookies/compare/0.5.2...1.0.0

0.5.2

4 years ago
  • A bug was fixed that prevented usage in projects that are not using FastBoot, see #347.

0.5.1

4 years ago
  • The write function now supports the sameSite option with values of 'Strict' or 'Lax', see #269.

0.5.0

4 years ago
  • ember-cookies now requires Node 8, see #321.
  • The default cookie path is now normalized to not include a trailing slash (as appended e.g. by Firefox), see #169.
  • The clearAllCookies helper function now accepts the path, domain and secure options, see #197.

0.4.0

5 years ago
  • The httpOnly option can now be specified for cookies that are set in FastBoot, see #194.
  • A bug that would not replace an existing cookie but set it multiple times with different values when calling write multiple times with different values in FastBoot was fixed, see #195.
  • An invokation of merge that was triggering a deprecation was removed, see #204.
  • Usages of the volatile computed property modified that were triggering deprecations were removed, see #207.
  • Cookies with = in the value are now correctly read, see #201.
  • ember-cookies now uses Babel 7, see #192.

0.3.1

5 years ago
  • A bug that prevented cookies from being read from the request header correctly in FastBoot if another cookie had been written before was fixed, see #181.

0.3.0

6 years ago
  • When writing a cookie, the written value is now checked to not exceed 4096 bytes, see #159.