There was an error while loading. Please reload this page.
2 parents 7cfb06f + 5f2c549 commit 29963c4Copy full SHA for 29963c4
Firestore/CHANGELOG.md
@@ -1,3 +1,7 @@
1
+# Unreleased
2
+- [fixed] Add conditional `Sendable` conformance so `ServerTimestamp<T>` is
3
+ `Sendable` if `T` is `Sendable`. (#14042)
4
+
5
# 11.4.0
6
- [changed] Prepare Firestore cache to support session token.
7
Firestore/Swift/Source/Codable/ServerTimestamp.swift
@@ -105,3 +105,5 @@ public struct ServerTimestamp<Value>: Codable
105
extension ServerTimestamp: Equatable where Value: Equatable {}
106
107
extension ServerTimestamp: Hashable where Value: Hashable {}
108
109
+extension ServerTimestamp: Sendable where Value: Sendable {}
0 commit comments