Skip to content

Latest commit

 

History

History
111 lines (72 loc) · 3.23 KB

CHANGELOG.md

File metadata and controls

111 lines (72 loc) · 3.23 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Added

  • New alias for persisting into Browser local storage (persistBrowserLocal)
  • New alias for persisting into Browser session storage (persistBrowserSession)
  • New alias for persisting into cookie storage (persistCookie)
  • New storage (wrapper) createEncryptedStorage (Issue#21)
  • Add basic type definitions in README (Issue#19)

Changed

  • Change name of functions that create storage
  • Change the data serializer (Issue#18, Issue#20)
  • (dev) New lib to generate documentation
  • (dev) Validate code style on configuration files

Removed

  • noopStorage() use createNoopStorage() instead
  • localStorage() use createLocalStorage() instead
  • sessionStorage() use createSessionStorage() instead
  • indexedDBStorage() use createIndexedDBStorage() instead

Added

  • Possibility to disable console warnings (Issue#9)
  • undefined value not handled (Issue#11)

Changed

  • Change how data are serialized/deserialized to handle class

Fixed

  • Classes can't be persisted

Changed

  • Changed the Cookie lib to be able to set SameSite (Issue#7, PR#8)
  • (DEV) Update the dependencies

Fixed

  • SyntaxError when the value can't be parsed as a JSON (Issue#3)

Changed

  • Update (dev) dependencies version

Added

  • Add external change listener for SessionStorage and LocalStorage
  • Add documentation
  • Add IndexedDB Storage

Fixed

  • Add protection on global document variable

Added

  • Add noop Storage that do nothing

Fixed

  • Add protection on global window variable

First version