Skip to content

Commit

Permalink
* Fixed an error where the channel update event was not triggered whe…
Browse files Browse the repository at this point in the history
…n receiving a new message using the platform API

* Improved cleanup process on WebSocket reconnection
  • Loading branch information
Pitt-Cho committed Aug 8, 2022
1 parent 60ce318 commit 6a34c6d
Show file tree
Hide file tree
Showing 15 changed files with 584 additions and 573 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log
### v3.1.22 (Aug 03, 2022)

### v3.1.23 (Aug 8, 2022)
* Fixed an error where the channel update event was not triggered when receiving a new message using the platform API
* Improved cleanup process on WebSocket reconnection

### v3.1.22 (Aug 3, 2022)
* Added Metadata key filter that was previously missing in belongsTo of SBDGroupChannelListQuery
* Disabled DB access if local caching is off
* Fixed WS connection being lost after switching from wifi to LTE
Expand Down
2 changes: 1 addition & 1 deletion SendBirdSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Pod::Spec.new do |s|
s.name = 'SendBirdSDK'
s.version = "3.1.22"
s.version = "3.1.23"
s.summary = 'Sendbird Chat iOS Framework'
s.description = 'Messaging and Chat API for Mobile Apps and Websites'
s.homepage = 'https://sendbird.com'
Expand Down
18 changes: 9 additions & 9 deletions Sources/SendBirdSDK.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,39 +5,39 @@
<key>AvailableLibraries</key>
<array>
<dict>
<key>BitcodeSymbolMapsPath</key>
<string>BCSymbolMaps</string>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_armv7</string>
<string>ios-arm64_i386_x86_64-simulator</string>
<key>LibraryPath</key>
<string>SendBirdSDK.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>armv7</string>
<string>i386</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>BitcodeSymbolMapsPath</key>
<string>BCSymbolMaps</string>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_i386_x86_64-simulator</string>
<string>ios-arm64_armv7</string>
<key>LibraryPath</key>
<string>SendBirdSDK.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>i386</string>
<string>x86_64</string>
<string>armv7</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>3.1.22</string>
<string>3.1.23</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@
</data>
<key>Info.plist</key>
<data>
HYtYmNIOuh0rFtCQJIMl7xmQ2Rc=
xaL1SyQ1Y71/SNcag06wzTtJfLM=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>3.1.22</string>
<string>3.1.23</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down
Binary file not shown.

0 comments on commit 6a34c6d

Please sign in to comment.