Skip to content

Commit fdb97fe

Browse files
BobaFettersgh-action-runner
authored and
gh-action-runner
committed
1 parent 070ea51 commit fdb97fe

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

CHANGELOG.md

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

3+
## v1.7.0
4+
5+
**`ApolloCodegenLib` Now Uses Swift Concurrency**
6+
To improve the performance of the code generation, the `ApolloCodegenLib` now uses `async/await`. Code generation is now parallelized and should complete much faster for users with a large number of GraphQL files.
7+
This means that the entry point function, `ApolloCodegen.build(with configuration:)` is now an `async` function. For users using the `ApolloCodegenLib` directly, you will need to make your call sites into this function use `async/await`. In most cases, this requires minimal code changes. Please see the [1.7.0 migration guide](https://www.apollographql.com/docs/ios/migrations/1.7) for information on how to upgrade.
8+
9+
See PR [#57](https://github.com/apollographql/apollo-ios-dev/pull/57).
10+
11+
### Fixed
12+
13+
- **Fixed a bug with ApolloAPI.Object clashing with custom objects name Object ([#94](https://github.com/apollographql/apollo-ios-dev/pull/94)):** _Thank you to [215eight](https://github.com/215eight) for reporting the issue._
14+
315
## v1.6.1
416

517
### Fixed

CLI/apollo-ios-cli.tar.gz

123 KB
Binary file not shown.

Sources/Apollo/Constants.swift

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

33
public enum Constants {
4-
public static let ApolloVersion: String = "1.6.1"
4+
public static let ApolloVersion: String = "1.7.0"
55
}

0 commit comments

Comments
 (0)