Skip to content

Commit

Permalink
🎉 Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
HofmannZ committed Sep 1, 2018
1 parent a371053 commit 485a77f
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 5 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
## [1.0.0-alpha.1] - September 2 2018

### Breaking change

- [x] Renamed `Client` to `GraphQLClient` to avoid name collision with other packages. @HofmannZ
- [x] Renamed `GraphqlProvider` to `GraphQLProvider` to align with new naming. @HofmannZ
- [x] Renamed `GraphqlConsumer` to `GraphQLConsumer` to align with new naming. @HofmannZ
- [x] Renamed `GQLError` to `GraphQLError` to align with new naming. @HofmannZ
- [x] `GraphQLClient` requires a `Link` to passed into the constructor. @HofmannZ
- [x] `GraphQLClient` no longer requires a `endPoint` or `apiToken` to be passed into the constructor. Instead you can provide it to the `Link`. @HofmannZ
- [x] The `Query` and `Mutation` widgets are now `StreamBuilders`, there the api did change slightly. @HofmannZ

#### Fixes / Enhancements

- [x] Improved typing throughout the library. @HofmannZ
- [x] Queries are handled as streams of operations. @HofmannZ
- [ ] Errors can be mutated in the stream of operations.
- [x] Added the `HttpLink` to handle requests using http. @HofmannZ
- [x] `HttpLink` allows headers to be customised. @HofmannZ
- [x] The api allows contributors to write their own custom links. @HofmannZ

#### Docs

- [ ] Document the new link system.
- [ ] Write an upgrade guide.
- [x] Implement the new link system in the example. @HofmannZ

## [0.9.1] - August 30 2018

### Breaking change
Expand Down
10 changes: 5 additions & 5 deletions 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: 0.9.1
version: 1.0.0-alpha.1
authors:
- Eus Dima <eus@zinoapp.com>
- Zino Hofmann <zino@zinoapp.com>
Expand All @@ -9,10 +9,10 @@ homepage: https://github.com/zino-app/graphql-flutter
dependencies:
flutter:
sdk: flutter
meta: ^1.1.5
http: ^0.11.0
path_provider: ^0.4.0
uuid: ^1.0.0
meta: ^1.1.6
http: ^0.11.3
path_provider: ^0.4.1
uuid: ^1.0.3

dev_dependencies:
flutter_test:
Expand Down

0 comments on commit 485a77f

Please # to comment.