Skip to content

Commit 61a0669

Browse files
authored
Merge pull request rmosolgo#2228 from swalkinshaw/1.9.4-release
1.9.4
2 parents a9f334b + 1aa0b8d commit 61a0669

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,30 @@
88

99
### Bug fixes
1010

11+
## 1.9.4 (5 Apr 2019)
12+
13+
### Breaking Changes
14+
15+
- `GraphQL::Schema::Resolver::LoadApplicationObjectFailedError` was renamed to `GraphQL::LoadApplicationObjectFailedError`. (This will only break if you're referencing the class by name and running Ruby 2.5+) #2080
16+
17+
### New features
18+
19+
- Add `Types::BigInt` #2150
20+
- Add auto-loading arguments support in Input Object types #2080
21+
- Add analytics tag to Datadog tracing #2154
22+
23+
### Bug fixes
24+
25+
- Fix `Query#execute` when no explicit query string is passed in #2142
26+
- Fix when a root type returns nil because unauthorized #2144
27+
- Fix tracing `node` by threading `owner:` through field tracing #2156
28+
- Fix interpreter handling of exceptions raised during argument preparation #2198
29+
- Fix ActionCableLink when there are errors but no data #2176
30+
- Provide empty hash as default option for field resolvers #2189
31+
- Prevent argument names from overwriting Arguments methods #2171
32+
- Include array indices in error paths #2162
33+
- Handle non-node arrays in AST visitor #2161
34+
1135
## 1.9.3 (20 Feb 2019)
1236

1337
### Bug fixes

lib/graphql/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# frozen_string_literal: true
22
module GraphQL
3-
VERSION = "1.9.3"
3+
VERSION = "1.9.4"
44
end

0 commit comments

Comments
 (0)