diff --git a/packages/graphql/CHANGELOG.md b/packages/graphql/CHANGELOG.md index 3ff92024..d2d970d9 100644 --- a/packages/graphql/CHANGELOG.md +++ b/packages/graphql/CHANGELOG.md @@ -1,3 +1,14 @@ +# v5.2.0-beta.9 + +## Fixed +- upgrade rxdart 0.28.0 (#1454) ([commit](https://github.com/zino-hofmann/graphql-flutter/commit/1b851eaa9c64ce4bbf6f0962cd64a74209d95ce5)). @ronnnnn 30-08-2024 +- add query timeout argument when create client. ([commit](https://github.com/zino-hofmann/graphql-flutter/commit/6180841e9b703d9c312ea29e575dece973c691bc)). @ykuc7 29-08-2024 +- add timeout to _resolveQueryOnNetwork ([commit](https://github.com/zino-hofmann/graphql-flutter/commit/9f961e33e40f0b81d13a6e12e4dd318afa7e72ca)). @ykuc7 18-07-2024 + +## Added +- Support custom equality function for cache comparison ([commit](https://github.com/zino-hofmann/graphql-flutter/commit/a6909d47d70f3c6fb25117419620f300d1006432)). @kvenn 05-08-2024 + + # v5.2.0-beta.8 ## Fixed diff --git a/packages/graphql/changelog.json b/packages/graphql/changelog.json index f99797da..af4892db 100644 --- a/packages/graphql/changelog.json +++ b/packages/graphql/changelog.json @@ -1,6 +1,6 @@ { "package_name": "graphql", - "version": "v5.2.0-beta.8", + "version": "v5.2.0-beta.9", "api": { "name": "github", "repository": "zino-hofmann/graphql-flutter", diff --git a/packages/graphql/pubspec.yaml b/packages/graphql/pubspec.yaml index b7c2dd0b..b2e361ff 100644 --- a/packages/graphql/pubspec.yaml +++ b/packages/graphql/pubspec.yaml @@ -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.8 +version: 5.2.0-beta.9 repository: https://github.com/zino-app/graphql-flutter/tree/main/packages/graphql issue_tracker: https://github.com/zino-hofmann/graphql-flutter/issues diff --git a/packages/graphql_flutter/CHANGELOG.md b/packages/graphql_flutter/CHANGELOG.md index 033c6e52..331bd409 100644 --- a/packages/graphql_flutter/CHANGELOG.md +++ b/packages/graphql_flutter/CHANGELOG.md @@ -1,3 +1,6 @@ +# v5.2.0-beta.9 + + # v5.2.0-beta.7 ## Fixed diff --git a/packages/graphql_flutter/changelog.json b/packages/graphql_flutter/changelog.json index 40ed0da6..852c0891 100644 --- a/packages/graphql_flutter/changelog.json +++ b/packages/graphql_flutter/changelog.json @@ -1,6 +1,6 @@ { "package_name": "graphql_flutter", - "version": "v5.2.0-beta.7", + "version": "v5.2.0-beta.9", "api": { "name": "github", "repository": "zino-hofmann/graphql-flutter", diff --git a/packages/graphql_flutter/pubspec.yaml b/packages/graphql_flutter/pubspec.yaml index 343b1bc2..ba53e65a 100644 --- a/packages/graphql_flutter/pubspec.yaml +++ b/packages/graphql_flutter/pubspec.yaml @@ -1,6 +1,6 @@ name: graphql_flutter description: A GraphQL client for Flutter, bringing all the features from a modern GraphQL client to one easy to use package. -version: 5.2.0-beta.7 +version: 5.2.0-beta.9 repository: https://github.com/zino-app/graphql-flutter/tree/main/packages/graphql_flutter issue_tracker: https://github.com/zino-hofmann/graphql-flutter/issues @@ -8,7 +8,7 @@ issue_tracker: https://github.com/zino-hofmann/graphql-flutter/issues # publish_to: 'none' dependencies: - graphql: ^5.2.0-beta.8 + graphql: ^5.2.0-beta.9 gql_exec: ^1.0.0 flutter: sdk: flutter