Skip to content

Commit f02659a

Browse files
committed
1.9.7
1 parent 93ca329 commit f02659a

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

CHANGELOG.md

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

99
### Bug fixes
1010

11+
## 1.9.7 (25 June 2019)
12+
13+
### Breaking changes
14+
15+
- `Analysis::AST::Visitor#argument_definition` no longer returns the _previous_ argument definition. Instead, it returns the _current_ argument definition and `#previous_argument_definition` returns the previous one. You might have to replace calls to `.argument_definition` with `.previous_argument_definition` for compatibility. #2226
16+
17+
### New features
18+
19+
- Accept a `subscription_scope` configuration in Subscription classes #2297
20+
- Add a `disable_introspection_entry_points` configuration in Schema classes #2327
21+
- Add `Analysis::AST::Visitor#argument_definition` which returns the _current_ argument definition, `#previous_argument_definition` returns the _previous_ one #2226
22+
- Run CI on Ruby 2.6 #2328
23+
- Autogenerate base field class #2216
24+
- Add timeout support with interpreter #2220
25+
26+
### Bug fixes
27+
28+
- Fix Stack overflow when calling `.to_json` on input objects #2343
29+
- Fix off-by-one error with hasNextPage and ArrayConnections #2349
30+
- Fix GraphQL-Pro operation store compatibility #2350
31+
- Fix class-based transformer when multiple mutations are in one file #2309
32+
- Use `default_graphql_name` for Edge classes #2224
33+
- Support nested `loads:` with input objects #2323
34+
- Support `max_complexity` with multiplex & AST analysis #2306
35+
1136
## 1.9.6 (23 May 2019)
1237

1338
### 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.6"
3+
VERSION = "1.9.7"
44
end

0 commit comments

Comments
 (0)