Skip to content

Commit

Permalink
(build) publish version 4.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Judas committed May 30, 2024
1 parent 898fd12 commit 504494e
Show file tree
Hide file tree
Showing 8 changed files with 831 additions and 806 deletions.
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
# 4.0.1
# 4.0.2 (Cantal)

### Release date 2024/05/30

**Bug fixes**

- Add missing callback on `logout` API
- (Android) Fix isolated markdown deeplink handling

# 4.0.1 (Cantal)

### Release date 2024/05/14

Expand All @@ -7,7 +16,7 @@
- Fix line feed escaping breaking markdown syntax in bot messages
- (Android) Fix text selection breaking markdown link handling

# 4.0.0
# 4.0.0 (Cantal)

### Release date 2024/04/16

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ The iAdvize ReactNative SDK Plugin uses the iAdvize native iOS & Android SDKs.

| Plugin | Android SDK | Android | Kotlin | iOS SDK | iOS | Xcode | Swift |
| ------ | ----------- | -------- | ------ | -------- | ---- | ------ | ----- |
| 4.0.2 | 2.12.9 | 21 -> 33 | 1.7.22 | 2.14.5 | 13.0 | 15.2.X | 5 |
| 4.0.1 | 2.12.8 | 21 -> 33 | 1.7.22 | 2.14.5 | 13.0 | 15.2.X | 5 |
| 4.0.0 | 2.12.7 | 21 -> 33 | 1.7.22 | 2.14.4 | 13.0 | 15.2.X | 5 |
| 3.4.7 | 2.12.7 | 21 -> 33 | 1.7.22 | 2.14.4 | 13.0 | 15.2.X | 5 |
Expand Down
14 changes: 14 additions & 0 deletions UPGRADING.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## 4.0.1 > 4.0.2

This release adds a missing callback to the `logout` API. It now returns a `Promise<boolean>`:

```
try {
await IAdvizeSDK.logout();
console.log('Successfully logged out of iAdvize SDK');
} catch (e) {
console.log('Error while logging out of iAdvize SDK');
console.error(e);
}
```

## 4.0.0 > 4.0.1

*Nothing to report*
Expand Down
10 changes: 6 additions & 4 deletions example/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ GEM
base64
nkf
rexml
activesupport (7.0.8.1)
activesupport (7.0.8.3)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
Expand Down Expand Up @@ -56,7 +56,7 @@ GEM
netrc (~> 0.11)
cocoapods-try (1.2.0)
colored2 (3.1.2)
concurrent-ruby (1.2.3)
concurrent-ruby (1.3.1)
escape (0.0.4)
ethon (0.16.0)
ffi (>= 1.15.0)
Expand All @@ -68,15 +68,17 @@ GEM
i18n (1.14.5)
concurrent-ruby (~> 1.0)
json (2.7.2)
minitest (5.22.3)
minitest (5.23.1)
molinillo (0.8.0)
nanaimo (0.3.0)
nap (1.1.0)
netrc (0.11.0)
nkf (0.2.0)
public_suffix (4.0.7)
rexml (3.2.6)
rexml (3.2.8)
strscan (>= 3.0.9)
ruby-macho (2.5.1)
strscan (3.1.0)
typhoeus (1.4.1)
ethon (>= 0.9.0)
tzinfo (2.0.6)
Expand Down
4 changes: 2 additions & 2 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ PODS:
- hermes-engine/Pre-built (0.72.7)
- iAdvize (2.14.5):
- TwilioVideo (~> 4.6)
- iadvize-reactnative-sdk (4.0.1):
- iadvize-reactnative-sdk (4.0.2):
- iAdvize (~> 2.14.5)
- React-Core
- libevent (2.1.12)
Expand Down Expand Up @@ -682,7 +682,7 @@ SPEC CHECKSUMS:
glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
hermes-engine: 9180d43df05c1ed658a87cc733dc3044cf90c00a
iAdvize: 73737fd33024ffbceccad55b579cd85e3aef4237
iadvize-reactnative-sdk: 81238db288c535a959d0eed6aef81ba7f1dd27d5
iadvize-reactnative-sdk: dd95c77e2c5e86b926ce24a806b18d2186da8b67
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c
RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1
Expand Down
114 changes: 57 additions & 57 deletions example/ios/example.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"test": "jest"
},
"dependencies": {
"@iadvize-oss/iadvize-react-native-sdk": "^4.0.1",
"@iadvize-oss/iadvize-react-native-sdk": "^4.0.2",
"react": "18.2.0",
"react-native": "0.72.7",
"stacktrace-parser": "^0.1.10"
Expand Down
1,479 changes: 739 additions & 740 deletions example/yarn.lock

Large diffs are not rendered by default.

0 comments on commit 504494e

Please sign in to comment.