Skip to content

Commit d74e1a9

Browse files
authored
Merge pull request #8 from sendbird/release/v4/v4.0.0-beta.3
Release/v4/v4.0.0 beta.3
2 parents 5551df6 + 929fc38 commit d74e1a9

File tree

7 files changed

+142
-3
lines changed

7 files changed

+142
-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.0.0-beta.3 (Apr 9, 2024)
4+
### Improvements
5+
- Added SendbirdChatPrivacyInfo.xcprivacy for Apple Privacy Manifest
6+
37
## 4.0.0-beta.2 (Mar 7, 2024)
48
### Improvements
59
- Changed the JSON library from a binary to a dependency form

Runtime/Plugins.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Runtime/Plugins/iOS.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>NSPrivacyCollectedDataTypes</key>
6+
<array>
7+
<dict>
8+
<key>NSPrivacyCollectedDataType</key>
9+
<string>NSPrivacyCollectedDataTypeOtherUsageData</string>
10+
<key>NSPrivacyCollectedDataTypeLinked</key>
11+
<true/>
12+
<key>NSPrivacyCollectedDataTypeTracking</key>
13+
<false/>
14+
<key>NSPrivacyCollectedDataTypePurposes</key>
15+
<array>
16+
<string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string>
17+
</array>
18+
</dict>
19+
<dict>
20+
<key>NSPrivacyCollectedDataType</key>
21+
<string>NSPrivacyCollectedDataTypeUserID</string>
22+
<key>NSPrivacyCollectedDataTypeLinked</key>
23+
<true/>
24+
<key>NSPrivacyCollectedDataTypeTracking</key>
25+
<false/>
26+
<key>NSPrivacyCollectedDataTypePurposes</key>
27+
<array>
28+
<string>NSPrivacyCollectedDataTypePurposeProductPersonalization</string>
29+
<string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string>
30+
</array>
31+
</dict>
32+
<dict>
33+
<key>NSPrivacyCollectedDataType</key>
34+
<string>NSPrivacyCollectedDataTypeEmailsOrTextMessages</string>
35+
<key>NSPrivacyCollectedDataTypeLinked</key>
36+
<false/>
37+
<key>NSPrivacyCollectedDataTypeTracking</key>
38+
<false/>
39+
<key>NSPrivacyCollectedDataTypePurposes</key>
40+
<array>
41+
<string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string>
42+
</array>
43+
</dict>
44+
<dict>
45+
<key>NSPrivacyCollectedDataType</key>
46+
<string>NSPrivacyCollectedDataTypeOtherUserContent</string>
47+
<key>NSPrivacyCollectedDataTypeLinked</key>
48+
<false/>
49+
<key>NSPrivacyCollectedDataTypeTracking</key>
50+
<false/>
51+
<key>NSPrivacyCollectedDataTypePurposes</key>
52+
<array>
53+
<string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string>
54+
</array>
55+
</dict>
56+
</array>
57+
<key>NSPrivacyAccessedAPITypes</key>
58+
<array>
59+
<dict>
60+
<key>NSPrivacyAccessedAPIType</key>
61+
<string>NSPrivacyAccessedAPICategoryFileTimestamp</string>
62+
<key>NSPrivacyAccessedAPITypeReasons</key>
63+
<array>
64+
<string>0A2A.1</string>
65+
</array>
66+
</dict>
67+
<dict>
68+
<key>NSPrivacyAccessedAPIType</key>
69+
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
70+
<key>NSPrivacyAccessedAPITypeReasons</key>
71+
<array>
72+
<string>CA92.1</string>
73+
</array>
74+
</dict>
75+
</array>
76+
</dict>
77+
</plist>

Runtime/Plugins/iOS/SendbirdChatPrivacyInfo.xcprivacy.meta

Lines changed: 42 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Runtime/Scripts/Internal/ChatClient/SendbirdChatMain/SendbirdChatMainContext.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ namespace Sendbird.Chat
99
{
1010
internal class SendbirdChatMainContext
1111
{
12-
internal const string SDK_VERSION = "4.0.0-beta.1";
12+
internal const string SDK_VERSION = "4.0.0-beta.3";
1313
internal const string PLATFORM_NAME = "Unity";
14-
internal static readonly string PLATFORM_VERSION = Application.version;
14+
internal static readonly string PLATFORM_VERSION = Application.unityVersion;
1515
internal static readonly string OS_NAME = Application.platform.ToString();
1616
internal static readonly string OS_VERSION = SystemInfo.operatingSystem;
1717
internal const int QUERY_DEFAULT_LIMIT = 20;

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.0.0-beta.2",
4+
"version": "4.0.0-beta.3",
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)