Skip to content

Commit 6114ad0

Browse files
authored
Merge pull request #2555 from DataDog/release/3.2.0
Merge `release/3.2.0` to `develop`
2 parents e54f31b + 73d4166 commit 6114ad0

14 files changed

+897
-391
lines changed

CHANGELOG.md

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

3+
# 3.2.0 / 30-10-2025
4+
35
- [FIX] Fix Logger race condition. See [#2514][]
46
- [FEATURE] Add `DatadogFlags` module for feature flag evaluation and management. See [#2532][]
57
- [FEATURE] Send data for GraphQL requests in Resource Events. See [#2501][]
8+
- [FIX] Fix OTel parent spans with multiple sequential child spans. See [#2530][] (Thanks [@jbluntz][])
9+
- [FIX] Fix typos in internal accessibility implementation. See [#2538][] (Thanks [@tdr-alays][])
610

711
# 3.1.0 / 18-09-2025
812

@@ -971,6 +975,9 @@ Release `2.0` introduces breaking changes. Follow the [Migration Guide](MIGRATIO
971975
[#2469]: https://github.com/DataDog/dd-sdk-ios/pull/2469
972976
[#2474]: https://github.com/DataDog/dd-sdk-ios/pull/2474
973977
[#2501]: https://github.com/DataDog/dd-sdk-ios/pull/2501
978+
[#2530]: https://github.com/DataDog/dd-sdk-ios/pull/2530
979+
[#2538]: https://github.com/DataDog/dd-sdk-ios/pull/2538
980+
[#2532]: https://github.com/DataDog/dd-sdk-ios/pull/2532
974981
[#2514]: https://github.com/DataDog/dd-sdk-ios/pull/2514
975982

976983
[@00fa9a]: https://github.com/00FA9A
@@ -1006,3 +1013,5 @@ Release `2.0` introduces breaking changes. Follow the [Migration Guide](MIGRATIO
10061013
[@jfiser-paylocity]: https://github.com/jfiser-paylocity
10071014
[@Hengyu]: https://github.com/Hengyu
10081015
[@naftaly]: https://github.com/naftaly
1016+
[@jbluntz]: https://github.com/jbluntz
1017+
[@tdr-alays]: https://github.com/tdr-alays

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.1.0"
3+
s.version = "3.2.0"
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.1.0"
3+
internal let __sdkVersion = "3.2.0"

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.1.0"
3+
s.version = "3.2.0"
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.1.0"
3+
s.version = "3.2.0"
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.1.0"
3+
s.version = "3.2.0"
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.1.0"
3+
s.version = "3.2.0"
44
s.summary = "Datadog Logs Module."
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.1.0"
3+
s.version = "3.2.0"
44
s.summary = "Datadog Real User Monitoring Module."
55

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

DatadogSessionReplay.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 = "DatadogSessionReplay"
3-
s.version = "3.1.0"
3+
s.version = "3.2.0"
44
s.summary = "Official Datadog Session Replay SDK for iOS."
55

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

DatadogTrace.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 = "DatadogTrace"
3-
s.version = "3.1.0"
3+
s.version = "3.2.0"
44
s.summary = "Datadog Trace Module."
55

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

0 commit comments

Comments
 (0)