@abihealth/goapp-react-native 1.22.0 → 1.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/README.md +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.23.0](https://github.com/abiglobalhealth/react-native-sdk/compare/goapp-react-native-v1.22.0...goapp-react-native-v1.23.0) (2025-04-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* document option to disable SSL pinning in ConsultationsProvider ([#176](https://github.com/abiglobalhealth/react-native-sdk/issues/176)) ([22b0814](https://github.com/abiglobalhealth/react-native-sdk/commit/22b0814bd17faf4d18e577e6ddd96c68624e65ca))
|
|
9
|
+
|
|
3
10
|
## [1.22.0](https://github.com/abiglobalhealth/react-native-sdk/compare/goapp-react-native-v1.21.0...goapp-react-native-v1.22.0) (2025-04-23)
|
|
4
11
|
|
|
5
12
|
|
package/README.md
CHANGED
|
@@ -187,6 +187,7 @@ const App = () => {
|
|
|
187
187
|
theme={theme} // Optional
|
|
188
188
|
components={components} // Optional
|
|
189
189
|
onError={onError} // Optional
|
|
190
|
+
disableSslPinning={false} // Optional, defaults to false
|
|
190
191
|
>
|
|
191
192
|
{/* Other components */}
|
|
192
193
|
</ConsultationsProvider>
|
|
@@ -203,6 +204,7 @@ export default App
|
|
|
203
204
|
- `theme` (object, optional): Customize visual theme
|
|
204
205
|
- `components` (object, optional): Override default components
|
|
205
206
|
- `onError` (function, optional): Error callback
|
|
207
|
+
- `disableSslPinning` (boolean, optional): Disable SSL certificate pinning. By default, SSL pinning is enabled for security. Only disable this if you know what you're doing, as it may make your app vulnerable to man-in-the-middle attacks.
|
|
206
208
|
|
|
207
209
|
### 3. Use the VideoConsultation component
|
|
208
210
|
|