1.0.0 Release Candidate #1
This is the first Release Candidate for Apollo iOS 1.0. The Release Candidate is a fully featured and code-complete representation of the final 1.0 version. This includes full feature parity with the 0.x.x releases.
API breaking changes are not expected between the Release Candidate and the General Availability (GA) release. The only code changes will be non-breaking bug fixes due to user feedback. The Release Candidate does not have complete documentation or usage guides, which will be completed prior to GA.
This first major version will include a new code generation engine, better generated models, and many syntax and performance improvements across the entire library. The primary goal of Apollo iOS 1.0 is to stabilize the API of the model layer and provide a foundation for future feature additions and evolution of the library.
apollo-codegen-config.json file used by the Apollo CLI needed to contain values for all optional fields. When new codegen options were added, this would cause errors until all newly added options has values provided.Codable implementation for the ApolloCodgenConfiguration has been implemented manually to prevent this. Now, only required fields must be provided, all optional fields can be omitted from the config file safely.init command also now generates a template config file with only the required fields.@skip and @include conditions on the same field--allow-writing-to-package-directory flag when executing the plugin command..persistedOperationsOnly
.persistedOperationsOnly is for use with allow-listed operations only. If an operation identifier is not recognized by the server, there is no way to register the operation in this configuration.ApolloAPI internal metadata properties to be __ prefixed.
Apollo library during GraphQL Execution. These members must be public in order to be exposed to Apollo, but are not intended for external consumption. We have added underscore prefixes to each of these members to signify that intention, using __ for GraphQL Metadata (in alignment with the GraphQL Specification) and _ for Apollo's utility and helper functions.SelectionSet.schema -> SelectionSet.__schemaSelectionSet.selection -> SelectionSet.__selectionJSONEncodable.jsonValue -> JSONEncodable._jsonValueJSONDecodable.init(jsonValue:) -> JSONDecodable.init(_jsonValue:)AnyHashableConvertible.asAnyHashable -> AnyHashableConvertible._asAnyHashableOutputTypeConvertible.asOutputType -> OutputTypeConvertible._asOutputTypeGraphQLOperation.variables -> GraphQLOperation._variablesLocalCacheMutation.variables -> LocalCacheMutation._variablesFetched April 11, 2026