File tree 4 files changed +14
-3
lines changed
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
+
1
11
# v5.2.0-beta.10
2
12
3
13
## Fixed
Original file line number Diff line number Diff line change 1
1
{
2
2
"package_name" : " graphql" ,
3
- "version" : " v5.2.0-beta.10 " ,
3
+ "version" : " v5.2.0-beta.11 " ,
4
4
"api" : {
5
5
"name" : " github" ,
6
6
"repository" : " zino-hofmann/graphql-flutter" ,
Original file line number Diff line number Diff line change @@ -120,7 +120,8 @@ class GraphQLCache extends NormalizingDataProxy {
120
120
for (final patch in optimisticPatches) {
121
121
if (patch.data.containsKey (rootId)) {
122
122
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 >) {
124
125
value = deeplyMergeLeft ([
125
126
value,
126
127
patchData,
Original file line number Diff line number Diff line change 1
1
name : graphql
2
2
description : 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
4
4
repository : https://github.com/zino-app/graphql-flutter/tree/main/packages/graphql
5
5
issue_tracker : https://github.com/zino-hofmann/graphql-flutter/issues
6
6
You can’t perform that action at this time.
0 commit comments