Skip to content

Commit 82e2c4c

Browse files
authored
Release 7.2.0 (#214)
* Release 7.2.0 🚀 Enhancements - A newly designed composer for the messenger. 🐛 Bug Fixes - [iOS] Fixes an issue with text fields in surveys. - Fixed issue allowing customers to start a conversation after reacting to an article. - Fixes an issue to handle empty message parts for bot introductions.
1 parent 964b577 commit 82e2c4c

File tree

6 files changed

+384
-491
lines changed

6 files changed

+384
-491
lines changed

Diff for: .circleci/config.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ version: 2.1
33
# Default VM config to be used for macOS builds
44
macos_config: &macos_config
55
macos:
6-
xcode: 15.0.0
7-
resource_class: macos.x86.medium.gen2
6+
xcode: 15.3.0
7+
resource_class: macos.m1.large.gen1
88
shell: /bin/bash --login -eo pipefail
99

1010
setup_env_file: &setup_env_file
@@ -53,6 +53,7 @@ jobs:
5353
- run:
5454
name: Install dependencies
5555
command: |
56+
corepack enable
5657
yarn install --cwd example
5758
yarn install --cwd example/e2e
5859
yarn install

Diff for: android/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,5 @@ dependencies {
6969
//noinspection GradleDynamicVersion
7070
implementation "com.facebook.react:react-native:+" // From node_modules
7171
implementation "com.google.firebase:firebase-messaging:${safeExtGet('firebaseMessagingVersion', '20.2.+')}"
72-
implementation 'io.intercom.android:intercom-sdk:15.9.+'
72+
implementation 'io.intercom.android:intercom-sdk:15.10.+'
7373
}

Diff for: example/ios/Podfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ target 'IntercomReactNativeExample' do
3737
end
3838

3939
# Flipper requires a crude patch to bump up iOS deployment target, or "error: thread-local storage is not supported for the current target"
40-
# I'm not aware of any other way to fix this one other than bumping iOS deployment target to match react-native (iOS 11 now)
40+
# I'm not aware of any other way to fix this one other than bumping iOS deployment target to match react-native (iOS 15 now)
4141
installer.pods_project.targets.each do |target|
4242
target.build_configurations.each do |config|
4343
# Setting deployment target to iOS 11 for RCT-Folly to avoid errors with Flipper.
4444
if ['RCT-Folly'].include? target.name
45-
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
45+
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
4646
end
4747
config.build_settings['GCC_WARN_INHIBIT_ALL_WARNINGS'] = 'YES'
4848
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)', '_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION']

0 commit comments

Comments
 (0)