Skip to content

Commit

Permalink
Merge pull request #23 from sendbird/release/1.10.21
Browse files Browse the repository at this point in the history
Release 1.10.21
  • Loading branch information
Minhyuk Kim authored Aug 13, 2024
2 parents 9254d9a + 1bfa1b0 commit a010d9e
Show file tree
Hide file tree
Showing 26 changed files with 44,861 additions and 43,419 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

### 1.10.21 (Aug 13, 2024)
* Added `DirectCallLogListQuery.Params.startedAt` and `DirectCallLogListQuery.Params.endedAt`, which filter the list of direct call logs by the start and end date of the call.
* If `startedAt` is set and `endedAt` is not set, the range of the query will be `start_ts <= callLog.startedAt <= min(now, start_ts + 90 days)`.
* If `startedAt` is not set and `endedAt` is set, the range of the query will be `end_ts - 90 days <= callLog.startedAt <= end_ts`.
* If both `startedAt` and `endedAt` are set, the range of the query will be `start_ts <= callLog.startedAt <= end_ts`.
* If both are not set, the range is `90 days ago <= callLog.startedAt <= now`.


### 1.10.20 (Jun 11, 2024)
* Fixed an issue where Room Invitation wouldn't be canceled after 10 seconds. Now, updates to room invitation will be available for 60 seconds before the SDK disconnects from the websocket.

Expand Down
2 changes: 1 addition & 1 deletion SendBirdCalls.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SendBirdCalls"
s.version = "1.10.20"
s.version = "1.10.21"
s.summary = "real-time calls based on Sendbird Calls SDK"
s.description = "Sendbird Calls enables real-time calls between users registered within a Sendbird application"
s.homepage = "https://sendbird.com"
Expand Down
Binary file not shown.
Loading

0 comments on commit a010d9e

Please sign in to comment.