Skip to content

Commit fd693ce

Browse files
Release 4.1.1 (#16)
* chore: release version 4.1.1 * chore: remove unused files --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 55c25b4 commit fd693ce

File tree

7 files changed

+51
-113
lines changed

7 files changed

+51
-113
lines changed

.github/workflows/BuildAutomation.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/workflows/CreateReleaseFromChangeLog.yml

Lines changed: 0 additions & 93 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Change Log
22

3+
## 4.1.1 (Oct 28, 2025)
4+
### Bug Fixes
5+
- Resolved WebSocket connection failure due to User-Agent header on .NET Framework
6+
7+
## 4.1.0 (Nov 29, 2024)
8+
### Features
9+
- Added `SetPushTriggerOption` to `SendbirdChatClient`
10+
- Added `GetPushTriggerOption` to `SendbirdChatClient`
11+
- Added `SetMyPushTriggerOption` to `SbGroupChannel`
12+
- Added `GetMyPushTriggerOption` to `SbGroupChannel`
13+
- Added `SbPushTriggerOption`
14+
### Bug Fixes
15+
- Fixed an issue with `SendbirdChat.BlockUser` where 'User not found error' occurs due to URL encoding
16+
317
## 4.1.0 (Nov 29, 2024)
418
### Features
519
- Added `SetPushTriggerOption` to `SendbirdChatClient`

Runtime/Plugins/WebGL/SendbirdWebSocket.jslib.meta

Lines changed: 30 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Runtime/Scripts/Internal/Command/CommandRouter.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,13 +392,14 @@ private WsClientConnectParams CreateWebSocketClientConnectParams(string inWebSoc
392392

393393
#if UNITY_WEBGL
394394
uriStringBuilder.Append($"&{ConnectionHeaders.REQUEST_SENT_TIMESTAMP.Name}={ConnectionHeaders.REQUEST_SENT_TIMESTAMP.Value}");
395+
#else
396+
uriStringBuilder.Append($"&{ConnectionHeaders.USER_AGENT.Name}={ConnectionHeaders.USER_AGENT.Value}");
395397
#endif
396398
}
397399

398400
WsClientConnectParams wsClientConnectParams = new WsClientConnectParams(uriStringBuilder.ToString());
399401
{
400402
#if !UNITY_WEBGL
401-
wsClientConnectParams.CustomHeaders.Add(ConnectionHeaders.USER_AGENT.Name, ConnectionHeaders.USER_AGENT.Value);
402403
wsClientConnectParams.CustomHeaders.Add(ConnectionHeaders.REQUEST_SENT_TIMESTAMP.Name, ConnectionHeaders.REQUEST_SENT_TIMESTAMP.Value);
403404
#endif
404405

Runtime/Scripts/UnityPlatform/UnityPlatformApplication.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ namespace Sendbird.Chat
99
{
1010
internal class UnityPlatformApplication : IPlatformApplication
1111
{
12-
string IPlatformApplication.SdkVersion => "4.1.0";
12+
// NOTE: This version is automatically updated by the PublishPackage workflow during deployment.
13+
// Only update manually when making releases outside of the automated workflow.
14+
string IPlatformApplication.SdkVersion => "4.1.1";
1315
string IPlatformApplication.PlatformName => "Unity";
1416
string IPlatformApplication.PlatformVersion => Application.unityVersion;
1517
string IPlatformApplication.OsName => Application.platform.ToString();

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "com.sendbird.chat",
33
"displayName": "SendbirdChat",
4-
"version": "4.1.0",
4+
"version": "4.1.1",
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",
8-
"description": "The Sendbird Chat SDK for Unity allows you to add real-time chat into your client app with minimal effort. Sendbird offers a feature rich, scalable, and proven chat solution depended on by companies like Reddit, Hinge, PubG and Paytm.",
8+
"description": "The Sendbird Chat SDK for Unity allows you to add real-time chat into your client app with minimal effort. Sendbird offers a feature rich, scalable, and proven chat solution.",
99
"dependencies": {
1010
"com.unity.nuget.newtonsoft-json": "2.0.0"
1111
},

0 commit comments

Comments
 (0)