Skip to content

Commit 74a99bf

Browse files
release new beta version
Signed-off-by: Vincenzo Palazzo <[email protected]>
1 parent 2f61d65 commit 74a99bf

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

packages/graphql/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
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

packages/graphql/changelog.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

packages/graphql/lib/src/cache/cache.dart

+2-1
Original file line numberDiff line numberDiff 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,

packages/graphql/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: graphql
22
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
44
repository: https://github.com/zino-app/graphql-flutter/tree/main/packages/graphql
55
issue_tracker: https://github.com/zino-hofmann/graphql-flutter/issues
66

0 commit comments

Comments
 (0)