Skip to content

Commit

Permalink
Release - 4.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sendbird-sdk-deployment committed Jan 20, 2023
1 parent e075fbb commit 2d7d80c
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog
## v4.2.3 (Jan 10, 2023)

## v4.2.4 (Jan 20, 2023)


### **Features**
You can now set longer timeout value (Previously 10s) for session token expiry. (Default: 60s, Maximum: 1800s). This means that Sendbird SDK will wait longer for your new session token, making it easier for you to reconnect to our service.

- `@objc class func setSessionTokenRefreshTimeout(_ timeout: Int)`


### **Improvements**
* Fixed bug where `BaseChannelHandler.onChannelChanged` and `GroupChannelHandler.onPinnedMessageUpdated` are not being called when the pinned message is updated
* Fixed channelURL filter not working when fetching pendingMessage
* Fixed wrong channels being returned in copyMessage completionHandler

### **Improvements**
* Improved database synchronization stability

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/v4.2.3/SendbirdChatSDK.xcframework.zip",
checksum: "b502b1bfaad699ab7f17dd04be7e44b278399dc21473b246524493d804e75855"
url: "https://github.com/sendbird/sendbird-chat-sdk-ios/releases/download/v4.2.4/SendbirdChatSDK.xcframework.zip",
checksum: "c9eb7a5aa6b308cf07d63926fca7876ce958398cdd8930ea72e1fd4efc9c61e0"
),
]
)
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.2.3"
s.version = "4.2.4"
s.summary = 'Sendbird Chat iOS Framework'
s.description = 'Messaging and Chat API for Mobile Apps and Websites'
s.homepage = 'https://sendbird.com'
Expand All @@ -13,7 +13,7 @@ Pod::Spec.new do |s|
'Celine Moon' => '[email protected]',
'Ernest Hong' => '[email protected]'
}
s.source = { :http => "https://github.com/sendbird/sendbird-chat-sdk-ios/releases/download/v4.2.3/SendbirdChatSDK.zip", :sha1 => "02f33ed86fc68db6eaa677f327478dcce65dfdc6" }
s.source = { :http => "https://github.com/sendbird/sendbird-chat-sdk-ios/releases/download/v4.2.4/SendbirdChatSDK.zip", :sha1 => "f2fd297c0f85cbd72d8545d84c9930dd1674620d" }
s.requires_arc = true
s.platform = :ios, '9.0'
s.documentation_url = 'https://sendbird.com/docs/chat'
Expand Down

0 comments on commit 2d7d80c

Please sign in to comment.