All Versions
10
Latest Version
Avg Release Cycle
77 days
Latest Release
1799 days ago

Changelog History

  • v5.2.0 Changes

    May 21, 2019

    ๐Ÿ›  This is a maintenance release for the SDK. It contains important bugfixes.

    • ๐Ÿ›  [Bugfix] #411 โ€“ Leaking HTTP connection. PR #412
    • ๐Ÿ›  [Bugfix] โ€“ Fix HTTPS connection creation. PR #424
    • ๐Ÿ”’ [Security] To enforce TLS 1.2 on all HTTPS connections the SDK makes, we are dropping support for API level 15 (which supports only TLS 1.0), the minimum SDK version thus becomes 16. Previous versions of the SDK were already using TLS 1.2 on API level 16+.

    ๐Ÿ’ฅ Breaking changes in version 5.2.0

    HockeySDK 5.2.0 raises the minimum API level to 16.

  • v5.1.1 Changes

    August 27, 2018

    ๐Ÿ›  This is a maintenance release for the SDK. It contains important bugfixes, including some that make the SDK compatible with Android Pie.

    • ๐Ÿ›  [Bugfix] #395 โ€“ NullPointerException in DownloadFileTask. PR #396
    • ๐Ÿ›  [Bugfix] #391 - FileNotFoundException when attaching an image to feedback. PR #393
    • ๐Ÿ›  [Bugfix] #377 - Prevent OutOfMemoryError in case of reading/sending crash reports with very long stacktraces. #PR 378 PR #392
    • ๐Ÿ›  [Bugfix] #385 - Fix "untagged socket" violation in strict mode of Android O PR #387
    • ๐Ÿ›  [Bugfix] Fix the error message that gets logged by the SDK to logcat in case a saved stacktrace is empty. PR #375
    • ๐Ÿ›  [Bugfix] #369 - Adjust timeout interval for a http connection. PR #370
    • ๐Ÿ›  [Bugfix] Fix a glitch in the feedback UI. PR #353
    • ๐Ÿ›  [Bugfix] Fix multiple causes for deadlocks. PR #348
  • v5.1.0 Changes

    January 11, 2018
    • ๐Ÿ›  [Bugfix] Fix issue in persistence logic that could cause Session information to be inaccurate. #340
    • [Improvement] Remove left-to-right attribute in case the app that integrates the SDK doesn't use that. Thx to Steven for this contribution. #335
    • [Improvement] Improve error message for the Feedback feature. #341
    • [Improvement] It's now possible to call setUserId for Feedback. #339

    ๐Ÿ’ฅ Breaking changes in version 5.0.0

    HockeySDK 5.0.0 raises the minimum API level to 15.
    ๐Ÿ— In addition, we no longer support restricting builds by device id. The reason is that, with Android O, ANDROID_ID no longer ensures a consistent way of identification of a user.

    To be ready for Android O, HockeySDK-Android now limits the WRITE_EXTERNAL_STORAGE permission with the maxSdkVersion filter. In some use cases, e.g. where an app contains a dependency that requires this permission, maxSdkVersion makes it impossible for those dependencies to grant or request the permission. The solution for those cases is to declare the tools:node="replace" manifest merging strategy later in the dependency tree:

    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" tools:node="replace"/>

  • v5.0.4 Changes

    November 21, 2017

    ๐Ÿ›  This version contains a few bugfixes as well as the removal of an API that has been deprecated since HockeySDK 3.7.0-Beta.2.

    • ๐Ÿ—„ Removal of deprecated API ExceptionHandler.saveException(Throwable exception, CrashManagerListener listener) has been deprecated since 3.7.0-beta.2. Use ExceptionHandler.saveException(Throwable exception, Thread thread, CrashManagerListener listener) instead. #317
    • ๐Ÿ›  Bugfix The SDK now deletes redundant crash reports. #318
    • ๐Ÿ›  Bugfix The SDK does no longer send the event that indicates the start of a session twice but once. There was no impact on session counts as the event was de-duplicated on the server. #321
    • ๐Ÿ›  Bugfix Fixes a potential deadlock when reading device information when saving an exception. #323
    • ๐Ÿ›  Bugfix Fixes a potential NPE when processing stacktraces. Thanks to Thomas Reis for reporting issue #331. #332

    ๐Ÿ’ฅ Breaking changes in version 5.0.0

    HockeySDK 5.0.0 raises the minimum API level to 15.
    ๐Ÿ— In addition, we no longer support restricting builds by device id. The reason is that, with Android O, ANDROID_ID no longer ensures a consistent way of identification of a user.

    To be ready for Android O, HockeySDK-Android now limits the WRITE_EXTERNAL_STORAGE permission with the maxSdkVersion filter. In some use cases, e.g. where an app contains a dependency that requires this permission, maxSdkVersion makes it impossible for those dependencies to grant or request the permission. The solution for those cases is to declare the tools:node="replace" manifest merging strategy later in the dependency tree:

    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" tools:node="replace"/>

  • v5.0.3 Changes

    October 03, 2017

    ๐Ÿš€ This release now limits the number of crashes that are stored by the SDK while the device is offline to 100 Crashes. HockeySDK-Android will stop to collect crashes until the number of unsent crashes drops below the limit of 100 unsent crashes.

    • ๐Ÿ›  [BUGFIX] Fixes a possible OutOfMemoryError exception. This only occurs when a very large number of crashes โ€“ several 100k or more โ€“ wasn't sent to the server. #313

    ๐Ÿ’ฅ Breaking changes in version 5.0.0

    HockeySDK 5.0.0 raises the minimum API level to 15.
    ๐Ÿ— In addition, we no longer support restricting builds by device id. The reason is that, with Android O, ANDROID_ID no longer ensures a consistent way of identification of a user.

    To be ready for Android O, HockeySDK-Android now limits the WRITE_EXTERNAL_STORAGE permission with the maxSdkVersion filter. In some use cases, e.g. where an app contains a dependency that requires this permission, maxSdkVersion makes it impossible for those dependencies to grant or request the permission. The solution for those cases is to declare the tools:node="replace" manifest merging strategy later in the dependency tree:

    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" tools:node="replace"/>

  • v5.0.2 Changes

    September 26, 2017
    • ๐Ÿ›  [Bugfix] Fixes a NPE in FeedbackActivity. #303
    • ๐Ÿ›  [Bugfix] Fixes a potential deadlock in CrashManager.#308
    • [Improvement] Fix potential NPE when calling MetricsManager.sessionTrackingEnabled() before calling MetricsManager.register(...). #310

    Thx to Mourat and Jarred for their contributions!

    ๐Ÿ’ฅ Breaking changes in version 5.0.0

    HockeySDK 5.0.0 raises the minimum API level to 15.
    ๐Ÿ— In addition, we no longer support restricting builds by device id. The reason is that, with Android O, ANDROID_ID no longer ensures a consistent way of identification of a user.

    To be ready for Android O, HockeySDK-Android now limits the WRITE_EXTERNAL_STORAGE permission with the maxSdkVersion filter. In some use cases, e.g. where an app contains a dependency that requires this permission, maxSdkVersion makes it impossible for those dependencies to grant or request the permission. The solution for those cases is to declare the tools:node="replace" manifest merging strategy later in the dependency tree:

    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" tools:node="replace"/>

  • v5.0.1 Changes

    September 15, 2017
    • ๐Ÿ›  [BUGFIX] Fix a bug in the Italian translation. #296
    • [IMPROVEMENT] Use different timestamp format for crash date and app start time. #297

    ๐Ÿ’ฅ Breaking changes in version 5.0.0

    HockeySDK 5.0.0 raises the minimum API level to 15.
    ๐Ÿ— In addition, we no longer support restricting builds by device id. The reason is that, with Android O, ANDROID_ID no longer ensures a consistent way of identification of a user.

    To be ready for Android O, HockeySDK-Android now limits the WRITE_EXTERNAL_STORAGE permission with the maxSdkVersion filter. In some use cases, e.g. where an app contains a dependency that requires this permission, maxSdkVersion makes it impossible for those dependencies to grant or request the permission. The solution for those cases is to declare the tools:node="replace" manifest merging strategy later in the dependency tree:

    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" tools:node="replace"/>

  • v5.0.0 Changes

    September 01, 2017

    ๐Ÿ”„ Changes since 5.0.0-beta.1

    • ๐Ÿ›  [BUGFIX] It's no longer possible to circumvent the login UI by pressing the backbutton under certain circumstances #278.
    • ๐Ÿ›  [BUGFIX] Fix a crash in MetricsManager #279.
    • ๐Ÿ›  [BUGFIX] Fix authentication by email #288.
    • ๐Ÿ›  [BUGFIX] Fix a regression that was introduced in 5.0.0-beta.1 that prevented attaching screenshots to work #289.
    • ๐Ÿ›  [BUGFIX] Fix Feedback notifications on Android #290.
    • โšก๏ธ [IMPROVEMENT] Add the ability to when to show the UpdateFragment #280.
    • [IMPROVEMENT] CrashManagerListener now has onNoCrashesFound() to notify you in case no new crashes were found #280.
    • [IMPROVEMENT] Retrieving the last crash details is now asynchronous.
    • ๐Ÿšš [DEPRECATION] We've removed the onCrashesFound callback in CrashManagerListener as it has been deprecated since HockeySDK 3.0.0.

    ๐Ÿ’ฅ Breaking Changes

    ๐Ÿš€ This release comes with one major breaking change. HockeySDK 5.0.0 raises the minimum API level to 15.
    ๐Ÿ— In addition, we no longer support restricting builds by device id. The reason is that, with Android O, ANDROID_ID no longer ensures a consistent way of identification of a user.

    To be ready for Android O, HockeySDK-Android now limits the WRITE_EXTERNAL_STORAGE permission with the maxSdkVersion filter. In some use cases, e.g. where an app contains a dependency that requires this permission, maxSdkVersion makes it impossible for those dependencies to grant or request the permission. The solution for those cases is to declare the tools:node="replace" manifest merging strategy later in the dependency tree:

    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" tools:node="replace"/>

    Thx a lot to Lauri for notifying us.

    Full changelog

    ๐Ÿš€ In addition, this release contains the following changes:

    • ๐Ÿ‘ [IMPROVEMENT] Support for Android O.
    • โš  [IMPROVEMENT] Code scans no longer trigger warnings related to usage of ANDROID_ID as we are no longer using it.
    • ๐Ÿ‘ [IMPROVEMENT] The SDK supports Android Strict Mode way better as it no longer violates it.
    • [IMPROVEMENT] We've improved the way we send Feedback attachments.
    • โšก๏ธ [IMPROVEMENT] The SDK no longer caches information about in-app updates to make sure updates are available immediately.
    • โšก๏ธ [IMPROVEMENT] Add the ability to when to show the UpdateFragment #280.
    • [IMPROVEMENT] Retrieving the last crash details is now asynchronous.
    • ๐Ÿ›  [BUGFIX] Metrics no longer leaks a connection.
    • ๐Ÿ›  [BUGFIX] It's no longer possible to circumvent the login UI by pressing the backbutton under certain circumstances #278.
    • ๐Ÿ›  [BUGFIX] Fix a crash in MetricsManager #279.
    • ๐Ÿ›  [BUGFIX] Fix authentication by email #288.
    • ๐Ÿ›  [BUGFIX] Fix a regression that was introduced in 5.0.0-beta.1 that prevented attaching screenshots to work #289.
    • ๐Ÿ›  [BUGFIX] Fix Feedback notifications on Android #290.
    • โšก๏ธ [IMPROVEMENT] Add the ability to when to show the UpdateFragment #280.
    • [IMPROVEMENT] CrashManagerListener now has onNoCrashesFound() to notify you in case no new crashes were found #280.
    • ๐Ÿšš [DEPRECATION] We've removed the onCrashesFound callback in CrashManagerListener as it has been deprecated since HockeySDK 3.0.0.

    โšก๏ธ Updating the HockeySDK

    ๐Ÿš€ We didn't remove any API with this release. Just update to this version and you are good to go!

    Acknowledgments

    Thanks to @bmourat @MatkovIvan and @friederbluemle for their input and help! =)

  • v5.0.0-beta.1 Changes

    August 03, 2017

    ๐Ÿ’ฅ Breaking Changes

    ๐Ÿš€ This release comes with one major breaking change. HockeySDK 5.0.0-beta.1 raises the minimum API level to 15.
    ๐Ÿ— In addition, we no longer support restricting builds by device id. The reason is that, with Android O, ANDROID_ID no longer ensures a consistent way of identification of a user.

    To be ready for Android O, HockeySDK-Android now limits the WRITE_EXTERNAL_STORAGE permission with the maxSdkVersion filter. In some use cases, e.g. where an app contains a dependency that requires this permission, maxSdkVersion makes it impossible for those dependencies to grant or request the permission. The solution for those cases is to declare the tools:node="replace" manifest merging strategy later in the dependency tree:

    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" tools:node="replace"/>

    Thx a lot to Lauri for notifying us.

    ๐Ÿ”„ Changelog

    ๐Ÿš€ In addition, this release contains the following changes:

    • ๐Ÿ‘ [IMPROVEMENT] Support for Android O.
    • โš  [IMPROVEMENT] Code scans no longer trigger warnings related to usage of ANDROID_ID as we are no longer using it.
    • ๐Ÿ‘ [IMPROVEMENT] The SDK supports Android Strict Mode way better as it no longer violates it.
    • [IMPROVEMENT] We've improved the way we send Feedback attachments.
    • โšก๏ธ [IMPROVEMENT] The SDK no longer caches information about in-app updates to make sure updates are available immediately. The iOS SDK has behaved like this for a while and we decided to align the behavior across SDKs.
    • ๐Ÿ›  [BUGFIX] Metrics no longer leaks a connection.

    โšก๏ธ Updating the HockeySDK

    ๐Ÿš€ We didn't remove any API with this release. Just update to this version and you're good to go!

    Acknowledgments

    Thanks to @bmourat @MatkovIvan and @friederbluemle for their input and help! =)

  • v4.1.5 Changes

    June 23, 2017
    • [FIX] Fix a resource leak in Sender #235.
    • [FIX] Fix pissibility to bypass authentication #236.
    • [FIX] Fix the progressbar when sending feedback #237.
    • [FIX] Fix potential OOM crash by limiting the number of form fields in a request #238.
    • ๐Ÿ’ป [FIX] Fix the dates in the Feedback UI #239.
    • [FIX] Fix ConcurrentModificationException in metrics feature #242.
    • [FIX] Fix potential crash related to multi-threading in Channel #248.
    • ๐Ÿ’ป [FIX] Fix the focus in the Feedback UI, this also improves accessibility #249.
    • [IMPROVEMENT] When debugging, the SDK uses smaller batch sizes and timing intervals until metrics are sent to make debugging easier #231.
    • [IMPROVEMENT] Fix some strict mode violations #241.
    • [IMPROVEMENT] Improve accessibility for Feedback attachments #251.
      *[IMPROVEMENT] Send batched events when the app goes into background.
      #252.