File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed
Internal/Network/Connection Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 11# Change Log
22
3+ ## 4.1.2 (Nov 3, 2025)
4+ ### Improvements
5+ - Removed unnecessary URL encoding from SB-SDK-User-Agent header
6+
37## 4.1.1 (Oct 28, 2025)
48### Bug Fixes
59- Resolved WebSocket connection failure due to User-Agent header on .NET Framework
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ public TimestampHeader(string inName)
4040 $ "main_sdk_info=chat/{ SendbirdChatMainContext . PLATFORM_NAME . ToLower ( ) } /{ SendbirdChatMainContext . SDK_VERSION } " +
4141 $ "&device_os_platform={ SendbirdChatMainContext . OS_NAME . ToLower ( ) } " +
4242 $ "&os_version={ SendbirdChatMainContext . OS_VERSION } " +
43- $ "&platform_version={ SendbirdChatMainContext . PLATFORM_VERSION } ", inApplyUrlEncode : true ) ;
43+ $ "&platform_version={ SendbirdChatMainContext . PLATFORM_VERSION } ") ;
4444
4545 internal static readonly Header ACCEPT = new Header ( "Accept" , MimeType . APPLICATION_JSON ) ;
4646 internal static readonly TimestampHeader REQUEST_SENT_TIMESTAMP = new TimestampHeader ( "Request-Sent-Timestamp" ) ;
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ internal class UnityPlatformApplication : IPlatformApplication
1111 {
1212 // NOTE: This version is automatically updated by the PublishPackage workflow during deployment.
1313 // Only update manually when making releases outside of the automated workflow.
14- string IPlatformApplication . SdkVersion => "4.1.1 " ;
14+ string IPlatformApplication . SdkVersion => "4.1.2 " ;
1515 string IPlatformApplication . PlatformName => "Unity" ;
1616 string IPlatformApplication . PlatformVersion => Application . unityVersion ;
1717 string IPlatformApplication . OsName => Application . platform . ToString ( ) ;
Original file line number Diff line number Diff line change 11{
22 "name" : " com.sendbird.chat" ,
33 "displayName" : " SendbirdChat" ,
4- "version" : " 4.1.1 " ,
4+ "version" : " 4.1.2 " ,
55 "documentationUrl" : " https://github.com/sendbird/sendbird-chat-sdk-unity" ,
66 "changelogUrl" : " https://github.com/sendbird/sendbird-chat-sdk-unity/blob/master/CHANGELOG.md" ,
77 "licensesUrl" : " https://github.com/sendbird/sendbird-chat-sdk-unity/blob/master/LICENSE.md" ,
You can’t perform that action at this time.
0 commit comments