Skip to content

Commit

Permalink
Merge pull request #1185 from zino-hofmann/macros/prepare
Browse files Browse the repository at this point in the history
prepare last versions beta
  • Loading branch information
vincenzopalazzo authored Jul 22, 2022
2 parents 07aa0dc + a564c51 commit 7a84abb
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 27 deletions.
16 changes: 0 additions & 16 deletions .releaserc.yaml

This file was deleted.

12 changes: 7 additions & 5 deletions docs/dev/MAINTAINERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ Sometimes the right way is unclear, so it’s best not to spend time on it. It
### Use of `FIXME`

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

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

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

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

### Scopes

Expand Down Expand Up @@ -117,7 +119,7 @@ The stacktrace is the following one
} expected `Foo` not `Foo` - both operands must be the same type for operator overloading
11 | }
12 |
12 |
13 | fn (_ Foo) == (_ Foo) bool {
| ~~~
14 | return true
Expand All @@ -142,8 +144,8 @@ To prepare the release the following steps are required:
- `make {changelog_client|changelog_flutter|changelog}`, where
- `changelog_client`: generate the changelog for graphql;
- `changelog_flutter`: generate the changelog for graphql_flutter;
- `changelog`: generate both changelos.
- 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
- `changelog`: generate both changelos.
- 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
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).


Expand Down
12 changes: 12 additions & 0 deletions packages/graphql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# v5.1.2-beta.4

## Fixed
- fix `SocketClient` to close subscription on socket close ([commit](https://github.com/zino-hofmann/graphql-flutter/commit/45f88f6886e5175162caaa6944e69a11ef7fe346)). @qbx2 22-07-2022

## Added
- Introduce a new class `GraphQLProtocol` with better naming ([commit](https://github.com/zino-hofmann/graphql-flutter/commit/e59d40693125c8502d7fd7dcdb4817ece4645052)). @vincenzopalazzo 22-07-2022

## Deprecated
- deprecate the `SocketSubProtocol` to improve naming ([commit](https://github.com/zino-hofmann/graphql-flutter/commit/2afd58362b2b107197004a14a61152ec8985fa1f)). @vincenzopalazzo 22-07-2022


# v5.1.2-beta.3

## Fixes
Expand Down
4 changes: 2 additions & 2 deletions packages/graphql/changelog.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"package_name": "graphql",
"version": "v5.1.2-beta.3",
"version": "v5.1.2-beta.4",
"api": {
"name": "github",
"repository": "zino-hofmann/graphql-flutter",
"branch": "main"
},
"generation_method": {
"name": "header",
"name": "semver-v2",
"header_filter": true
},
"serialization_method": {
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.1.2-beta.3
version: 5.1.2-beta.4
homepage: https://github.com/zino-app/graphql-flutter/tree/master/packages/graphql

dependencies:
Expand Down
6 changes: 6 additions & 0 deletions packages/graphql_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v5.1.1-beta.4

## Fixed
- fix wrong default policy merging in useWatchQue… ([commit](https://github.com/zino-hofmann/graphql-flutter/commit/e4b864b0467a3558dcbbb0b40d63e67aa76f30f8)). @dehypnosis 22-07-2022


# v5.1.1-beta.3

## New Feature
Expand Down
4 changes: 2 additions & 2 deletions packages/graphql_flutter/changelog.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"package_name": "graphql_flutter",
"version": "v5.1.1-beta.3",
"version": "v5.1.1-beta.4",
"api": {
"name": "github",
"repository": "zino-hofmann/graphql-flutter",
"branch": "main"
},
"generation_method": {
"name": "header",
"name": "semver-v2",
"header_filter": true
},
"serialization_method": {
Expand Down
2 changes: 1 addition & 1 deletion packages/graphql_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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.1.1-beta.3
version: 5.1.1-beta.4
homepage: https://github.com/zino-app/graphql-flutter/tree/master/packages/graphql_flutter

dependencies:
Expand Down

0 comments on commit 7a84abb

Please sign in to comment.