Skip to content

Commit b6c2e4b

Browse files
committed
0.8.0
1 parent 5fcc6b0 commit b6c2e4b

File tree

2 files changed

+48
-2
lines changed

2 files changed

+48
-2
lines changed

CHANGELOG.md

Lines changed: 47 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,58 @@
22

33
### Breaking changes & deprecations
44

5-
- Query keyword argument was removed, use `variables:` instead.
5+
### New features
6+
7+
### Bug fixes
8+
9+
## 0.8.0 (4 Sept 2015)
10+
11+
### Breaking changes & deprecations
612

713
### New features
814

15+
- Async field resolution with `context.async { ... }`
16+
- Access AST node during resolve with `context.ast_node`
17+
918
### Bug fixes
1019

20+
- Fix for validating arguments returning up too soon
21+
- Raise if you try to define 2 types with the same name
22+
- Raise if you try to get a type by name but it doesn't exist
23+
24+
## 0.7.1 (27 Aug 2015)
25+
26+
### Breaking changes & deprecations
27+
28+
### New features
29+
30+
### Bug fixes
31+
32+
- Merge nested results from different fragments instead of using the latest one only
33+
34+
## 0.7.0 (26 Aug 2015)
35+
36+
### Breaking changes & deprecations
37+
38+
- Query keyword argument `params:` was removed, use `variables:` instead.
39+
40+
### New features
41+
42+
### Bug fixes
43+
44+
- `@skip` has precedence over `@include`
45+
- Handle when `DEFAULT_RESOVE` returns nil
46+
47+
## 0.6.2 (20 Aug 2015)
48+
49+
### Breaking changes & deprecations
50+
51+
### New features
52+
53+
### Bug fixes
54+
55+
- Fix whitespace parsing in input objects
56+
1157
## 0.6.1 (16 Aug 2015)
1258

1359
### Breaking changes & deprecations

lib/graphql/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module GraphQL
2-
VERSION = "0.7.1"
2+
VERSION = "0.8.0"
33
end

0 commit comments

Comments
 (0)