dpogue commented on code in PR #1321: URL: https://github.com/apache/cordova-docs/pull/1321#discussion_r1258669363
########## www/_posts/2023-07-10-cordova-ios-7.0.0.md: ########## @@ -0,0 +1,183 @@ +--- +layout: post +author: + name: Bryan Ellis +title: "Cordova iOS 7.0.0 Released!" +categories: announcements +tags: news releases +--- + +We are happy to announce that we have just released `Cordova iOS 7.0.0`! This is one of Cordova's supported platforms for building iOS applications. + +* [[email protected]](https://www.npmjs.com/package/cordova-ios) + +## Release Highlights + +**To upgrade:** + +```bash +cordova platform remove ios +cordova platform add [email protected] +``` + +**To install:** + +```bash +cordova platform add [email protected] +``` + +**BREAKING CHANGES:** + +* **Removal of `podspec` type from `framework` tag** + + Since Cordova-iOS 5.0.0, the new `podspec` tag was added to improve the readability and support of features that CocoaPods provided. + + This release officially removes the old `type="podspec"` implementation of the `framework` tag. If you maintain plugins and still using the `framework` tag to load pod specs, it is recommended to migrate to the newer implementation. + + For implementation specifications, please see our [Apache Cordova - Podspec](https://cordova.apache.org/docs/en/dev/plugin_ref/spec.html#podspec-) docs. + +* **Removed default `CONFIGURATION_BUILD_DIR` overrides** + + This will change the location of where the output files are generated. + + * `build/emulator` will become `build/Debug-iphonesimulator` + * `build/device` will become `build/Release-iphoneos` + + This will help ensure that debug and release files are never mixed up in the same directory and hypothetically prepare for `macos` builds. Review Comment: > hypothetically prepare for `macos` builds Let's say "and improves support for macOS `maccatalyst` builds." -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
