Skip to content

Releases: nixgram/crypto-browser-storage

Support angular 17

18 Nov 20:18
Compare
Choose a tag to compare

Breaking Change:

  • We remove static encryption key, from now user able to set their custom encryption key on demand. So from you you have to provide key as bellow (from Angular 17),
providers: [
    ....
    CryptoBrowserStorageService,
    { provide: CRYPTO_HASH_KEY, useValue: 'YOUR_KEY_HERE' }
  ]

What's Changed

Full Changelog: v2.1.0...v4.0.2

Support angular v16

29 Jun 05:11
Compare
Choose a tag to compare

Full Changelog: v2.1.0...v3.0.0

  • For ng v16.x.x use npm i crypto-browser-storage@3.0.0

v2.1.0(20-11-2022)

20 Nov 05:35
7a473d4
Compare
Choose a tag to compare

What's Changed

  • resolved installation failed due to ng-packagr change #9 by @sefatanam in #10

Full Changelog: v2.0.0...v2.1.0

v2.0.0(20-11-2022)

19 Nov 20:29
f4038c5
Compare
Choose a tag to compare

What's Changed

  • 3 resolve dependency resolution err in angular v14 & v15 by @sefatanam in #7

Angular Compatibility Version

  • For ng v12.x.x use npm i crypto-browser-storage@1.0.3
  • For ng v14.x.x use npm i crypto-browser-storage@1.1.4
  • For ng v15.x.x use npm i crypto-browser-storage@2.0.3

Full Changelog: v1.0.0...v2.0.0

v1.0.0(30-10-2021)

19 Nov 20:26
9dab7f4
Compare
Choose a tag to compare

What's Changed

  • Implemented crypto cache functionality
  • implemented jsDoc support #1 by @sefatanam in #2

How to use

  • Use npm i crypto-browser-storage
  • Inject to your component or service as Dependency Injection
  • Then you will be able to access crypto-browser-storage's library functions,
    • setCache
    • getCache
    • removeCacheByKey
    • clearAllCache

Full Changelog: https://github.com/nixgram/crypto-browser-storage/commits/v1.0.0