Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync all syncs all #441

Merged
merged 2 commits into from
Nov 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ let package = Package(
.package(url: "https://github.com/bufbuild/connect-swift", exact: "1.0.0"),
.package(url: "https://github.com/apple/swift-docc-plugin.git", from: "1.4.3"),
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", exact: "1.8.3"),
.package(url: "https://github.com/sqlcipher/sqlcipher", exact: "4.5.7"),
.package(url: "https://github.com/xmtp/libxmtp-swift.git", exact: "3.0.7")
.package(url: "https://github.com/xmtp/libxmtp-swift.git", exact: "3.0.8")
],
targets: [
.target(
Expand All @@ -32,7 +31,6 @@ let package = Package(
.product(name: "Connect", package: "connect-swift"),
.product(name: "LibXMTP", package: "libxmtp-swift"),
.product(name: "CryptoSwift", package: "CryptoSwift"),
.product(name: "SQLCipher", package: "sqlcipher")
]
),
.target(
Expand Down
4 changes: 0 additions & 4 deletions Tests/XMTPTests/ConversationTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,6 @@ class ConversationTests: XCTestCase {

try await fixtures.boClient.conversations.sync()
try await boDm?.sync()
try await alixClient.conversations.sync()
try await alixClient2.conversations.sync()
try await alixClient2.preferences.syncConsent()
try await alixClient.conversations.syncAllConversations()
sleep(2)
Expand Down Expand Up @@ -253,8 +251,6 @@ class ConversationTests: XCTestCase {
)

try await alixGroup.send(content: "Hello")
try await alixClient.conversations.sync()
try await alixClient2.conversations.sync()
try await alixClient.conversations.syncAllConversations()
try await alixClient2.conversations.syncAllConversations()
let alixGroup2 = try alixClient2.findGroup(groupId: alixGroup.id)!
Expand Down
4 changes: 2 additions & 2 deletions XMTP.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "XMTP"
spec.version = "3.0.11"
spec.version = "3.0.12"
spec.summary = "XMTP SDK Cocoapod"

spec.description = <<-DESC
Expand All @@ -22,7 +22,7 @@ Pod::Spec.new do |spec|

spec.dependency 'CSecp256k1', '~> 0.2'
spec.dependency "Connect-Swift", "= 1.0.0"
spec.dependency 'LibXMTP', '= 3.0.7'
spec.dependency 'LibXMTP', '= 3.0.8'
spec.dependency 'CryptoSwift', '= 1.8.3'
spec.dependency 'SQLCipher', '= 4.5.7'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/xmtp/libxmtp-swift.git",
"state" : {
"revision" : "74733290efe7f6d13c40b7ed41ec4cd4e5d95da3",
"version" : "3.0.7"
"revision" : "a98ff96416c63dd8a0166a4db94df461668922ca",
"version" : "3.0.8"
}
},
{
Expand Down
Loading