Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codcoverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_flutter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.3",
"version": "v5.2.4",
"api": {
"name": "github",
"repository": "zino-hofmann/graphql-flutter",
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.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

Expand Down
2 changes: 1 addition & 1 deletion packages/graphql_flutter/changelog.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"package_name": "graphql_flutter",
"version": "v5.2.1",
"version": "v5.3.0",
"api": {
"name": "github",
"repository": "zino-hofmann/graphql-flutter",
Expand Down
4 changes: 2 additions & 2 deletions packages/graphql_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
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

# just for dev work
# publish_to: 'none'

dependencies:
graphql: ^5.2.2
graphql: ^5.2.4
gql_exec: ^1.0.0+1
flutter:
sdk: flutter
Expand Down
Loading