Releases: apollographql/apollo-ios
1.0.0 Alpha 3
This is the third Alpha Release of Apollo iOS 1.0. 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.
- Include/Skip Directives are now supported!
- Adding
@include/@skip
directives to fields, inline fragments, or fragment spreads will now generate code that respects the optionality of these conditionally included selections.
- Adding
- Changed - Generated TypeCase renamed to InlineFragment These are now used for both type cases and inline fragments that are conditionally included using
@include/@skip
directives. - Custom Scalars are now supported!
- Template Files will be generated for custom scalars. The template files
typealias
each custom scalar to aString
by default. These generated files can be edited to provide custom functionality for advanced custom scalars. Custom scalar template files that have been edited will not be overwritten on later code generation executions.
- Template Files will be generated for custom scalars. The template files
- Improved multi-module support
- Including your generated code using package managers other than SPM can be done using the
.other
option formoduleType
in your code generation configuration.
- Including your generated code using package managers other than SPM can be done using the
- Nil Coalescing Operator added to
GraphQLNullable
- This allows for optional variables to easily be used with
GraphQLNullable
parameters and a default value
- This allows for optional variables to easily be used with
var myVar: GraphQLNullable<String>
let optionalString: String?
// Before
myVar = optionalString.map { .some($0) } ?? .none
// After
myVar = optionalString ?? .none
- Fixed -
fragments
not accessible on generatedSelectionSets
. - Fixed -
__typename
is now added to all operation and fragment definitions. - Fixed - Missing Generated Interface Types
- Interface types that were only referenced as an implemented interface of a referenced concrete type were not being generated previously.
Version 0.51.2
- Fixed - APQ Retrying Failing in
0.51.1
: Fixes a bug introduced in the last version that broke APQs. #2206 - Thanks to Kyle Browning for bringing this to our attention.
Version 0.51.1
- Expose request body creation to better support custom interceptors: Enable lazy access to the request body creation for leverage in custom built interceptors, since JSONRequest.toURLRequest() encapsulates the creation. This enables the GraphQLMap to be accessed without re-creating the body. #2184 - Thanks to Rick Fast for the contribution.
Version 0.51.0
- Allow periods in arguments to be ignored when parsing cacheKeys: If your query arguments include periods they will no longer cause broken cache keys. This means the cached data for those queries can be correctly found and returned. The caveat with this change though is that if you use a persisted cache, after the upgrade you could see cache misses and the data would be refetched. #2057 - Thanks to Hesham Salman for the contribution.
- Fixed -
Sendable
classJavaScriptError
cannot inherit from another class other thanNSObject
: Xcode 13.3 introduced some additional requirements forError
types andJavaScriptError
did not conform causing compile errors inApolloCodegenLib
. This change disablesSendable
type checking forJavaScriptError
while maintaining type-safety across concurrency boundaries. #2147 - Thank you to Tiziano Coroneo for the contribution. - Fixed - Watcher using a policy that shouldn't hit the network, can still hit the network: If the cache policy given to the
watch(query:cachePolicy:)
method ofApolloClient
was.returnCacheDataDontFetch
it could still trigger a remote fetch of the query. - Thank you to Peter Potrebic for raising the issue. - BREAKING CHANGE -
graphql-ws
Protocol Support: We've added official support for the graphql-ws library and itsgraphql-transport-ws
protocol. This is a breaking change because theWebSocket
initializers now require you to specify which protocol to use.
1.0.0 Alpha 2
This is the second Alpha Release of Apollo iOS 1.0. 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.
- Operation Variables and Field Arguments are now supported!
- Fixed - Capitalized field names generate code that doesn't compile #2167
1.0.0 Alpha 1
This is the first Alpha Release of Apollo iOS 1.0. 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.
What’s New
- The size of generated code has been reduced dramatically. In the most complex operations, the generated code can be up to 90% smaller than in the previous version.
- Generated response objects are more powerful and easier to consume.
- The response objects now intelligently merge fields from not only their parents, but also other matching sibling fragments.
query AnimalQuery {
allAnimals {
species
... on Pet {
name
}
... on Cat {
furColor
}
}
In the past, the AsCat
model would have fields for species
, and furColor
, but to access the name
field, you would need to keep a reference to the AllAnimal
object and call AsPet.name
. This means that you couldn’t just pass the AsCat
object to a UI component.
In 1.0, because we know that Cat
implements the Pet
interface, the name
field is merged into the Cat
object.
Any property that should exist based on the type of the object will be accessible. This makes consuming our generated response objects in your applications much easier. This should greatly reduce the need for view models to wrap our generated response objects.
- The code generation engine is now written in native Swift! This makes it easier for Swift developers to contribute to the project or alter the generated code for their specific needs! In future iterations, we hope to open up the code generation templating API to allow for even easier customization of your generated code!
- Computation of Cache Keys is protocol oriented now. Instead of a single
cacheKeyForObject
closure on yourApolloClient
, you can implement cache key computation on individual object types with theCacheKeyProvider
protocol. See Cache Key Resolution in the RFC for more information.
What’s Next - (Things Not Supported in Alpha 1)
- Operation Variables and Field Arguments
- @include/@Skip Directives
- Cocoapods and Carthage Support for Generated Objects
- Currently, the generated code supports creating an SPM package you can include as a target in your
Package.swift
file. Cocoapods and Carthage support will be coming soon. - In the mean time, you can still generate your operations and manually include the generated code in your project.
- Currently, the generated code supports creating an SPM package you can include as a target in your
- Automatically Persisted Queries
- Cache Mutations
- We are re-writing the entire cache mutation system to be easier to work with. Instead of exposing the cache via the operations you have defined, you’ll be able to access the cache through custom generated types that have a view of the entire cache at once. *This means no more writing query operations that are only used for local cache mutations.
Feedback we are looking for
While any and all feedback about the API design, structure, and usability of the library is appreciated, this Alpha version version focuses on the new generated operation models. We would love to hear about your experiences with:
- Generating your models using the SwiftScripts method
- Consuming the new generated models in your application code
- Are there any use cases that were supported in the previous versions that are not supported or regress in the Alpha? (Other than the known cases listed above that will be supported soon.)
- Do the new generated models make working with your data easier or more difficult?
- Do you have specific suggestions for things that can be added or altered in the generated objects to make them more useful?
Expected Alpha Roadmap
- Operation Variables and Field Arguments
- ASAP - Planned for next Alpha release within a week or two.
- @include/@Skip Directives
- Next priority after variables and arguments. Maybe the same release, maybe the next release after that
- Cocoapods and Carthage Support for Generated Objects
- Probably a little while out, but shouldn’t be too hard. So maybe after the two above this.
- Automatically Persisted Queries
- This is mostly done, just need to actually figure out how to compute the operation identifier hash and generate the operationIds.json file. This is lower priority though, since not a ton of people use it.
- Cache Mutations
- This is going to take a long time still. We won’t move into Beta until we have the solution for this ready to test, but it’s only about 70% solved so far, and the implementation is not written yet.
- I’m considering exposing an API to mutate the cache just using the stringly-typed dictionary of data in the mean time, to unblock people from trying out the Alpha in their applications while we solve this. This would be unsafe and not great for production, but should work just fine and be quick and easy to implement as a stop-gap.
Installation
Currently, only SPM is fully supported. Because the generated models can’t easily be consumed by a Cocoapods project yet, we have not included support for installation of the client with Cocoapods. This will be included in an upcoming release shortly.
SPM
.package(name: "Apollo",
url: "https://github.com/apollographql/apollo-ios.git",
from: "1.0.0-alpha.1")
Run codegen using the instructions from the Swift scripting documentation.
Version 0.50.0
- Dropped SPM support for Swift 5.2: The minimum version of the Swift tools and language compatibilty required to process the SPM manifest is Swift 5.3. This means a minimum of Xcode version 12 is required for Swift Package Manager support. #1992
- Removed unnecessary assertion failure: The completion handler on
returnResultAsyncIfNeeded
is defined as optional but if not included would cause debug builds to crash with anassertionFailure
in the case of afailure
of theResult
. #2005 - Thank you to Richard Topchii for raising this issue! CachePolicy.default
is now a stored property: It is now easier to configure a different default value for theCachePolicy
property on anyApolloClient
instance instead of having to override it in a subclass. #1998 - Thank you to Tiziano Coroneo for the contribution!- Exposed
cacheKey
function aspublic
: The access modifier of this function onGraphQLField
has changed frominternal
topublic
. It is not recommended to rely on internal behaviour of the cache, and this is subject to change in future major versions. #2014 - Thank you to Peter Potrebic for the discussion! - GET method support for
ApolloSchemaDownloader
: Introspection-based schema downloads can now be queried using a GET request. #2010 - Thank you to Mike Pitre for the contribution! - Updated to version 2.33.9 of the Apollo CLI: This update will add
__typename
fields to inline fragments in operations to match the output from theclient:push
CLI command which used for operation safelisting. This should not affect the behaviour of your operations. #2028. - Updated to version 0.13.1 of SQLite.swift: This update brings in some iOS 14 fixes and new table functionality such as
upsert
andinsertMany
. #2015 - Thank you to Hesham Salman for the contribution.
Version 0.49.1
ApolloSchemaDownloadConfiguration.HTTPHeader
initializer was not public: The struct initializer that Swift automatically generates is marked with theinternal
access level, which meant that custom HTTP headers could not be added to an instance ofApolloSchemaDownloadConfiguration
. #1962 - Thank you to Nikolai Sivertsen for the contribution!- Documentation update: Fixed an inline code block that had specified language where such specification is not supported. #1954 - Thank you to Kim Røen for the contribution!
- Fix - ApolloCodegenOptions could not find schema input file: - If you created
ApolloSchemaDownloadConfiguration
andApolloCodegenOptions
objects using only output folders the default output filename for the schema download was different from the default schema input filename for codegen. #1968 - Thank you to Arnaud Coomans for finding this issue!
Version 0.49.0
- Breaking - Schema download is now Swift-based: The dependency on the Apollo CLI (Typescript-based) for schema downloading has been removed. Schema downloading is now Swift-based, outputs GraphQL SDL (Schema Definition Language) by default, and is maintainable/extensible within apollo-ios with full API documentation. This is a breaking change because some of the API signatures have changed. Swift scripting offers a convenient way to perform certain operations that would otherwise require the command line - it's worth a look if you haven't tried it yet. #1935
Version 0.48.0
- Customizable subscription message identifiers: The
WebSocketTransport
initializer can be configured with a subclass ofOperationMessageIdCreator
to provide a unique identifier per request. The default implementation isApolloSequencedOperationMessageIdCreator
and retains the current behavior of sequential message numbering. #1919 - Thank you to Clark McNally for the contribution! - AWS AppSync Compatibility: Apollo-ios will now correctly handle the
start_ack
message that AWS AppSync servers respond with when a subscription is requested. #1919 - Thank you to Clark McNally for the contribution! - Updated to version 2.33.6 of the Apollo CLI: Applies some new vulnerability patches to the CLI, but should not change any output. #1929
- Improved documentation: Clarification of cache normalization concepts. #1710 - Thank you to Daniel Morgan for the contribution!