Skip to content

Commit a4f5fa0

Browse files
Merge pull request #465 from ably/bump-ably-cocoa-to-1.2.51
[ECO-5397] Bump ably-cocoa to 1.2.51
2 parents 8ed5e8b + e089fb6 commit a4f5fa0

4 files changed

Lines changed: 35 additions & 7 deletions

File tree

AblyChat.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.resolved

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ let package = Package(
2626
// This is the SDK's only dependency.
2727
.package(
2828
url: "https://github.com/ably/ably-cocoa",
29-
from: "1.2.48",
29+
from: "1.2.51",
3030
),
3131

3232
// All of the following dependencies are only used for internal purposes (testing or build tooling).

Tests/AblyChatTests/Mocks/MockAblyCocoaRealtime.swift

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,10 @@ final class MockAblyCocoaRealtime: NSObject, RealtimeClientProtocol, @unchecked
167167
fatalError("Not implemented")
168168
}
169169

170+
var modes: ARTChannelMode {
171+
fatalError("Not implemented")
172+
}
173+
170174
func publish(_: String?, data _: Any?) {
171175
fatalError("Not implemented")
172176
}
@@ -330,6 +334,30 @@ final class MockAblyCocoaRealtime: NSObject, RealtimeClientProtocol, @unchecked
330334
func unsubscribe(_: String, listener _: ARTEventListener) {
331335
fatalError("Not implemented")
332336
}
337+
338+
func publish(for _: ARTMessage, annotation _: ARTOutboundAnnotation, callback _: ARTCallback? = nil) {
339+
fatalError("Not implemented")
340+
}
341+
342+
func publish(forMessageSerial _: String, annotation _: ARTOutboundAnnotation, callback _: ARTCallback? = nil) {
343+
fatalError("Not implemented")
344+
}
345+
346+
func delete(for _: ARTMessage, annotation _: ARTOutboundAnnotation, callback _: ARTCallback? = nil) {
347+
fatalError("Not implemented")
348+
}
349+
350+
func delete(forMessageSerial _: String, annotation _: ARTOutboundAnnotation, callback _: ARTCallback? = nil) {
351+
fatalError("Not implemented")
352+
}
353+
354+
func getFor(_: ARTMessage, query _: ARTAnnotationsQuery, callback _: @escaping ARTPaginatedAnnotationsCallback) {
355+
fatalError("Not implemented")
356+
}
357+
358+
func getForMessageSerial(_: String, query _: ARTAnnotationsQuery, callback _: @escaping ARTPaginatedAnnotationsCallback) {
359+
fatalError("Not implemented")
360+
}
333361
}
334362

335363
final class Connection: NSObject, CoreConnectionProtocol {

0 commit comments

Comments
 (0)