fix #1393
This commit is contained in:
parent
f5b20e77e8
commit
d5170c3dd8
|
@ -1,3 +1,8 @@
|
|||
## 6.0.0-beta.8
|
||||
|
||||
- Merged "Exposed "shared" property of HttpServer bind method to support more use-cases." [#1395](https://github.com/pichillilorenzo/flutter_inappwebview/pull/1395) (thanks to [LugonjaAleksandar](https://github.com/LugonjaAleksandar))
|
||||
- Fixed "ios 14.5 crash reports upgradeKnownHostsToHTTPS" [#1393](https://github.com/pichillilorenzo/flutter_inappwebview/issues/1393)
|
||||
|
||||
## 6.0.0-beta.7
|
||||
|
||||
- Updated Android hybrid composition implementation
|
||||
|
@ -71,6 +76,10 @@
|
|||
- Removed `URLProtectionSpace.iosIsProxy` property
|
||||
- `historyUrl` and `baseUrl` of `InAppWebViewInitialData` can be `null`
|
||||
|
||||
## 5.7.1
|
||||
|
||||
- Exposed "shared" property of HttpServer bind method to support more use-cases. (thanks to [LugonjaAleksandar](https://github.com/LugonjaAleksandar))
|
||||
|
||||
## 5.7.0
|
||||
|
||||
- Added `PlatformViewsService.initExpensiveAndroidView` for Android
|
||||
|
|
|
@ -594,7 +594,7 @@ public class InAppWebView: WKWebView, UIScrollViewDelegate, WKUIDelegate,
|
|||
configuration.limitsNavigationsToAppBoundDomains = settings.limitsNavigationsToAppBoundDomains
|
||||
}
|
||||
|
||||
if #available(iOS 14.5, *) {
|
||||
if #available(iOS 15.0, *) {
|
||||
configuration.upgradeKnownHostsToHTTPS = settings.upgradeKnownHostsToHTTPS
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1183,7 +1183,7 @@ class InAppWebViewSettings_ {
|
|||
///A Boolean value indicating whether HTTP requests to servers known to support HTTPS should be automatically upgraded to HTTPS requests.
|
||||
///The default value is `true`.
|
||||
///
|
||||
///**NOTE for iOS**: available on iOS 14.5+.
|
||||
///**NOTE for iOS**: available on iOS 15.0+.
|
||||
///
|
||||
///**NOTE for MacOS**: available on MacOS 11.3+.
|
||||
///
|
||||
|
|
|
@ -1140,7 +1140,7 @@ class InAppWebViewSettings {
|
|||
///A Boolean value indicating whether HTTP requests to servers known to support HTTPS should be automatically upgraded to HTTPS requests.
|
||||
///The default value is `true`.
|
||||
///
|
||||
///**NOTE for iOS**: available on iOS 14.5+.
|
||||
///**NOTE for iOS**: available on iOS 15.0+.
|
||||
///
|
||||
///**NOTE for MacOS**: available on MacOS 11.3+.
|
||||
///
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: flutter_inappwebview
|
||||
description: A Flutter plugin that allows you to add an inline webview, to use an headless webview, and to open an in-app browser window.
|
||||
version: 6.0.0-beta.7
|
||||
version: 6.0.0-beta.8
|
||||
homepage: https://inappwebview.dev/
|
||||
repository: https://github.com/pichillilorenzo/flutter_inappwebview
|
||||
issue_tracker: https://github.com/pichillilorenzo/flutter_inappwebview/issues
|
||||
|
|
Loading…
Reference in New Issue