- clear all storage keys on platform exception.
- add storage directory path in
LocalStorage.getInstance
method
- make createdAt nullable in Session
This release contains breaking changes
- removed
getCusom
andputCustom
methods useget
andput
withboxName
instead - removed
removeCustom
method useremove
withboxName
instead - renamed
getBoxValues
tovalues
- add
getBox
method to get box instance openBox
method now returnsBox<T>
instead ofvoid
watchKey
now supports custom box
- added
getCustom
andputCustom
methods to get and put custom data in box - added
removeCustom
method to remove custom data from box
- renamed
openCustomBox
toopenBox
- renamed
getCustomList
togetBoxValues
- updated typeId check in
openBox
method
- updated repository url
- added createAt and updatedAt fields in Session
- added
deleteAll
method to delete all boxes from disk - added
filter
parameter inupdate
anddelete
method
- updated
flutter_secure_storage
- removed deprecated methods
- add
clearAll()
method to clear both session and cache box - add custom encryption support for boxes. pass HiveCipher while registering local storage
final storage = LocalStorage.getInstance(customCipher: HiveCipher // custom encryption algorithm,)
/// if you want ot open custom box
storage.openCustomBox( boxName:'box',
typeId:100,
customCipher:HiveCipher // custom encryption algorithm,
);
Breaking Changes
- deprecate
getSession()
useaccessToken
orrefreshToken
getter instead - renamed
saveSession(Session)
tosaveToken(String accessToken,[String? refreshToken])
- onSessionChange now returns
Stream<bool>
instead ofStream<Session?>
- removed redundant jsonDecode for getList
- added watchKey to listen on value changed for key
- added onSessionChange event for session box
- added synchronization
- updated min dart sdk version to 2.18
- updated flutter_secure_storage version
[BREAKING CHANGES]
- refactored adapter registration logic
- updated documentation
[BREAKING CHANGES]
- added support for opening custom boxes
- use encrypted box by default
- added support for adding list (encode/decode data)
- removed expiresIn from Session [Node: uses JWTDecoder to decode and get expiry time]
- added factory constructor to make compatible with riverpod
- added HiveField annotation in session object's fields
- Bug fixes when getting session
- added JwtDecoder
- Removed unnecessary type cast
- added isTokenExpired getter to check whether accessToken is expired or not
- hasSession() method renamed to hasSession getter
- added support for registering custom type adapters
- Breaking Changes
- Methods are renamed for easy understanding
- map getter added to make compatible to CacheStore
- Bug fixes
- updated README.md
- typo fixes
- initial release