Skip to content

Commit 324553d

Browse files
authored
Merge pull request #1944 from DataDog/xgouchet/prepare_2.7.1
Prepare 2.7.1
2 parents 8f017f3 + 0f0f86f commit 324553d

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 2.7.1 / 2024-03-27
2+
3+
* [BUGFIX] RUM: Improve adding Feature Flag evaluation(s) performance.
4+
See [#1932](https://github.com/DataDog/dd-sdk-android/pull/1932)
5+
* [MAINTENANCE] Core: add a BackPressure strategy to limit the load on background threads and get notified when capacity is reached.
6+
See [#1938](https://github.com/DataDog/dd-sdk-android/pull/1938) and [#1939](https://github.com/DataDog/dd-sdk-android/pull/1939)
7+
18
# 2.7.0 / 2024-03-21
29

310
* [FEATURE] Session Replay: Add a request builder for resources. See [#1827](https://github.com/DataDog/dd-sdk-android/pull/1827)
@@ -246,7 +253,7 @@
246253

247254
# 2.0.0 / 2023-07-31
248255

249-
This is the first official production version of SDK v2 containing the new architecture for features initialisation and dependencies distribution. See the [migration guide](https://github.com/DataDog/dd-sdk-android/blob/62aac79c3c68c4da02c96ab1071fb5e63f1b8b89/MIGRATION.MD) for details.
256+
This is the first official production version of SDK v2 containing the new architecture for features initialisation and dependencies distribution. See the [migration guide](https://github.com/DataDog/dd-sdk-android/blob/62aac79c3c68c4da02c96ab1071fb5e63f1b8b89/MIGRATION.MD) for details.
250257

251258
Below you can find the change logs in comparison with out last stable version `1.19.3`:
252259

@@ -664,7 +671,7 @@ Functional changes in comparison with `1.19.2`:
664671

665672
* [BUGFIX] Global: Fix crash when using old OkHttp dependency [#658](https://github.com/DataDog/dd-sdk-android/issues/658) (Thanks [@JessicaYeh](https://github.com/VladBytsyuk))
666673
* [BUGFIX] Global: Prevent retrying endlessly data upload when Client Token is invalid
667-
* [BUGFIX] Global: Support using DD Android SDK with Java 11
674+
* [BUGFIX] Global: Support using DD Android SDK with Java 11
668675
* [BUGFIX] Global: Support proper serialization of nested maps for custom attributes
669676
* [BUGFIX] RUM: Ensure all crashes are reported to RUM
670677
* [FEATURE] APM: Add Data Scrubbing for Spans
@@ -681,14 +688,14 @@ Functional changes in comparison with `1.19.2`:
681688
# 1.9.0 / 2021-06-07
682689

683690
* [BUGFIX] APM: Fix network tracing inconsistencies
684-
* [BUGFIX] APM: Fix span with custom `MESSAGE` field [#522](https://github.com/DataDog/dd-sdk-android/issues/522) (Thanks [@JessicaYeh](https://github.com/JessicaYeh))
691+
* [BUGFIX] APM: Fix span with custom `MESSAGE` field [#522](https://github.com/DataDog/dd-sdk-android/issues/522) (Thanks [@JessicaYeh](https://github.com/JessicaYeh))
685692
* [BUGFIX] Logs: Fix tag name in Timber `DatadogTree` [#483](https://github.com/DataDog/dd-sdk-android/issues/483) (Thanks [@cfa-eric](https://github.com/cfa-eric))
686693
* [BUGFIX] RUM: Ensure View linked events count is correct when events are discarded
687694
* [BUGFIX] RUM: Fix Resource network timings
688695
* [BUGFIX] APM: Fix span logs timestamp conversion
689696
* [FEATURE] RUM: Detect Long Tasks (tasks blocking the main thread)
690697
* [FEATURE] RUM: add a callback to enrich RUM Resources created from OkHttp Requests
691-
* [IMPROVEMENT] RUM: Remove the "Application crash detected" prefix and ensure the message is kept
698+
* [IMPROVEMENT] RUM: Remove the "Application crash detected" prefix and ensure the message is kept
692699
* [IMPROVEMENT] RUM: Add warning when a RUM Action is dropped
693700

694701
# 1.8.1 / 2021-03-04
@@ -799,7 +806,6 @@ Functional changes in comparison with `1.19.2`:
799806
* [BUGFIX] Logs: Fix rare crash on upload requests
800807
* [BUGFIX] Global: Prevent OutOfMemory crash on upload. See [#164](https://github.com/DataDog/dd-sdk-android/issues/164) (Thanks [@alparp27](https://github.com/alparp27))
801808

802-
803809
# 1.3.1 / 2020-04-30
804810

805811
### Changes
@@ -858,7 +864,7 @@ Functional changes in comparison with `1.19.2`:
858864

859865
* [BUGFIX] Make the packageVersion field optional in the SDK initialisation
860866
* [BUGFIX] Fix timestamp formatting in logs
861-
* [FEATURE] Add a developer targeted logger
867+
* [FEATURE] Add a developer targeted logger
862868
* [FEATURE] Add user info in logs
863869
* [FEATURE] Create automatic Tags / Attribute (app / sdk version)
864870
* [FEATURE] Integrate SDK with Timber

buildSrc/src/main/kotlin/com/datadog/gradle/config/AndroidConfig.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ object AndroidConfig {
1919
const val MIN_SDK_FOR_WEAR = 23
2020
const val BUILD_TOOLS_VERSION = "34.0.0"
2121

22-
val VERSION = Version(2, 7, 0, Version.Type.Release)
22+
val VERSION = Version(2, 7, 1, Version.Type.Release)
2323
}
2424

2525
// TODO RUM-628 Switch to Java 17 bytecode

0 commit comments

Comments
 (0)