Skip to content

Commit 20084ae

Browse files
Merge pull request #1283 from zino-hofmann/macros/ws-release
fix(graphql): fix ws dependencies version to 2.2.0
2 parents 849b5e4 + faa98c3 commit 20084ae

File tree

7 files changed

+27
-9
lines changed

7 files changed

+27
-9
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ default: analyze check
66

77
dep:
88
dart pub global activate melos;
9-
dart pub global activate changelog_cmd;
9+
# dart pub global activate changelog_cmd;
1010
$(CC) bootstrap
1111

1212
check: ci_check_client ci_check_flutter

packages/graphql/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# v5.1.3
2+
3+
## Fixed
4+
- fix ws dependencies version to 2.2.0 ([commit](https://github.com/zino-hofmann/graphql-flutter/commit/f702ff12040834997d7fdbb844e618ec85756589)). @vincenzopalazzo 12-01-2023
5+
6+
17
# v5.1.2
28

39
## Added

packages/graphql/changelog.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"package_name": "graphql",
3-
"version": "v5.1.2",
3+
"version": "v5.1.3",
44
"api": {
55
"name": "github",
66
"repository": "zino-hofmann/graphql-flutter",
7-
"branch": "main"
7+
"branch": "macros/ws-release"
88
},
99
"generation_method": {
1010
"name": "semver-v2",

packages/graphql/pubspec.yaml

Lines changed: 5 additions & 2 deletions
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.1.2
3+
version: 5.1.3
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

@@ -18,7 +18,7 @@ dependencies:
1818
normalize: ^0.7.1
1919
http: ^0.13.0
2020
collection: ^1.15.0
21-
web_socket_channel: ^2.0.0
21+
web_socket_channel: 2.2.0
2222
stream_channel: ^2.1.0
2323
rxdart: ^0.27.1
2424
uuid: ^3.0.1
@@ -33,3 +33,6 @@ dev_dependencies:
3333

3434
environment:
3535
sdk: '>=2.12.0 <3.0.0'
36+
37+
dependency_overrides:
38+
web_socket_channel: '2.2.0'

packages/graphql_flutter/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# v5.1.2
2+
3+
## Fixed
4+
- fix ws dependencies version to 2.2.0 ([commit](https://github.com/zino-hofmann/graphql-flutter/commit/f702ff12040834997d7fdbb844e618ec85756589)). @vincenzopalazzo 12-01-2023
5+
6+
17
# v5.1.1
28

39
## Fixed

packages/graphql_flutter/changelog.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"package_name": "graphql_flutter",
3-
"version": "v5.1.1",
3+
"version": "v5.1.2",
44
"api": {
55
"name": "github",
66
"repository": "zino-hofmann/graphql-flutter",
7-
"branch": "main"
7+
"branch": "macros/ws-release"
88
},
99
"generation_method": {
1010
"name": "semver-v2",

packages/graphql_flutter/pubspec.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: graphql_flutter
22
description: A GraphQL client for Flutter, bringing all the features from a modern GraphQL client to one easy to use package.
3-
version: 5.1.1
3+
version: 5.1.2
44
repository: https://github.com/zino-app/graphql-flutter/tree/main/packages/graphql_flutter
55
issue_tracker: https://github.com/zino-hofmann/graphql-flutter/issues
66

77
dependencies:
8-
graphql: ^5.1.2
8+
graphql: ^5.1.3
99
gql_exec: ^0.4.0
1010
flutter:
1111
sdk: flutter
@@ -29,6 +29,9 @@ environment:
2929
sdk: '>=2.12.0 <3.0.0'
3030
flutter: ">=2.11.0"
3131

32+
dependency_overrides:
33+
web_socket_channel: '2.2.0'
34+
3235
platforms:
3336
android:
3437
ios:

0 commit comments

Comments
 (0)