Skip to content

Commit 7a84abb

Browse files
Merge pull request #1185 from zino-hofmann/macros/prepare
prepare last versions beta
2 parents 07aa0dc + a564c51 commit 7a84abb

File tree

8 files changed

+31
-27
lines changed

8 files changed

+31
-27
lines changed

.releaserc.yaml

Lines changed: 0 additions & 16 deletions
This file was deleted.

docs/dev/MAINTAINERS.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ Sometimes the right way is unclear, so it’s best not to spend time on it. It
3030
### Use of `FIXME`
3131

3232
There are two cases in which you should use a `/* FIXME: */`
33-
comment: one is where an optimization is possible, but it’s not clear that it’s yet worthwhile,
33+
comment: one is where an optimization is possible, but it’s not clear that it’s yet worthwhile,
3434
and the second one is to note an ugly corner case which could be improved (and may be in a following patch).
3535

36-
There are always compromises in code: eventually it needs to ship. `FIXME` is grep-fodder for yourself and others,
36+
There are always compromises in code: eventually it needs to ship. `FIXME` is grep-fodder for yourself and others,
3737
as well as useful warning signs if we later encounter an issue in some part of the code.
3838

3939
### Write For Today: Unused Code Is Buggy Code
@@ -87,6 +87,8 @@ The version in our package.json gets copied to the one we publish, and users nee
8787

8888
- **feat**: A new feature
8989
- **fix**: A bug fix
90+
- **deprecate**: Deprecate a feature and start to the removing process (3 official release or 1 major release)
91+
- **remove**: End of life for the feature.
9092

9193
### Scopes
9294

@@ -117,7 +119,7 @@ The stacktrace is the following one
117119
118120
} expected `Foo` not `Foo` - both operands must be the same type for operator overloading
119121
11 | }
120-
12 |
122+
12 |
121123
13 | fn (_ Foo) == (_ Foo) bool {
122124
| ~~~
123125
14 | return true
@@ -142,8 +144,8 @@ To prepare the release the following steps are required:
142144
- `make {changelog_client|changelog_flutter|changelog}`, where
143145
- `changelog_client`: generate the changelog for graphql;
144146
- `changelog_flutter`: generate the changelog for graphql_flutter;
145-
- `changelog`: generate both changelos.
146-
- Make the Github release: To release a single package we need to create a release with the following tag `{package_name}-v{version_number}`, and
147+
- `changelog`: generate both changelos.
148+
- Make the Github release: To release a single package we need to create a release with the following tag `{package_name}-v{version_number}`, and
147149
if we make a release with the tag `v{version_number}` this will release all the packages (useful for a major release of the package).
148150

149151

packages/graphql/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# v5.1.2-beta.4
2+
3+
## Fixed
4+
- fix `SocketClient` to close subscription on socket close ([commit](https://github.com/zino-hofmann/graphql-flutter/commit/45f88f6886e5175162caaa6944e69a11ef7fe346)). @qbx2 22-07-2022
5+
6+
## Added
7+
- Introduce a new class `GraphQLProtocol` with better naming ([commit](https://github.com/zino-hofmann/graphql-flutter/commit/e59d40693125c8502d7fd7dcdb4817ece4645052)). @vincenzopalazzo 22-07-2022
8+
9+
## Deprecated
10+
- deprecate the `SocketSubProtocol` to improve naming ([commit](https://github.com/zino-hofmann/graphql-flutter/commit/2afd58362b2b107197004a14a61152ec8985fa1f)). @vincenzopalazzo 22-07-2022
11+
12+
113
# v5.1.2-beta.3
214

315
## Fixes

packages/graphql/changelog.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"package_name": "graphql",
3-
"version": "v5.1.2-beta.3",
3+
"version": "v5.1.2-beta.4",
44
"api": {
55
"name": "github",
66
"repository": "zino-hofmann/graphql-flutter",
77
"branch": "main"
88
},
99
"generation_method": {
10-
"name": "header",
10+
"name": "semver-v2",
1111
"header_filter": true
1212
},
1313
"serialization_method": {

packages/graphql/pubspec.yaml

Lines changed: 1 addition & 1 deletion
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-beta.3
3+
version: 5.1.2-beta.4
44
homepage: https://github.com/zino-app/graphql-flutter/tree/master/packages/graphql
55

66
dependencies:

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.1-beta.4
2+
3+
## Fixed
4+
- fix wrong default policy merging in useWatchQue… ([commit](https://github.com/zino-hofmann/graphql-flutter/commit/e4b864b0467a3558dcbbb0b40d63e67aa76f30f8)). @dehypnosis 22-07-2022
5+
6+
17
# v5.1.1-beta.3
28

39
## New Feature

packages/graphql_flutter/changelog.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"package_name": "graphql_flutter",
3-
"version": "v5.1.1-beta.3",
3+
"version": "v5.1.1-beta.4",
44
"api": {
55
"name": "github",
66
"repository": "zino-hofmann/graphql-flutter",
77
"branch": "main"
88
},
99
"generation_method": {
10-
"name": "header",
10+
"name": "semver-v2",
1111
"header_filter": true
1212
},
1313
"serialization_method": {

packages/graphql_flutter/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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-beta.3
3+
version: 5.1.1-beta.4
44
homepage: https://github.com/zino-app/graphql-flutter/tree/master/packages/graphql_flutter
55

66
dependencies:

0 commit comments

Comments
 (0)