File tree 5 files changed +17
-5
lines changed
5 files changed +17
-5
lines changed Original file line number Diff line number Diff line change
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
+
1
13
## 0.10.12 (10/01/2023)
2
14
### Bug fixes
3
15
* Fix to enable text input editor when using Freshchat Public APIs to send messages on behalf of an agent/bot in Android.
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ android {
35
35
36
36
dependencies {
37
37
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 '
39
39
}
40
40
41
41
Original file line number Diff line number Diff line change 4
4
#
5
5
Pod ::Spec . new do |s |
6
6
s . name = 'freshchat_sdk'
7
- s . version = '0.10.12 '
7
+ s . version = '0.10.13 '
8
8
s . summary = 'Freshchat Flutter SDK - iOS'
9
9
s . description = <<-DESC
10
10
Freshchat Flutter SDK - iOS.
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
17
17
s . public_header_files = 'Classes/**/*.h'
18
18
s . dependency 'Flutter'
19
19
s . platform = :ios
20
- s . dependency "FreshchatSDK" , '5.9.1 '
20
+ s . dependency "FreshchatSDK" , '5.9.3 '
21
21
22
22
# Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
23
23
s . pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' , 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
Original file line number Diff line number Diff line change @@ -229,7 +229,7 @@ class Freshchat {
229
229
final String sdkVersion = await _channel.invokeMethod ('getSdkVersion' );
230
230
final String operatingSystem = Platform .operatingSystem;
231
231
// 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 " ;
233
233
return allSdkVersion;
234
234
}
235
235
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ description: Freshchat is a modern messaging software for sales and customer eng
3
3
repository : https://github.com/freshworks/freshchat-flutter-sdk
4
4
5
5
# Whenever this version is updated, it must also be updated in Freshchat::getSdkVersion()
6
- version : 0.10.12
6
+ version : 0.10.13
7
7
homepage : https://www.freshworks.com/
8
8
9
9
environment :
You can’t perform that action at this time.
0 commit comments