Skip to content

Releases: orhanobut/hawk

2.0.1

03 Apr 13:09
0d22dde
Compare
Choose a tag to compare

2.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.

v1.23 release

05 Apr 13:31
Compare
Choose a tag to compare
  • db connections are closed in finally block

v1.22 release

24 Jan 18:40
Compare
Choose a tag to compare
  • Refactoring
  • Old data support is removed
  • setCallback is removed, build method accepts callback now.

1.21 release

17 Dec 12:11
Compare
Choose a tag to compare
  • static variables are removed
  • isBuilt() function is introduced, you can use this function to determine whether Hawk is initialised or not before using.

1.20 release

16 Sep 09:49
Compare
Choose a tag to compare
  • Parser is public now.

1.19 release

15 Sep 17:59
Compare
Choose a tag to compare
  • setParser is added
  • buildRx is no longer predefines subscribeOn and observeOn, this needs to be done in the caller
  • refactoring

v1.18 -release

07 Aug 18:38
Compare
Choose a tag to compare
  • inner class serialization fix
  • Hawk.buildRx() added

v1.17 release

18 Jul 21:02
Compare
Choose a tag to compare
  • HawkBuilder 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 release

15 Jul 10:05
Compare
Choose a tag to compare
  • Rx support added for put and get

v1.15 release

04 Jul 13:52
Compare
Choose a tag to compare
  • Map and Set collection types are supported
  • Serialization approach is improved and changed.
  • Reformatted to 2 space indentation