Skip to content

Commit 29ecc47

Browse files
Updated SDK to 0.10.13
1 parent 0553659 commit 29ecc47

File tree

5 files changed

+17
-5
lines changed

5 files changed

+17
-5
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 0.10.13 (14/02/2024)
2+
### Bug fixes
3+
* Fix for potential ANR during app update in Android.
4+
* Fix for bot not re-triggering after resolving bot conversations in Android.
5+
* Fix for a crash happening while loading conversations in Android.
6+
* Fix for agent name is not updated when any bot conversations are assigned to any agent in Android.
7+
* Fix for Agent first name display issue when bot conversations are assigned to an agent.
8+
* Addressed crashes affecting users running iOS versions prior to 13.
9+
* Fixed compromised visibility of the date picker view in dark mode in iOS.
10+
* Fix display of team member information in chat messages.
11+
* Fix infinite loading issue for users with expired JWT authentication.
12+
113
## 0.10.12 (10/01/2023)
214
### Bug fixes
315
* Fix to enable text input editor when using Freshchat Public APIs to send messages on behalf of an agent/bot in Android.

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ android {
3535

3636
dependencies {
3737
implementation 'com.android.support:localbroadcastmanager:28.0.0'
38-
implementation 'com.github.freshworks:freshchat-android:6.1.1'
38+
implementation 'com.github.freshworks:freshchat-android:6.1.5'
3939
}
4040

4141

ios/freshchat_sdk.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'freshchat_sdk'
7-
s.version = '0.10.12'
7+
s.version = '0.10.13'
88
s.summary = 'Freshchat Flutter SDK - iOS'
99
s.description = <<-DESC
1010
Freshchat Flutter SDK - iOS.
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
1717
s.public_header_files = 'Classes/**/*.h'
1818
s.dependency 'Flutter'
1919
s.platform = :ios
20-
s.dependency "FreshchatSDK", '5.9.1'
20+
s.dependency "FreshchatSDK", '5.9.3'
2121

2222
# Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
2323
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }

lib/freshchat_sdk.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ class Freshchat {
229229
final String sdkVersion = await _channel.invokeMethod('getSdkVersion');
230230
final String operatingSystem = Platform.operatingSystem;
231231
// As there is no simple way to get current freshchat flutter sdk version, we are hardcoding here.
232-
final String allSdkVersion = "flutter-0.10.12-$operatingSystem-$sdkVersion ";
232+
final String allSdkVersion = "flutter-0.10.13-$operatingSystem-$sdkVersion ";
233233
return allSdkVersion;
234234
}
235235

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Freshchat is a modern messaging software for sales and customer eng
33
repository: https://github.com/freshworks/freshchat-flutter-sdk
44

55
# Whenever this version is updated, it must also be updated in Freshchat::getSdkVersion()
6-
version: 0.10.12
6+
version: 0.10.13
77
homepage: https://www.freshworks.com/
88

99
environment:

0 commit comments

Comments
 (0)