Skip to content

Commit 7087903

Browse files
gh-action-runnergh-action-runner
authored andcommitted
Squashed 'apollo-ios/' changes from 0d2c0dec4..cb942e158
cb942e158 Fix infinite loop bug in Test Mocks (#842) 90964ddee Update last updated date in ROADMAP.md git-subtree-dir: apollo-ios git-subtree-split: cb942e158deb61dc0ccc6510e7cd3364e87064ba
1 parent 930eef9 commit 7087903

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

ROADMAP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 🔮 Apollo iOS Roadmap
22

3-
**Last updated: 2025-11-31**
3+
**Last updated: 2025-11-13**
44

55
For up to date release notes, refer to the project's [Changelog](https://github.com/apollographql/apollo-ios/blob/main/CHANGELOG.md).
66

Sources/ApolloTestSupport/TestMock.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,9 @@ fileprivate extension Array {
198198
case let innerArray as Array<Any>:
199199
return innerArray._unsafelyConvertToSelectionSetData() as JSONValue
200200

201+
case let element as JSONValue:
202+
return element
203+
201204
case let optionalElement as Optional<any Sendable>:
202205
guard case let .some(element) = optionalElement.asNullable else {
203206
return nil

0 commit comments

Comments
 (0)