Skip to content
This repository has been archived by the owner on Feb 19, 2020. It is now read-only.

Releases: bitstadium/HockeySDK-Cordova

Version 5.2.0

23 May 14:45
a7bbf27
Compare
Choose a tag to compare

This version wrapps HockeySDK-iOS 5.1.2 and HockeySDK-Android 5.2.0.

Changes in HockeySDK-Android 5.2.0

  • [Bugfix] – Leaking HTTP connection.
  • [Bugfix] – Fix HTTPS connection creation.
  • [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.

Version 5.1.2

17 Jan 19:23
06ef852
Compare
Choose a tag to compare

This version wrapps HockeySDK-iOS 5.1.2 and HockeySDK-Android 5.1.0. The plugin is now compatible with Cordova 7.

Changes in HockeySDK-iOS 5.1.2

  • [IMPROVEMENT] This release can be compiled with Xcode 9.2 without warnings. #502
  • [BUGFIX] Fix warnings when integrating the SDK as source in Xcode 9. #501
  • [BUGFIX] Fix a potential memory leak in BITChannel. #500
  • [BUGFIX] Version 5.1.X broke support for app extension. We're sorry about this and we've updated our test matrix to make sure this does not happen again. #499
  • [BUGFIX] Fix a bug in the Feedback UI when Feedback was shown in landscape. #498

Changes in HockeySDK-Android 5.1.0

  • [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 not possible to call setUserId for Feedback. #339

Version 5.1.1

14 Dec 07:07
b93aeca
Compare
Choose a tag to compare

This version contains HockeySDK-iOS 5.1.1 which contains two critical bugfixes.

Changelog for HockeySDK-iOS 5.1.1

  • [BUGFIX] Fixes a critical bug that would cause apps to freeze when calling trackEvent in UIApplicationDelegate callbacks. #492
  • [BUGFIX] Fix a critical bug in the crashonly variant of the SDK. #49

Version 5.1.0

13 Dec 18:18
946fc74
Compare
Choose a tag to compare

This release wrapps HockeySDK-iOS 5.1.0 and HockeySDK-Android 5.0.4. It contains various bugfixes and improvements for both platforms.

Changelog for HockeySDK-Android

5.0.4

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

5.0.3

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

Changelog for HockeySDK-iOS

5.1.0

  • [FEATURE] Add Turkish localization thanks to Ozgur.#478
  • [FEATURE] Add support to detect low memory and OS kill heuristics for extensions. Thx to Dave Weston for this! #470
  • [IMPROVEMENT] Support tracking events in the background. #475
  • [FIX] Improvements around thread-safety and concurrency for Metrics. #471 #479
  • [FIX] Fix runtime warnings of Xcode 9's main thread checker tool. #484
  • [FIX] Fix caching of previews for attachments to Feedback. #487

Version 5.0.1

02 Oct 17:56
Compare
Choose a tag to compare

This version fixes #85 where the plugin would reference HockeySDK-Android 5.0.1 in plugin.xml instead of version 5.0.2.

Version 5.0.0

28 Sep 22:08
Compare
Choose a tag to compare

This version bump wraps the latest native SDKs and uses the same major version as the native SDKs:

Please make sure to read the changelogs of the native SDKs. The most important changes are:

  • The SDK now requires iOS 8 or later.
  • The SDK now requires Android api level 15 or later.

Version 2.2.4

04 May 22:30
Compare
Choose a tag to compare

This release wrapps the latest native SDKs:

v2.2.2

08 Apr 16:19
Compare
Choose a tag to compare

Bug Fixes

  1. Addressed an iOS build error for app's using cordova-ios older than 4.1.0.
  2. Updated the Cordova platform dependencies in the plugin.xml file so that apps using unsupported versions will be notified when trying to install this plugin, as opposed to successfully installing it and experiencing issues.

v2.2.1

05 Apr 05:17
Compare
Choose a tag to compare

Bug Fixes

  1. Fixed an issue with iOS when the plugin is installed from NPM (as opposed to from GitHub or a local directory)

v2.2.0

31 Mar 16:46
Compare
Choose a tag to compare

New Features

  1. User metrics are now automatically tracked You can now view the number of daily and monthly active users your app has, as well as the number of unique sessions, from within the HockeyApp portal. The plugin automatically enables this on both iOS and Android, so you simply need to upgrade to this version to begin collecting this data.

  2. Custom app events can now be tracked The HockeyApp plugin now exposes a new trackEvent method which lets you log custom events (via a string name), that will be sent to the HockeyApp servers, so you can see the usage patterns of your users. Note that while the plugin exposes this method, in order to actually see the data collected in the portal, you need to sign up for the HockeyApp pre-season program.

    hockeyapp.trackEvent(eventSucceeded, eventFailed, "User registration completed");