Skip to content

Commit 9bd6406

Browse files
chore: release version 4.1.2 (#17)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent fd693ce commit 9bd6406

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
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

Runtime/Scripts/Internal/Network/Connection/ConnectionHeaders.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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");

Runtime/Scripts/UnityPlatform/UnityPlatformApplication.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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();

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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",

0 commit comments

Comments
 (0)