Skip to content

Commit 6357fbf

Browse files
authored
Merge pull request #2790 from DataDog/hotfix/3.8.3
Merge `hotfix/3.8.2` to `develop`
2 parents 471e6eb + e951511 commit 6357fbf

19 files changed

Lines changed: 72 additions & 25 deletions

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Unreleased
22

3+
# 3.8.3 / 26-03-2026
4+
5+
- [FIX] Fix TOC/TOU race in RUM scroll tracking. See [#2776][]
6+
37
# 3.8.2 / 17-03-2026
48

59
- [FIX] Fix crash and incorrect delegate getter return value when using RUM scroll tracking. See [#2761][]
@@ -1089,6 +1093,7 @@ Release `2.0` introduces breaking changes. Follow the [Migration Guide](MIGRATIO
10891093
[#2740]: https://github.com/DataDog/dd-sdk-ios/pull/2740
10901094
[#2750]: https://github.com/DataDog/dd-sdk-ios/pull/2750
10911095
[#2751]: https://github.com/DataDog/dd-sdk-ios/pull/2751
1096+
[#2776]: https://github.com/DataDog/dd-sdk-ios/pull/2776
10921097

10931098
[@00fa9a]: https://github.com/00FA9A
10941099
[@britton-earnin]: https://github.com/Britton-Earnin

DatadogCore.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "DatadogCore"
3-
s.version = "3.8.2"
3+
s.version = "3.8.3"
44
s.summary = "Official Datadog Swift SDK for iOS."
55

66
s.homepage = "https://www.datadoghq.com"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// GENERATED FILE: Do not edit directly
22

3-
internal let __sdkVersion = "3.8.2"
3+
internal let __sdkVersion = "3.8.3"

DatadogCrashReporting.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "DatadogCrashReporting"
3-
s.version = "3.8.2"
3+
s.version = "3.8.3"
44
s.summary = "Official Datadog Crash Reporting SDK for iOS."
55

66
s.homepage = "https://www.datadoghq.com"

DatadogFlags.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "DatadogFlags"
3-
s.version = "3.8.2"
3+
s.version = "3.8.3"
44
s.summary = "Official Datadog Feature Flags module of the Swift SDK."
55

66
s.homepage = "https://www.datadoghq.com"

DatadogInternal.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "DatadogInternal"
3-
s.version = "3.8.2"
3+
s.version = "3.8.3"
44
s.summary = "Datadog Internal Package. This module is not for public use."
55

66
s.homepage = "https://www.datadoghq.com"

DatadogLogs.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "DatadogLogs"
3-
s.version = "3.8.2"
3+
s.version = "3.8.3"
44
s.summary = "Datadog Logs Module."
55

66
s.homepage = "https://www.datadoghq.com"

DatadogProfiling.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "DatadogProfiling"
3-
s.version = "3.8.2"
3+
s.version = "3.8.3"
44
s.summary = "Official Datadog Profiling module of the Swift SDK."
55

66
s.homepage = "https://www.datadoghq.com"

DatadogRUM.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "DatadogRUM"
3-
s.version = "3.8.2"
3+
s.version = "3.8.3"
44
s.summary = "Datadog Real User Monitoring Module."
55

66
s.homepage = "https://www.datadoghq.com"

DatadogRUM/Sources/Instrumentation/Actions/UIKit/UIScrollViewDelegateProxy.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ internal final class UIScrollViewDelegateProxy: NSObject, UIScrollViewDelegate {
1515
weak var originalDelegate: UIScrollViewDelegate?
1616

1717
/// The handler notified of scroll lifecycle events.
18-
let handler: UIScrollViewHandler
18+
var handler: UIScrollViewHandler
1919

2020
init(
2121
originalDelegate: UIScrollViewDelegate?,

0 commit comments

Comments
 (0)