dpogue commented on a change in pull request #1082: URL: https://github.com/apache/cordova-docs/pull/1082#discussion_r433582133
########## 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 +* Fixed overwriting the bundle identifier when there are multiple Xcode build targets +* Bumped minimum Cocoapods version requirements to 1.8.0 Review comment: Could add a sentence or two here explaining how Cocoapods 1.8.0 uses the CDN instead of GitHub, and why that's an improvement for Cordova users ########## 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. Review comment: Two typos: `exisit` -> `exist` `easiy` -> `easily` Do we want to include any information here about how using a custom scheme will result in existing data not being available? ########## 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. Review comment: Let's also put WKWebView in backticks here for consistency ########## 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 Review comment: We have super inconsistent rules about what/when to bold things in these posts. I think it's better if Cordova-iOS is not bolded here. ########## 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 Review comment: Maybe combine these two points into a single item: ```markdown * Added Xcode 11 compatibility and bumped minimum iOS version to 11.0 As of April 2020, Apple requires all app store submissions to be built with Xcode 11 and target the iOS 13 SDK. ``` ########## 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`. Review comment: Missing word: plugin **is** obsolete ########## 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: Can we link to documentation or a blog post about how to set up Launch Storyboard images? ---------------------------------------------------------------- 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]
