| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| apollo-ios-cli.tar.gz | 2025-12-03 | 3.0 MB | |
| 2.0.4 source code.tar.gz | 2025-12-03 | 3.2 MB | |
| 2.0.4 source code.zip | 2025-12-03 | 3.3 MB | |
| README.md | 2025-12-03 | 1.6 kB | |
| Totals: 4 Items | 9.5 MB | 0 | |
Fixed
- Fix infinite loop bug in Test Mocks (#842): Thank you to @AlexPan1992 for raising the issue.
- Improve error description formatting for validation failure (#846): GraphQL validation errors encountered while running code generation are now formatted to be easier to read in logs. Thank you to @dfed for the contribution.
- Fix deadlock in
AsyncReadWriteLock(#851): When under heavy loads, theAsyncReadWriteLockused by theApolloStorecould cause a deadlock. This is now resolved. Thank you to @marksvend for raising the issue. - Fix cancellation error for single response operations (#855): When a single response operation was cancelled, a
.noResultserror was thrown instead of the expectedCancellationError. This is now resolved. Thank you to @3redrubies for raising the issue. - Fix multipart parsing error (#852): When a multipart message was received with characters after the closing boundary the multipart parser would emit a
cannotParseChunkDataparsing error. This is now resolved. Thank you to @ecant for raising the issue.