Skip to content

Commit

Permalink
release new beta version
Browse files Browse the repository at this point in the history
Signed-off-by: Vincenzo Palazzo <[email protected]>
  • Loading branch information
vincenzopalazzo committed Feb 10, 2025
1 parent 2f61d65 commit 74a99bf
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
10 changes: 10 additions & 0 deletions packages/graphql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# v5.2.0-beta.11

## Fixed
- add queryRequestTimeout parameter to copyWith method ([commit](https://github.com/zino-hofmann/graphql-flutter/commit/2f61d658f1b29d42c47c0ca3190da0d01aa1f306)). @nestorsgarzonc 07-02-2025
- ensure readNormalized correctly merges Map<String, dyna… ([commit](https://github.com/zino-hofmann/graphql-flutter/commit/e9fbc8b2d6063d251d8a25fe5be5315acd54ae7c)). @nozomemein 07-02-2025

## Added
- make timeout configurable in query options (#1475) ([commit](https://github.com/zino-hofmann/graphql-flutter/commit/b88fa9f888828e8683e46709c2505dab5c6a2073)). @ndelanou 28-12-2024


# v5.2.0-beta.10

## Fixed
Expand Down
2 changes: 1 addition & 1 deletion packages/graphql/changelog.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"package_name": "graphql",
"version": "v5.2.0-beta.10",
"version": "v5.2.0-beta.11",
"api": {
"name": "github",
"repository": "zino-hofmann/graphql-flutter",
Expand Down
3 changes: 2 additions & 1 deletion packages/graphql/lib/src/cache/cache.dart
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ class GraphQLCache extends NormalizingDataProxy {
for (final patch in optimisticPatches) {
if (patch.data.containsKey(rootId)) {
final patchData = patch.data[rootId];
if (value is Map<String, dynamic> && patchData is Map<String, dynamic>) {
if (value is Map<String, dynamic> &&
patchData is Map<String, dynamic>) {
value = deeplyMergeLeft([
value,
patchData,
Expand Down
2 changes: 1 addition & 1 deletion packages/graphql/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: graphql
description: A stand-alone GraphQL client for Dart, bringing all the features from a modern GraphQL client to one easy to use package.
version: 5.2.0-beta.10
version: 5.2.0-beta.11
repository: https://github.com/zino-app/graphql-flutter/tree/main/packages/graphql
issue_tracker: https://github.com/zino-hofmann/graphql-flutter/issues

Expand Down

0 comments on commit 74a99bf

Please sign in to comment.