We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cfb06f commit 700fd68Copy full SHA for 700fd68
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