Skip to content

Releases: bohoffi/ngx-localstorage

6.0.0

10 Mar 13:08
Compare
Choose a tag to compare

🚀 Features

  • add support for formControl (68406fc)
  • expose library version token (8040c85)

BREAKING CHANGES

❤️ Thank You

5.1.0

28 Oct 19:30
Compare
Choose a tag to compare

Features

5.0.0

15 Mar 11:05
19f2a81
Compare
Choose a tag to compare

Features

  • add Angular Standalone API support (5860a59)
    • add helper function for providers (c06532c)
    • add features for provider function (cb67459)

BREAKING CHANGES

  • remove PromisableService (1217023)
  • remove deprecated overloads (7b9b733)

Full Changelog: 4.0.0...5.0.0

4.0.0

24 Oct 12:29
Compare
Choose a tag to compare

Features

  • subscibe directly to LocalStorageService to obtain StorageEvent stream (9125a8b)
  • library errors will be emitted through service stream (c34359b)
  • abort initialization when storage is not available (13d68ee)
  • expose STORAGE_SUPPORT token (4f2659d)
    • check storage availability before actually using the library
  • add serializer to decorator options (defaults to DefaultSerializer) (57f00ca)
  • use DefaultSerializer by default (3e77633)

BREAKING CHANGES

  • library now utilizes SCAM (6ee4690)
    • removed NgxLocalStorageModule
    • added NgxLocalstorageDirectiveModule
    • Configuration has to be provided by InjectionToken
  • update configuration and decorator options (0d36315)
    • removed storage: Storage
    • added storageType: 'localStorage' | 'sessionStorage'
  • removed StorageEventService (9125a8b)
    • Storage events can now bo obtained by subscribing to LocalStorageService directily via subscribe
  • update properties in LocalStorageDirective(c3b7d48)
    • remove ls prefix
  • drop decorator support in favor of directive (2681110)

Full Changelog: 3.5.0...4.0.0

3.5.0

23 Oct 18:02
Compare
Choose a tag to compare

Features

  • Update to Ivy compatibility

Full Changelog: 3.4.0...3.5.0

3.4.0

16 Jul 10:37
Compare
Choose a tag to compare

Features

3.3.1

07 May 14:05
fdad293
Compare
Choose a tag to compare

Bug fixes

  • StorageService
    • incorrect remove call in set with nullish value (#40)

3.3.0

26 Feb 18:10
Compare
Choose a tag to compare

Features

  • Service
    • Adds the possibility to use sessionstorage instead of localstorage (thanks to @vladimirstempel)
      • default storage will stay localstorage
      • set via module configuration

3.2.1

06 Nov 14:31
Compare
Choose a tag to compare

Bug fixes

  • Module
    • add support for submodules and lazy-loaded submodules (#32)

3.2.0

06 Oct 18:58
Compare
Choose a tag to compare

Features

  • Framework
    • Updates compatibility to Angular v10.x