From 3e096a398622d871fc744c670649ef28f6e9bf79 Mon Sep 17 00:00:00 2001 From: Calvin Cestari Date: Wed, 8 Jan 2025 14:45:52 -0800 Subject: [PATCH] Updated CHANGELOG.md --- apollo-ios/CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/apollo-ios/CHANGELOG.md b/apollo-ios/CHANGELOG.md index 6cfb83284..940252042 100644 --- a/apollo-ios/CHANGELOG.md +++ b/apollo-ios/CHANGELOG.md @@ -1,5 +1,18 @@ # Change Log +## v1.16.0 + +### New +- **Added codegen config support for spm module type versions ([#539](https://github.com/apollographql/apollo-ios-dev/pull/539)):** There is a [new codegen config option](https://www.apollographql.com/docs/ios/code-generation/codegen-configuration#swift-package) for supplying a version to the SPM module type to allow for pointing to specific branches or local versions of Apollo iOS. +- **`@oneOf` input object support ([#537](https://github.com/apollographql/apollo-ios-dev/pull/537)):** Adding support for `@OneOf` Input Objects, more info can be found in the official [RFC](https://github.com/graphql/graphql-spec/pull/825). + +### Improvements +- **`URLRequest` cache policy default changed ([#550](https://github.com/apollographql/apollo-ios-dev/pull/550)):** The updated default closer matches the original behaviour before the introduction of setting `URLRequest.CachePolicy`. _Thank you to [@marksvend](https://github.com/marksvend) for raising the issue._ + +### Fixed +- **`DataDict` initialization of `deferredFragments` property ([#557](https://github.com/apollographql/apollo-ios-dev/pull/557)):** Generated selection set initializers were not correctly setting deferred fragment identifiers. This only affected selection sets that were instantiated with the generated selection set initializers, response-based results are unaffected. +- **Multipart chunk content type ([#572](https://github.com/apollographql/apollo-ios-dev/pull/572)):** Multipart response parsing would produce an error when the chunk content type contained more than one directive. _Thank you to [@brettephillips](https://github.com/brettephillips) for raising the issue._ + ## v1.15.3 ### Improvements