All Versions
11
Latest Version
Avg Release Cycle
112 days
Latest Release
2488 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v2.0.1 Changes
April 03, 20182.0.1
- โก๏ธ Conceal is updated, with the new version the size is way smaller
2.0.0
- ๐ Rx support is removed
- ๐ Chain option is removed
- Facebook conceal is added as crypto provider
- ๐ Async operations are removed
- ๐ EncryptionMethod is removed, as default it's encrypted and fallback to no encryption mode if the crypto is not available
- NoEncryption option is available through setEncryption out of box
- ๐ LogLevel is removed. All log messages are delegated to LogInterceptor, thus you can intercept and print it. Otherwise all log messages will be ignored.
- ๐ All abstraction layers are pluggable. (Converter, Parser, Encryption, Serializer, Storage)
- ๐ Sqlite option is removed.
- Init is super fast now, no need to async operation.
-
v2.0.0-Alpha Changes
- ๐ Rx support is removed
- ๐ Chain option is removed
- Facebook conceal is added as crypto provider
- ๐ Async operations are removed
- ๐ EncryptionMethod is removed, as default it's encrypted and fallback to no encryption mode if the crypto is not available
- NoEncryption option is available through setEncryption out of box
- ๐ LogLevel is removed. All log messages are delegated to LogInterceptor, thus you can intercept and print it. Otherwise all log messages will be ignored.
- ๐ All abstraction layers are pluggable. (Converter, Parser, Encryption, Serializer, Storage)
- ๐ Sqlite option is removed.
- Init is super fast now, no need to async operation.
-
v1.23 Changes
April 05, 2016- db connections are closed in finally block
-
v1.22 Changes
January 24, 2016- ๐จ Refactoring
- ๐ Old data support is removed
- ๐ setCallback is removed, build method accepts callback now.
-
v1.21 Changes
December 17, 2015- ๐ static variables are removed
- isBuilt() function is introduced, you can use this function to determine whether Hawk is initialised or not before using.
-
v1.20 Changes
September 16, 2015- ๐ Parser is public now.
-
v1.19 Changes
September 15, 2015- ๐ setParser is added
- ๐ buildRx is no longer predefines subscribeOn and observeOn, this needs to be done in the caller
- ๐จ refactoring
-
v1.18 Changes
August 07, 2015- inner class serialization fix
- ๐ Hawk.buildRx() added
-
v1.17 Changes
July 18, 2015HawkBuilder introduced, Hawk.init is radically changed
Hawk.init(this) .setEncryptionMethod(HawkBuilder.EncryptionMethod.HIGHEST) .setPassword("password") .setStorage(HawkBuilder.newSqliteStorage(this)) .setLogLevel(LogLevel.FULL) .setCallback //optional .build();
Storage option added, Sqlite or sharedpreferences
-
v1.16 Changes
July 15, 2015- ๐ Rx support added for put and get