Skip to content

Commit 0d2c0de

Browse files
apollo-bot2gh-action-runner
authored andcommitted
1 parent c296ca3 commit 0d2c0de

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change Log
22

3+
## v2.0.3
4+
5+
### Fixed
6+
7+
- **Percent encode semicolons when using GET ([#812](https://github.com/apollographql/apollo-ios-dev/pull/812)):** Semicolons were not being correctly encoded into the query string when `useGETForQueries` was enabled. _Thank you to [@nevil](https://github.com/nevil) for the contribution_.
8+
- **Include merged fields in selection set equality check ([#3602](https://github.com/apollographql/apollo-ios/issues/3602)):** When a field merged from a child object in a named fragment was merged, it was not being used for equality checks. Equality checks now use the types `__fulfilledFragments` and collects selections from all of them, instead of just traversing downward from `self.__selections`. This ensures all expected data is collected from merged fragments. See PR [#832](https://github.com/apollographql/apollo-ios-dev/pull/832). _Thank you to [@JOyo246](https://github.com/JOyo246) for raising the issue_.
9+
- **Fixed compilation of initializers for mock objects with custom scalars ([#3599](https://github.com/apollographql/apollo-ios/issues/3599)):** Default values for custom scalars were not compiling due to SPI usage. See PR [#838](https://github.com/apollographql/apollo-ios-dev/pull/838). _Thank you to [@akoslowski](https://github.com/akoslowski) for raising the issue.
10+
- **Fixed infinite loop in parsing invalid multipart messages ([#3608](https://github.com/apollographql/apollo-ios/issues/3608)):** When a multipart message did not end with the correct ending delimiter, the parser would loop over the line infinitely. See PR [#839](https://github.com/apollographql/apollo-ios-dev/pull/839). _Thank you to [@frehulfd](https://github.com/frehulfd) for raising the issue.
11+
312
## v2.0.2
413

514
### Fixed

CLI/apollo-ios-cli.tar.gz

-34.1 KB
Binary file not shown.

Sources/Apollo/Constants.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ import Foundation
22

33
public enum Constants {
44
public static let ApolloClientName = "apollo-ios"
5-
public static let ApolloClientVersion: String = "2.0.2"
5+
public static let ApolloClientVersion: String = "2.0.3"
66
}

0 commit comments

Comments
 (0)