Fixes
- Fixed - apollo-ios-cli code generation on CocoaPods installation: All required resources for the CLI are now bundled correctly. This was an issue in CocoaPods installations where the
generate
command ofapollo-ios-cli
would result in a fatal error. #2548 Thank you to @ilockett for reporting the issue. - Fixed - Xcode integration for Swift Package Plugins: The SwiftPM plugins now support
XcodePluginContext
from Xcode 14 and accepts the additional command line options that Xcode sends. #2554 Thank you to @SilverTab for reporting the issue. - Fixed - Escaping input param names: Input parameter names recognized as reserved words are now escaped to prevent build errors. #2561 Thank you to @puls for the contribution.
- Fixed - Multiline deprecation messages: Deprecation messages that span multiple lines would previously result in build errors. #2579 Thank you to @TizianoCoroneo for the contribution.
Changes
- Changed - Warnings for deprecated enums: Deprecated enum cases are no longer annotated with the Swift
@available
attribute. They will now have comments indicating their deprecated status. #2579