Skip to content

Commit 3bb49b6

Browse files
gh-action-runnergh-action-runner
authored andcommitted
Squashed 'apollo-ios/' changes from 328b4260..d591c1dd
d591c1dd Release 1.23.0 (#683) git-subtree-dir: apollo-ios git-subtree-split: d591c1dd55824867877cff4f6551fe32983d7f51
1 parent e097ec2 commit 3bb49b6

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

CHANGELOG.md

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

3+
## v1.23.0
4+
5+
### New
6+
- **Added `requireNonOptionalMockFields` flag to `ApolloCodegenConfiguration.OutputOptions`. ([#669](https://github.com/apollographql/apollo-ios-dev/pull/669)):** Added new flag to codegen output options to allow having non-optional fields in the test mocks if desired. _Thank you to [@dwroth](https://github.com/dwroth) for the contribution._
7+
8+
### Improvement
9+
- **Added public initializer to `DatabaseRow`. ([#664](https://github.com/apollographql/apollo-ios-dev/pull/664)):** Not having a public initializer on `DatabasRow` was hindering the ability to create custom `SQLiteDatabase` implementations. This solves that by adding a public initializer to `DatabaseRow`._Thank you to [@ChrisLaganiere](https://github.com/ChrisLaganiere) for the contribution._
10+
11+
### Fixed
12+
- **Unncessary deprecation warning in codegen options initializer. ([#3563](https://github.com/apollographql/apollo-ios/issues/3563)):** Added `@_disfavoredOverload` to the deprecated initialized in `ApolloCodegenConfiguration` to prevent possible warnings caused by the compiler selecting a deprecated initializer versus the new/current initializer. See PR [#682](https://github.com/apollographql/apollo-ios-dev/pull/682). _Thank you to [@CraigSiemens](https://github.com/CraigSiemens) for raising the issue._
13+
314
## v1.22.0
415

516
### Improvement

CLI/apollo-ios-cli.tar.gz

6.23 KB
Binary file not shown.

Sources/Apollo/Constants.swift

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

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

77
@available(*, deprecated, renamed: "ApolloClientVersion")
88
public static let ApolloVersion: String = ApolloClientVersion

0 commit comments

Comments
 (0)