Skip to content

Commit 43f262f

Browse files
committedJun 29, 2020
Add missing platforms to availability annotations
1 parent 8861752 commit 43f262f

File tree

6 files changed

+21
-21
lines changed

6 files changed

+21
-21
lines changed
 

‎Sources/Relay/GarbageCollector.swift

+13-13
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import os
55
private let log = OSLog(subsystem: "io.github.mjm.Relay", category: "garbage-collection")
66

77
#if swift(>=5.3)
8-
@available(iOS 14.0, *)
8+
@available(iOS 14.0, macOS 10.16, tvOS 14.0, watchOS 7.0, *)
99
private let logger = Logger(log)
1010
#endif
1111

@@ -49,7 +49,7 @@ class GarbageCollector {
4949
}
5050

5151
#if swift(>=5.3)
52-
if #available(iOS 14.0, *) {
52+
if #available(iOS 14.0, macOS 10.16, tvOS 14.0, watchOS 7.0, *) {
5353
logger.info("GC Release: \(operation.request.node.params.name, privacy: .public), variables: \(operation.request.variables)")
5454
}
5555
#endif
@@ -65,7 +65,7 @@ class GarbageCollector {
6565
}
6666

6767
#if swift(>=5.3)
68-
if #available(iOS 14.0, *) {
68+
if #available(iOS 14.0, macOS 10.16, tvOS 14.0, watchOS 7.0, *) {
6969
logger.info("GC Retain: \(operation.request.node.params.name, privacy: .public), variables: \(operation.request.variables)")
7070
}
7171
#endif
@@ -108,7 +108,7 @@ class GarbageCollector {
108108
holdCounter += 1
109109

110110
#if swift(>=5.3)
111-
if #available(iOS 14.0, *) {
111+
if #available(iOS 14.0, macOS 10.16, tvOS 14.0, watchOS 7.0, *) {
112112
let holdCounter = self.holdCounter
113113
logger.info("GC Pause (hold counter: \(holdCounter)")
114114
}
@@ -120,7 +120,7 @@ class GarbageCollector {
120120
self.holdCounter -= 1
121121

122122
#if swift(>=5.3)
123-
if #available(iOS 14.0, *) {
123+
if #available(iOS 14.0, macOS 10.16, tvOS 14.0, watchOS 7.0, *) {
124124
let holdCounter = self.holdCounter
125125
logger.info("GC Unpause (hold counter: \(holdCounter)")
126126
}
@@ -133,7 +133,7 @@ class GarbageCollector {
133133
}
134134
} else {
135135
#if swift(>=5.3)
136-
if #available(iOS 14.0, *) {
136+
if #available(iOS 14.0, macOS 10.16, tvOS 14.0, watchOS 7.0, *) {
137137
logger.error("GC Unpause when hold counter is already 0")
138138
}
139139
#endif
@@ -164,7 +164,7 @@ class GarbageCollector {
164164
}
165165

