All Versions
11
Latest Version
Avg Release Cycle
112 days
Latest Release
2208 days ago

Changelog History
Page 1

  • v2.0.1 Changes

    April 03, 2018

    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.
  • 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, 2015
    • 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 Changes

    July 15, 2015
    • ๐Ÿ‘ Rx support added for put and get