From fe7763be89e246460fe00d076e7407e19db2959b Mon Sep 17 00:00:00 2001 From: Anthony Miller Date: Wed, 15 May 2024 10:59:32 -0700 Subject: [PATCH] Release 1.11.0 (apollographql/apollo-ios-dev#360) --- CHANGELOG.md | 12 ++++++++++++ Sources/Apollo/Constants.swift | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 46d08367c9..59d9ccc8dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Change Log +## v1.11.0 + +### New + +- **Added `refetchOnFailedUpdates` option to `GraphQLQueryWatcher` ([#347](https://github.com/apollographql/apollo-ios/pull/347)):** This allows you to configure the query watcher not to refetch it's query from the server when a cache read to update it's data fails. + +### Fixed + +- **Generated input objects have default `nil` value for parameters with a schema-defined default value ([#2997](https://github.com/apollographql/apollo-ios/issues/2997)):** When the schema defines a default value for an input parameter, you can now omit that parameter when initializing the input object and the default value will be used. This corrects feature parity with the Apollo Kotlin client. See PR [#358](https://github.com/apollographql/apollo-ios-dev/pull/358). + +- **Fix namespacing error in `InterfaceTemplate` ([#3375](https://github.com/apollographql/apollo-ios/issues/3375)):** This fixes an issue where having a schema type named `Interface` caused compilation errors in generated code. See PR [#359](https://github.com/apollographql/apollo-ios-dev/pull/359). + ## v1.10.0 ### New diff --git a/Sources/Apollo/Constants.swift b/Sources/Apollo/Constants.swift index 7b6cb0f401..6353f1284c 100644 --- a/Sources/Apollo/Constants.swift +++ b/Sources/Apollo/Constants.swift @@ -1,5 +1,5 @@ import Foundation public enum Constants { - public static let ApolloVersion: String = "1.10.0" + public static let ApolloVersion: String = "1.11.0" }