Skip to content

Commit

Permalink
Release 7.2.0 (#214)
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
Br1an-Boyle authored Jul 24, 2024
1 parent 964b577 commit 82e2c4c
Show file tree
Hide file tree
Showing 6 changed files with 384 additions and 491 deletions.
5 changes: 3 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ version: 2.1
# Default VM config to be used for macOS builds
macos_config: &macos_config
macos:
xcode: 15.0.0
resource_class: macos.x86.medium.gen2
xcode: 15.3.0
resource_class: macos.m1.large.gen1
shell: /bin/bash --login -eo pipefail

setup_env_file: &setup_env_file
Expand Down Expand Up @@ -53,6 +53,7 @@ jobs:
- run:
name: Install dependencies
command: |
corepack enable
yarn install --cwd example
yarn install --cwd example/e2e
yarn install
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,5 @@ dependencies {
//noinspection GradleDynamicVersion
implementation "com.facebook.react:react-native:+" // From node_modules
implementation "com.google.firebase:firebase-messaging:${safeExtGet('firebaseMessagingVersion', '20.2.+')}"
implementation 'io.intercom.android:intercom-sdk:15.9.+'
implementation 'io.intercom.android:intercom-sdk:15.10.+'
}
4 changes: 2 additions & 2 deletions example/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ target 'IntercomReactNativeExample' do
end

# Flipper requires a crude patch to bump up iOS deployment target, or "error: thread-local storage is not supported for the current target"
# 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)
# 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)
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
# Setting deployment target to iOS 11 for RCT-Folly to avoid errors with Flipper.
if ['RCT-Folly'].include? target.name
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
end
config.build_settings['GCC_WARN_INHIBIT_ALL_WARNINGS'] = 'YES'
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)', '_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION']
Expand Down
Loading

0 comments on commit 82e2c4c

Please sign in to comment.