From 10d4302609a99c2b4435ccbca9cfb67fda3a8638 Mon Sep 17 00:00:00 2001 From: Xavier Gouchet Date: Wed, 17 Feb 2021 18:51:00 +0100 Subject: [PATCH] :bookmark: Bump to version 1.8.0-beta1 --- CHANGELOG.md | 27 +++++++++++++++---- .../datadog/gradle/config/AndroidConfig.kt | 2 +- 2 files changed, 23 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 754d0d4b0e..3648b11953 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +# 1.8.0 / 2021-02-?? + +* [BUGFIX] Global: handle correctly incorrect domain names in Interceptors' known hosts +* [BUGFIX] RUM: RUM Context was bundled in spans even when RUM was not enabled +* [FEATURE] Global: Allow user to configure the Upload Frequency (see `Configuration.Builder().setUploadFrequency(…).build()`) +* [FEATURE] Global: Allow user to configure the Batch Size (see `Configuration.Builder().setBatchSize(…).build()`) +* [FEATURE] RUM: Customize Views' name +* [FEATURE] RUM: Send NDK Crash related RUM Error +* [FEATURE] RUM: Track custom timings in RUM Views (see `GlobalRum.get().addTiming("")`) +* [FEATURE] RUM: Provide a PII Data Scrubbing feature (see `Configuration.Builder().setRum***EventMapper(…).build()`) +* [FEATURE] RUM: Send NDK Crash related RUM Error +* [IMPROVEMENT] APM: Stop duplicating APM errors as RUM errors +* [IMPROVEMENT] Logs Align the 'error.kind' attribute value with RUM Error 'error.type' +* [IMPROVEMENT] RUM: Get a more accurate Application loading time +* [IMPROVEMENT] RUM: Duplicate RUM Resource with failures as RUM Error +* [IMPROVEMENT] RUM: Add a variant tag on RUM events + # 1.7.0 / 2021-01-04 * [BUGFIX] RUM: fix RUM Error timestamps @@ -55,8 +72,8 @@ * [FEATURE] RUM: Add helper library to track Glide requests and errors * [FEATURE] CrashReport: Add a helper library to detect C/C++ crashes in Android NDK * [FEATURE] Global: add a method to clear all local unsent data -* [BUGFIX] Trace: Fix clock skew issue in traced requests -* [BUGFIX] Logger: Prevent Logcat noise from our SDK when running Robolectric tests +* [BUGFIX] APM: Fix clock skew issue in traced requests +* [BUGFIX] Logs: Prevent Logcat noise from our SDK when running Robolectric tests * [IMPROVEMENT] Global: Enhance the SDK performance and ensure it works properly in a multi-process application * [OTHER] Global: The DatadogConfig needs a valid environment name (`envName`), applied to all features * [OTHER] Global: The serviceName by default will use your application's package name @@ -78,9 +95,9 @@ * [FEATURE] Global: Update the SDK initialization code * [FEATURE] Global: Add a Kotlin extension module with Kotlin specific integrations -* [FEATURE] Trace: Implement OpenTracing specifications -* [FEATURE] Trace: Add helper methods to attach an error to a span -* [FEATURE] Trace: Add helper Interceptor to trace OkHttp requests +* [FEATURE] APM: Implement OpenTracing specifications +* [FEATURE] APM: Add helper methods to attach an error to a span +* [FEATURE] APM: Add helper Interceptor to trace OkHttp requests * [FEATURE] Logs: Add sampling option in the Logger * [IMPROVEMENT] Logs: Make the log operations thread safe * [BUGFIX] Logs: Fix rare crash on upload requests diff --git a/buildSrc/src/main/kotlin/com/datadog/gradle/config/AndroidConfig.kt b/buildSrc/src/main/kotlin/com/datadog/gradle/config/AndroidConfig.kt index 06acada0d8..9c984f41be 100644 --- a/buildSrc/src/main/kotlin/com/datadog/gradle/config/AndroidConfig.kt +++ b/buildSrc/src/main/kotlin/com/datadog/gradle/config/AndroidConfig.kt @@ -14,5 +14,5 @@ object AndroidConfig { const val MIN_SDK = 19 const val BUILD_TOOLS_VERSION = "30.0.2" - val VERSION = Version(1, 8, 0, Version.Type.Alpha(2)) + val VERSION = Version(1, 8, 0, Version.Type.Beta(1)) }