Skip to content

Commit 7e7b8ef

Browse files
SDK version updated to 22.06.1 (#107)
* SDK version updated to 22.06.1 -- Changelog updated with iOS push notification action fix * Install.h file updated * Update CHANGELOG.md Co-authored-by: ArtursKadikis <[email protected]>
1 parent bb4d80d commit 7e7b8ef

File tree

6 files changed

+13
-6
lines changed

6 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 22.06.1
2+
* !! iOS Push notification action issue fixed. To handle the push notification action you need to add this new call "[CountlyReactNative startObservingNotifications];" in "AppDelegate.m"
3+
For more details please check the below mentioned link of "Handling push callbacks" section in Countly SDK documentation.
4+
https://support.count.ly/hc/en-us/articles/360037813231-React-Native-Bridge-#handling-push-callbacks
5+
* Underlying android SDK version is 22.06.0
6+
* Underlying iOS SDK version is 22.06.2
7+
18
## 22.06.0
29
* Added Feedback widget callbacks (widgetShown, widgetClosed and retrievedWidgets)
310
* Updated underlying android SDK version to 22.06.0
@@ -142,7 +149,7 @@ https://support.count.ly/hc/en-us/articles/360037813231-React-Native-Bridge-#han
142149
* Updated underlying ios SDK to 20.11.1
143150

144151
## 20.11.0
145-
* !! Due to cocoapods issue with Xcode 12, we have created a new temporary Pod with a fix for Countly iOS SDK and named it "CounltyPod".
152+
* !! Due to cocoapods issue with Xcode 12, we have created a new temporary Pod with a fix for Countly iOS SDK and named it "CountlyPod".
146153
Due to that change if you have already add the reference of files "CountlyNotificationService.h/m" then you need to update these files references by adding the files from "CountlyPod" and remove the old reference files.
147154
* !! Consent change !! To use remote config, you now need to give "remote-config" consent
148155
* !! Push breaking changes !! Google play vulnerability issue fixed due to broadcast receiver for android push notification

CountlyReactNative.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'CountlyReactNative'
3-
s.version = '22.06.0'
3+
s.version = '22.06.1'
44
s.license = {
55
:type => 'COMMUNITY',
66
:text => <<-LICENSE

android/src/main/java/ly/count/android/sdk/react/CountlyReactNative.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public String toString(){
8181
public class CountlyReactNative extends ReactContextBaseJavaModule implements LifecycleEventListener {
8282

8383
public static final String TAG = "CountlyRNPlugin";
84-
private String COUNTLY_RN_SDK_VERSION_STRING = "22.06.0";
84+
private String COUNTLY_RN_SDK_VERSION_STRING = "22.06.1";
8585
private String COUNTLY_RN_SDK_NAME = "js-rnb-android";
8686

8787
private static final CountlyConfig config = new CountlyConfig();

example/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ rm App.js
1111
curl https://raw.githubusercontent.com/Countly/countly-sdk-react-native-bridge/master/example/App.js --output App.js
1212
curl https://raw.githubusercontent.com/Countly/countly-sdk-react-native-bridge/master/example/Example.js --output Example.js
1313

14-
14+
1515

1616
cd ./ios
1717
pod install

ios/src/CountlyReactNative.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ @interface CountlyFeedbackWidget ()
2222
+ (CountlyFeedbackWidget *)createWithDictionary:(NSDictionary *)dictionary;
2323
@end
2424

25-
NSString* const kCountlyReactNativeSDKVersion = @"22.06.0";
25+
NSString* const kCountlyReactNativeSDKVersion = @"22.06.1";
2626
NSString* const kCountlyReactNativeSDKName = @"js-rnb-ios";
2727

2828
CountlyConfig* config = nil; // alloc here

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "countly-sdk-react-native-bridge",
3-
"version": "22.06.0",
3+
"version": "22.06.1",
44
"author": "Countly <[email protected]> (https://count.ly/)",
55
"bugs": {
66
"url": "https://github.com/Countly/countly-sdk-react-native-bridge/issues"

0 commit comments

Comments
 (0)