Releases: nixgram/crypto-browser-storage
Releases · nixgram/crypto-browser-storage
Support angular 17
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
- Update README.md by @sefatanam in #15
- user must able to set custom encryption key by @sefatanam in #17
Full Changelog: v2.1.0...v4.0.2
Support angular v16
Full Changelog: v2.1.0...v3.0.0
- For
ng v16.x.x
usenpm i crypto-browser-storage@3.0.0
v2.1.0(20-11-2022)
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)
What's Changed
- 3 resolve dependency resolution err in angular v14 & v15 by @sefatanam in #7
Angular Compatibility Version
- For
ng v12.x.x
usenpm i crypto-browser-storage@1.0.3
- For
ng v14.x.x
usenpm i crypto-browser-storage@1.1.4
- For
ng v15.x.x
usenpm i crypto-browser-storage@2.0.3
Full Changelog: v1.0.0...v2.0.0
v1.0.0(30-10-2021)
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