Releases: getsentry/sentry-android
2.3.2
What’s Changed
- patch for getsentry/sentry-java#974 (remove chunked streaming mode)
Packages were released on bintray
, jcenter
and mavenCentral
We'd love to get feedback.
3.0.0-alpha.1
New releases will happen on a different repository:
https://github.com/getsentry/sentry-java
What’s Changed
- feat: enable release health by default
Packages were released on bintray
, jcenter
and mavenCentral
We'd love to get feedback.
2.3.1
What’s Changed
- fix: add main thread checker for the app lifecycle integration (#525) @marandaneto
- Set correct migration link (#523) @fupduck
- Warn about Sentry re-initialization. (#521) @maciejwalkowiak
- Set SDK version in
MainEventProcessor
. (#513) @maciejwalkowiak - Bump sentry-native to 0.4.0 (#512) @marandaneto
- Bump Gradle to 6.6 and fix linting issues (#510) @marandaneto
- fix(sentry-java): Contexts belong on the Scope (#504) @maciejwalkowiak
- Add tests for verifying scope changes thread isolation (#508) @maciejwalkowiak
- Set
SdkVersion
in defaultSentryOptions
created in sentry-core module (#506) @maciejwalkowiak
Packages were released on bintray
, jcenter
and mavenCentral
We'd love to get feedback.
2.3.0
What’s Changed
- fix: converting UTC and ISO timestamp when missing Locale/TimeZone do not error (#505) @marandaneto
- Add console application sample. (#502) @maciejwalkowiak
- Log stacktraces in SystemOutLogger (#498) @maciejwalkowiak
- Add method to add breadcrumb with string parameter. (#501) @maciejwalkowiak
- Call
Sentry#close
on JVM shutdown. (#497) @maciejwalkowiak - ref: sentry-core changes for console app (#473) @marandaneto
Obs: If you are using its own instance of Hub
/SentryClient
and reflection to set up the SDK to be usable within Libraries, this change may break your code, please fix the renamed classes.
Packages were released on bintray
, jcenter
and mavenCentral
We'd love to get feedback.
2.2.2
What’s Changed
- feat: add sdk to envelope header (#488) @marandaneto
- Bump plugin versions (#487) @marandaneto
- Bump: AGP 4.0.1 (#486) @marandaneto
- feat: log request if response code is not 200 (#484) @marandaneto
Packages were released on bintray
, jcenter
and mavenCentral
We'd love to get feedback.
2.2.1
What’s Changed
- fix: Timber adds breadcrumb even if event level is < minEventLevel (#480) @marandaneto
- enhancement: Bump Gradle 6.5.1 (#479) @marandaneto
- fix: contexts serializer avoids reflection and fixes desugaring issue (#478) @marandaneto
- fix: clone session before sending to the transport (#474) @marandaneto
Packages were released on bintray
, jcenter
and mavenCentral
We'd love to get feedback.
2.2.0
What’s Changed
-
fix: negative session sequence if the date is before java date epoch (#471) @marandaneto
-
fix: deserialise unmapped contexts values from envelope (#470) @marandaneto
-
Bump: sentry-native 0.3.4 (#468) @marandaneto
-
feat: timber integration (#464) @marandaneto
-
To add integrations it requires a manual initialization of the Android SDK.
-
Add the
sentry-android-timber
dependency:
implementation 'io.sentry:sentry-android-timber:{version}' // version >= 2.2.0
- Initialize and add the
SentryTimberIntegration
:
SentryAndroid.init(this, options -> {
// default values:
// minEventLevel = ERROR
// minBreadcrumbLevel = INFO
options.addIntegration(new SentryTimberIntegration());
// custom values for minEventLevel and minBreadcrumbLevel
// options.addIntegration(new SentryTimberIntegration(SentryLevel.WARNING, SentryLevel.ERROR));
});
- Use the Timber integration:
try {
int x = 1 / 0;
} catch (Exception e) {
Timber.e(e);
}
Packages were released on bintray
, jcenter
and mavenCentral
We'd love to get feedback.
2.1.7
What’s Changed
- fix: init native libs if available on SDK init (#461) @marandaneto
- Make JVM target explicit in sentry-core (#462) @dilbernd
- fix: timestamp with millis from react-native should be in UTC format (#456) @marandaneto
- Bump Gradle to 6.5 (#454) @marandaneto
Packages were released on bintray
, jcenter
and mavenCentral
We'd love to get feedback.
2.1.6
What’s Changed
- fix: do not lookup sentry-debug-meta but instead load it directly (#445) @marandaneto
- fix: regression on v2.1.5 which can cause a crash on SDK init
Packages were released on bintray
, jcenter
and mavenCentral
We'd love to get feedback.
2.1.5
This version has a severe bug and can cause a crash on SDK init
Please upgrade to https://github.com/getsentry/sentry-android/releases/tag/2.1.6