dpogue commented on a change in pull request #1082: URL: https://github.com/apache/cordova-docs/pull/1082#discussion_r433631817
########## File path: www/_posts/2020-06-01-cordova-ios-release-6.0.0.md ########## @@ -0,0 +1,108 @@ +--- +layout: post +author: + name: Bryan Ellis +title: "Cordova iOS 6.0.0 Released!" +categories: announcements +tags: news releases +--- + +We are happy to announce that we have just released `Cordova iOS 6.0.0`! This is Cordova's official platform for building iOS mobile applications. + +* [[email protected]](https://www.npmjs.com/package/cordova-ios) + +## Release Highlights + +**To upgrade:** + +```bash +cordova platform remove ios +cordova platform add [email protected] +``` + +The most notable changes in this major release are: + +* Bumped minimum iOS version to 11.0 +* Added Xcode 11 compatibility +* Moved `WKWebView` support into **Cordova-iOS** and removed `UIWebView` code + + Due to this change, the `cordova-plugin-wkwebview-engine` plugin obsolete and will not work with this release. If you have this plugin installed, it is safe to remove with `cordova plugin remove cordova-plugin-wkwebview-engine`. + + Additionaly, `WKURLSchemeHandler` support has been introduced with this release. Using a custom scheme to serve your app content through fixes CORS issues that exisit because of the strict security policies that WKWebView has applied to the `file` scheme. You can easiy configure your Cordova project to use a custom scheme by setting the preference options `scheme` and `hostname` in the `config.xml` file. + + ```xml + <preference name="scheme" value="app" /> + <preference name="hostname" value="localhost" /> + ``` + + It is important to know that with the introduction of `WKURLSchemeHandler`, iOS 10 support has been dropped. + +* Integrated `SplashScreen` plugin code & replaced Launch Images with Launch Storyboards Review comment: I think linking there is fine, and when the updated docs are published it will still link to the right spot. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
