Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
apollo-ios-cli.tar.gz | 2025-06-27 | 3.2 MB | |
1.23.0 source code.tar.gz | 2025-06-27 | 3.3 MB | |
1.23.0 source code.zip | 2025-06-27 | 3.4 MB | |
README.md | 2025-06-27 | 1.3 kB | |
Totals: 4 Items | 9.9 MB | 0 |
New
- Added
requireNonOptionalMockFields
flag toApolloCodegenConfiguration.OutputOptions
. (#669): Added new flag to codegen output options to allow having non-optional fields in the test mocks if desired. Thank you to @dwroth for the contribution.
Improvement
- Added public initializer to
DatabaseRow
. (#664): Not having a public initializer onDatabasRow
was hindering the ability to create customSQLiteDatabase
implementations. This solves that by adding a public initializer toDatabaseRow
.Thank you to @ChrisLaganiere for the contribution.
Fixed
- Unncessary deprecation warning in codegen options initializer. (#3563): Added
@_disfavoredOverload
to the deprecated initialized inApolloCodegenConfiguration
to prevent possible warnings caused by the compiler selecting a deprecated initializer versus the new/current initializer. See PR #682. Thank you to @CraigSiemens for raising the issue.