File tree Expand file tree Collapse file tree 4 files changed +14
-3
lines changed
Expand file tree Collapse file tree 4 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 1+ # v5.2.0-beta.11
2+
3+ ## Fixed
4+ - add queryRequestTimeout parameter to copyWith method ([ commit] ( https://github.com/zino-hofmann/graphql-flutter/commit/2f61d658f1b29d42c47c0ca3190da0d01aa1f306 ) ). @nestorsgarzonc 07-02-2025
5+ - ensure readNormalized correctly merges Map<String, dyna… ([ commit] ( https://github.com/zino-hofmann/graphql-flutter/commit/e9fbc8b2d6063d251d8a25fe5be5315acd54ae7c ) ). @nozomemein 07-02-2025
6+
7+ ## Added
8+ - make timeout configurable in query options (#1475 ) ([ commit] ( https://github.com/zino-hofmann/graphql-flutter/commit/b88fa9f888828e8683e46709c2505dab5c6a2073 ) ). @ndelanou 28-12-2024
9+
10+
111# v5.2.0-beta.10
212
313## Fixed
Original file line number Diff line number Diff line change 11{
22 "package_name" : " graphql" ,
3- "version" : " v5.2.0-beta.10 " ,
3+ "version" : " v5.2.0-beta.11 " ,
44 "api" : {
55 "name" : " github" ,
66 "repository" : " zino-hofmann/graphql-flutter" ,
Original file line number Diff line number Diff line change @@ -120,7 +120,8 @@ class GraphQLCache extends NormalizingDataProxy {
120120 for (final patch in optimisticPatches) {
121121 if (patch.data.containsKey (rootId)) {
122122 final patchData = patch.data[rootId];
123- if (value is Map <String , dynamic > && patchData is Map <String , dynamic >) {
123+ if (value is Map <String , dynamic > &&
124+ patchData is Map <String , dynamic >) {
124125 value = deeplyMergeLeft ([
125126 value,
126127 patchData,
Original file line number Diff line number Diff line change 11name : graphql
22description : A stand-alone GraphQL client for Dart, bringing all the features from a modern GraphQL client to one easy to use package.
3- version : 5.2.0-beta.10
3+ version : 5.2.0-beta.11
44repository : https://github.com/zino-app/graphql-flutter/tree/main/packages/graphql
55issue_tracker : https://github.com/zino-hofmann/graphql-flutter/issues
66
You can’t perform that action at this time.
0 commit comments