166166
#if swift(>=5.3)
167-
if #available(iOS 14.0, *) {
167+
if #available(iOS 14.0, macOS 10.16, tvOS 14.0, watchOS 7.0, *) {
168168
logger.notice("GC Schedule")
169169
}
170170
#endif
@@ -199,7 +199,7 @@ class GarbageCollector {
199199
let currentEpoch = store.currentWriteEpoch
200200
if startEpoch != currentEpoch {
201201
#if swift(>=5.3)
202-
if #available(iOS 14.0, *) {
202+
if #available(iOS 14.0, macOS 10.16, tvOS 14.0, watchOS 7.0, *) {
203203
logger.info("GC Restart: store updated while collecting (start epoch: \(startEpoch), current epoch: \(currentEpoch))")
204204
}
205205
#endif
@@ -209,7 +209,7 @@ class GarbageCollector {
209209

210210
if shouldSchedule {
211211
#if swift(>=5.3)
212-
if #available(iOS 14.0, *) {
212+
if #available(iOS 14.0, macOS 10.16, tvOS 14.0, watchOS 7.0, *) {
213213
logger.info("GC Cancel: paused while collecting")
214214
}
215215
#endif
@@ -226,7 +226,7 @@ class GarbageCollector {
226226
let currentEpoch = store.currentWriteEpoch
227227
if startEpoch != currentEpoch {
228228
#if swift(>=5.3)
229-
if #available(iOS 14.0, *) {
229+
if #available(iOS 14.0, macOS 10.16, tvOS 14.0, watchOS 7.0, *) {
230230
logger.info("GC Restart: store updated while collecting (start epoch: \(startEpoch), current epoch: \(currentEpoch))")
231231
}
232232
#endif
@@ -236,7 +236,7 @@ class GarbageCollector {
236236

237237
if shouldSchedule {
238238
#if swift(>=5.3)
239-
if #available(iOS 14.0, *) {
239+
if #available(iOS 14.0, macOS 10.16, tvOS 14.0, watchOS 7.0, *) {
240240
logger.info("GC Cancel: paused while collecting")
241241
}
242242
#endif
@@ -247,7 +247,7 @@ class GarbageCollector {
247247
if references.isEmpty {
248248
store.recordSource.clear()
249249
#if swift(>=5.3)
250-
if #available(iOS 14.0, *) {
250+
if #available(iOS 14.0, macOS 10.16, tvOS 14.0, watchOS 7.0, *) {
251251
logger.notice("GC Result: 0 references found, cleared entire store")
252252
}
253253
#endif
@@ -260,7 +260,7 @@ class GarbageCollector {
260260
}
261261
}
262262
#if swift(>=5.3)
263-
if #available(iOS 14.0, *) {
263+
if #available(iOS 14.0, macOS 10.16, tvOS 14.0, watchOS 7.0, *) {
264264
logger.notice("GC Result: \(references.count) references found, deleted \(deletedCount) records")
265265
}
266266
#endif

‎Sources/Relay/Reader.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Foundation
22
import os
33

44
#if swift(>=5.3)
5-
@available(iOS 14.0, *)
5+
@available(iOS 14.0, macOS 10.16, tvOS 14.0, watchOS 7.0, *)
66
private let logger = Logger(subsystem: "io.github.mjm.Relay", category: "reader")
77
#endif
88

@@ -37,7 +37,7 @@ class Reader {
3737
return try SelectorDataDecoder().decode(type, from: data)
3838
} catch {
3939
#if swift(>=5.3)
40-
if #available(iOS 14.0, *) {
40+
if #available(iOS 14.0, macOS 10.16, tvOS 14.0, watchOS 7.0, *) {
4141
logger.debug("Decoding fragment data into \(String(reflecting: type), privacy: .public) failed (this may be harmless): \(error as NSError)")
4242
}
4343
#endif

‎Sources/RelaySwiftUI/Fragment.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public struct Fragment<F: Relay.Fragment>: DynamicProperty {
3434
}
3535

3636
#if swift(>=5.3)
37-
@available(iOS 14.0, *)
37+
@available(iOS 14.0, macOS 10.16, tvOS 14.0, watchOS 7.0, *)
3838
@propertyWrapper
3939
public struct FragmentNext<F: Relay.Fragment>: DynamicProperty {
4040
@SwiftUI.Environment(\.relayEnvironment) var environment: Relay.Environment?

‎Sources/RelaySwiftUI/Mutation.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ extension Mutation.Mutator where Operation.Variables == EmptyVariables {
5252
}
5353

5454
#if swift(>=5.3)
55-
@available(iOS 14.0, *)
55+
@available(iOS 14.0, macOS 10.16, tvOS 14.0, watchOS 7.0, *)
5656
@propertyWrapper
5757
public struct MutationNext<Operation: Relay.Operation>: DynamicProperty {
5858
@SwiftUI.Environment(\.relayEnvironment) var environment: Relay.Environment?
@@ -91,7 +91,7 @@ public struct MutationNext<Operation: Relay.Operation>: DynamicProperty {
9191
}
9292
}
9393

94-
@available(iOS 14.0, *)
94+
@available(iOS 14.0, macOS 10.16, tvOS 14.0, watchOS 7.0, *)
9595
extension MutationNext.Mutator where Operation.Variables == EmptyVariables {
9696
public func commit(
9797
optimisticResponse: [String: Any]? = nil,

‎Sources/RelaySwiftUI/PaginationFragment.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public struct PaginationFragment<F: Relay.PaginationFragment>: DynamicProperty {
6262
}
6363

6464
#if swift(>=5.3)
65-
@available(iOS 14.0, *)
65+
@available(iOS 14.0, macOS 10.16, tvOS 14.0, watchOS 7.0, *)
6666
@propertyWrapper
6767
public struct PaginationFragmentNext<F: Relay.PaginationFragment>: DynamicProperty {
6868
@SwiftUI.Environment(\.relayEnvironment) var environment

‎Sources/RelaySwiftUI/Query.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public struct Query<O: Relay.Operation>: DynamicProperty {
7171
}
7272

7373
#if swift(>=5.3)
74-
@available(iOS 14.0, *)
74+
@available(iOS 14.0, macOS 10.16, tvOS 14.0, watchOS 7.0, *)
7575
@propertyWrapper
7676
public struct QueryNext<O: Relay.Operation>: DynamicProperty {
7777
@SwiftUI.Environment(\.relayEnvironment) var environment
@@ -138,7 +138,7 @@ public struct QueryNext<O: Relay.Operation>: DynamicProperty {
138138
}
139139
}
140140

141-
@available(iOS 14.0, *)
141+
@available(iOS 14.0, macOS 10.16, tvOS 14.0, watchOS 7.0, *)
142142
extension QueryNext.WrappedValue where O.Variables == EmptyVariables {
143143
public func get() -> QueryNext.Result {
144144
get(.init())

0 commit comments

Comments
 (0)
Please sign in to comment.