Skip to content

Commit 6ceffe4

Browse files
Rename compatibleWithLiveObjectsProtocolV6 to compatibleWithProtocolV6
Follow the rename in ably-cocoa-plugin-support (ecbf903) and update the pin. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 5b2684a commit 6ceffe4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ let package = Package(
2020
.package(name: "AblyDeltaCodec", url: "https://github.com/ably/delta-codec-cocoa", from: "1.3.5"),
2121
.package(name: "Nimble", url: "https://github.com/quick/nimble", from: "11.2.2"),
2222
// TODO: Unpin before release
23-
.package(name: "ably-cocoa-plugin-support", url: "https://github.com/ably/ably-cocoa-plugin-support", .revision("c1fe793"))
23+
.package(name: "ably-cocoa-plugin-support", url: "https://github.com/ably/ably-cocoa-plugin-support", .revision("c20f969"))
2424
],
2525
targets: [
2626
.target(

Source/ARTClientOptions.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ - (NSString *)host:(NSString *)host forEnvironment:(NSString *)environment {
252252
}
253253

254254
id<APLiveObjectsInternalPluginProtocol> plugin = [publicPlugin internalPlugin];
255-
NSAssert(plugin.compatibleWithLiveObjectsProtocolV6,
255+
NSAssert(plugin.compatibleWithProtocolV6,
256256
@"This version of ably-cocoa requires a LiveObjects plugin compatible with protocol v6.");
257257
return plugin;
258258
}

Test/AblyTests/Tests/PluginAPITests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class PluginAPITests: XCTestCase {
1515
}
1616

1717
class MockInternalLiveObjectsPlugin: NSObject, _AblyPluginSupportPrivate.LiveObjectsInternalPluginProtocol {
18-
var compatibleWithLiveObjectsProtocolV6: Bool { true }
18+
var compatibleWithProtocolV6: Bool { true }
1919

2020
internal var receivedConnectionDetails: [(connectionDetails: (any ConnectionDetailsProtocol)?, channel: any RealtimeChannel)] = []
2121

0 commit comments

Comments
 (0)