Skip to content

Commit

Permalink
Merge pull request #82 from sendbird/release/4.24.3
Browse files Browse the repository at this point in the history
Release 4.24.3
  • Loading branch information
sendbird-sdk-deployment authored Feb 11, 2025
2 parents 909e229 + f9ac2a6 commit 838b610
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 4 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## 4.24.3 (Feb 11, 2025)

## Improvements
- Improved logic to prevent crashes in `SessionWebSocketEngine`
- Added `AuthTokenType`
- Added `authTokenType` parameter to `authenticate()` (Default Value: `.sessionToken`)
```swift
// using AccessToken
SendbirdChat.authenticate(userId: USER_ID, authToken: ACCESS_TOKEN, authTokenType: .accessToken) { user, error in
}

// using SessionToken
SendbirdChat.authenticate(userId: USER_ID, authToken: SESSION_TOKEN) { user, error in
}
SendbirdChat.authenticate(userId: USER_ID, authToken: SESSION_TOKEN, authTokenType: .sessionToken) { user, error in
}
```
- Fixed a bug where `MessageCollectionDelegate` is not being called when a message is translated using `BaseChannel.translateUserMessage(_:targetLanguages:completionHandler:)`
- Fixed empty channels to be fetched later than non-empty channels, when fetching channels in `.latestLastMessage` order from local database
## 4.24.2 (Jan 16, 2025)

## Improvements
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ let package = Package(
targets: [
.binaryTarget(
name: "SendbirdChatSDK",
url: "https://github.com/sendbird/sendbird-chat-sdk-ios/releases/download/4.24.2/SendbirdChatSDK.xcframework.zip",
checksum: "5b0faa1f194664ade88ed23c33ddf142403b2fe596ffe228ac282f048ddad3f3"
url: "https://github.com/sendbird/sendbird-chat-sdk-ios/releases/download/4.24.3/SendbirdChatSDK.xcframework.zip",
checksum: "da87f778b899f2c20c3ae20748ee7b2e4347495d5d0f242820daee567bc98226"
),
]
)
4 changes: 2 additions & 2 deletions SendbirdChatSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Pod::Spec.new do |s|
s.name = 'SendbirdChatSDK'
s.version = "4.24.2"
s.version = "4.24.3"
s.summary = 'Sendbird Chat iOS Framework'
s.description = 'Messaging and Chat API for Mobile Apps and Websites'
s.homepage = 'https://sendbird.com'
Expand All @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
'Young Hwang' => '[email protected]',
'Kai Lee' => '[email protected]'
}
s.source = { :http => "https://github.com/sendbird/sendbird-chat-sdk-ios/releases/download/4.24.2/SendbirdChatSDK.zip", :sha1 => "9a2ba26ca848862683b589ef93d7f94a3a141125" }
s.source = { :http => "https://github.com/sendbird/sendbird-chat-sdk-ios/releases/download/4.24.3/SendbirdChatSDK.zip", :sha1 => "5050cbf13f7e96234c625fd6ae4e3269336dece2" }
s.requires_arc = true
s.platform = :ios, '12.0'
s.documentation_url = 'https://sendbird.com/docs/chat'
Expand Down

0 comments on commit 838b610

Please sign in to comment.