From 8032c6cab924552fb6f146fa43a90d1386cdba53 Mon Sep 17 00:00:00 2001 From: Vincenzo Palazzo Date: Thu, 4 Dec 2025 05:59:49 -0800 Subject: [PATCH 1/2] chore: bump graphql to 5.2.4 and graphql_flutter to 5.3.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit graphql 5.2.4: - fix: upgrade normalize dependency to be 0.10.0 compatible graphql_flutter 5.3.0 (minor bump due to dependency changes): - BREAKING: switched from `hive` to `hive_ce` - users importing `package:hive/hive.dart` directly should switch to `package:hive_ce/hive_ce.dart` - chore: update connectivity_plus from ^6.1.3 to ^7.0.0 - fix: update flutter_hooks constraint to <0.22.0 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- packages/graphql/changelog.json | 2 +- packages/graphql/pubspec.yaml | 2 +- packages/graphql_flutter/changelog.json | 2 +- packages/graphql_flutter/pubspec.yaml | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/graphql/changelog.json b/packages/graphql/changelog.json index 174d40af..7c33913a 100644 --- a/packages/graphql/changelog.json +++ b/packages/graphql/changelog.json @@ -1,6 +1,6 @@ { "package_name": "graphql", - "version": "v5.2.3", + "version": "v5.2.4", "api": { "name": "github", "repository": "zino-hofmann/graphql-flutter", diff --git a/packages/graphql/pubspec.yaml b/packages/graphql/pubspec.yaml index 7f5fd504..72391869 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.3 +version: 5.2.4 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.json b/packages/graphql_flutter/changelog.json index daa3bb9f..cf70de72 100644 --- a/packages/graphql_flutter/changelog.json +++ b/packages/graphql_flutter/changelog.json @@ -1,6 +1,6 @@ { "package_name": "graphql_flutter", - "version": "v5.2.1", + "version": "v5.3.0", "api": { "name": "github", "repository": "zino-hofmann/graphql-flutter", diff --git a/packages/graphql_flutter/pubspec.yaml b/packages/graphql_flutter/pubspec.yaml index 5d233859..c6cfb8c4 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.1 +version: 5.3.0 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.2 + graphql: ^5.2.4 gql_exec: ^1.0.0+1 flutter: sdk: flutter From eab731d88e6574152a4e39f8a2eb52c150052c88 Mon Sep 17 00:00:00 2001 From: Vincenzo Palazzo Date: Thu, 4 Dec 2025 06:12:08 -0800 Subject: [PATCH 2/2] chore(ci): upgrade GitHub Actions to latest versions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - actions/checkout@v2 → @v4 - subosito/flutter-action@v1 → @v2 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/build.yml | 2 +- .github/workflows/codcoverage.yml | 4 ++-- .github/workflows/release_dart.yml | 2 +- .github/workflows/release_flutter.yml | 2 +- .github/workflows/release_packages.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ddaa0ffd..be241967 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: - stable runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: subosito/flutter-action@v2 with: channel: ${{matrix.channel}} diff --git a/.github/workflows/codcoverage.yml b/.github/workflows/codcoverage.yml index 48284b59..3a767799 100644 --- a/.github/workflows/codcoverage.yml +++ b/.github/workflows/codcoverage.yml @@ -11,8 +11,8 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: subosito/flutter-action@v1 + - uses: actions/checkout@v4 + - uses: subosito/flutter-action@v2 with: channel: 'stable' - name: Run tests with coverage diff --git a/.github/workflows/release_dart.yml b/.github/workflows/release_dart.yml index 7fd0f95b..f47f22d0 100644 --- a/.github/workflows/release_dart.yml +++ b/.github/workflows/release_dart.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 'Checkout' - uses: actions/checkout@v2 # required! + uses: actions/checkout@v4 # required! - name: 'publish graphql to to Pub.dev' uses: k-paxian/dart-package-publisher@master diff --git a/.github/workflows/release_flutter.yml b/.github/workflows/release_flutter.yml index e79bf3c5..7581ebbe 100644 --- a/.github/workflows/release_flutter.yml +++ b/.github/workflows/release_flutter.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 'Checkout' - uses: actions/checkout@v2 # required! + uses: actions/checkout@v4 # required! - name: 'publish graphql-flutter to to Pub.dev' uses: k-paxian/dart-package-publisher@master diff --git a/.github/workflows/release_packages.yml b/.github/workflows/release_packages.yml index d02b45ec..189f4bfe 100644 --- a/.github/workflows/release_packages.yml +++ b/.github/workflows/release_packages.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 'Checkout' - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: 'graphql publish to to Pub.dev' uses: k-paxian/dart-package-publisher@master with: @@ -26,7 +26,7 @@ jobs: - publishing_client steps: - name: 'Checkout' - uses: actions/checkout@v2 + uses: actions/checkout@v4 # FIXME: when we bump a new release, we can have problem # in dry mode because the new release is not on the pub.dev # yet diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 553bbf78..87c92b64 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,8 +10,8 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: subosito/flutter-action@v1 + - uses: actions/checkout@v4 + - uses: subosito/flutter-action@v2 with: channel: 'stable' - name: Install dependencies