Skip to content

Commit

Permalink
Merge pull request #8 from sendbird/release/v4/v4.0.0-beta.3
Browse files Browse the repository at this point in the history
Release/v4/v4.0.0 beta.3
  • Loading branch information
OnestarLee authored Apr 9, 2024
2 parents 5551df6 + 929fc38 commit d74e1a9
Show file tree
Hide file tree
Showing 7 changed files with 142 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 4.0.0-beta.3 (Apr 9, 2024)
### Improvements
- Added SendbirdChatPrivacyInfo.xcprivacy for Apple Privacy Manifest

## 4.0.0-beta.2 (Mar 7, 2024)
### Improvements
- Changed the JSON library from a binary to a dependency form
Expand Down
8 changes: 8 additions & 0 deletions Runtime/Plugins.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions Runtime/Plugins/iOS.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

77 changes: 77 additions & 0 deletions Runtime/Plugins/iOS/SendbirdChatPrivacyInfo.xcprivacy
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NSPrivacyCollectedDataTypes</key>
<array>
<dict>
<key>NSPrivacyCollectedDataType</key>
<string>NSPrivacyCollectedDataTypeOtherUsageData</string>
<key>NSPrivacyCollectedDataTypeLinked</key>
<true/>
<key>NSPrivacyCollectedDataTypeTracking</key>
<false/>
<key>NSPrivacyCollectedDataTypePurposes</key>
<array>
<string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string>
</array>
</dict>
<dict>
<key>NSPrivacyCollectedDataType</key>
<string>NSPrivacyCollectedDataTypeUserID</string>
<key>NSPrivacyCollectedDataTypeLinked</key>
<true/>
<key>NSPrivacyCollectedDataTypeTracking</key>
<false/>
<key>NSPrivacyCollectedDataTypePurposes</key>
<array>
<string>NSPrivacyCollectedDataTypePurposeProductPersonalization</string>
<string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string>
</array>
</dict>
<dict>
<key>NSPrivacyCollectedDataType</key>
<string>NSPrivacyCollectedDataTypeEmailsOrTextMessages</string>
<key>NSPrivacyCollectedDataTypeLinked</key>
<false/>
<key>NSPrivacyCollectedDataTypeTracking</key>
<false/>
<key>NSPrivacyCollectedDataTypePurposes</key>
<array>
<string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string>
</array>
</dict>
<dict>
<key>NSPrivacyCollectedDataType</key>
<string>NSPrivacyCollectedDataTypeOtherUserContent</string>
<key>NSPrivacyCollectedDataTypeLinked</key>
<false/>
<key>NSPrivacyCollectedDataTypeTracking</key>
<false/>
<key>NSPrivacyCollectedDataTypePurposes</key>
<array>
<string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string>
</array>
</dict>
</array>
<key>NSPrivacyAccessedAPITypes</key>
<array>
<dict>
<key>NSPrivacyAccessedAPIType</key>
<string>NSPrivacyAccessedAPICategoryFileTimestamp</string>
<key>NSPrivacyAccessedAPITypeReasons</key>
<array>
<string>0A2A.1</string>
</array>
</dict>
<dict>
<key>NSPrivacyAccessedAPIType</key>
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
<key>NSPrivacyAccessedAPITypeReasons</key>
<array>
<string>CA92.1</string>
</array>
</dict>
</array>
</dict>
</plist>
42 changes: 42 additions & 0 deletions Runtime/Plugins/iOS/SendbirdChatPrivacyInfo.xcprivacy.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ namespace Sendbird.Chat
{
internal class SendbirdChatMainContext
{
internal const string SDK_VERSION = "4.0.0-beta.1";
internal const string SDK_VERSION = "4.0.0-beta.3";
internal const string PLATFORM_NAME = "Unity";
internal static readonly string PLATFORM_VERSION = Application.version;
internal static readonly string PLATFORM_VERSION = Application.unityVersion;
internal static readonly string OS_NAME = Application.platform.ToString();
internal static readonly string OS_VERSION = SystemInfo.operatingSystem;
internal const int QUERY_DEFAULT_LIMIT = 20;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.sendbird.chat",
"displayName": "SendbirdChat",
"version": "4.0.0-beta.2",
"version": "4.0.0-beta.3",
"documentationUrl": "https://github.com/sendbird/sendbird-chat-sdk-unity",
"changelogUrl": "https://github.com/sendbird/sendbird-chat-sdk-unity/blob/master/CHANGELOG.md",
"licensesUrl": "https://github.com/sendbird/sendbird-chat-sdk-unity/blob/master/LICENSE.md",
Expand Down

0 comments on commit d74e1a9

Please sign in to comment.