Skip to content

Commit 5d6ba58

Browse files
committed
2.0.1
1 parent 08ac1c3 commit 5d6ba58

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,20 @@
1010

1111
### Bug fixes
1212

13+
# 2.0.1 (21 February 2022)
14+
15+
### Breaking changes
16+
17+
- Resolvers: refactored so that, instead of _copying_ configurations to `field ...` instances, `GraphQL::Schema::Field`s reference their provided `resolver: ...`, `mutation: ...`, or `subscription: ...` classes for many properties. This _shouldn't_ break anything -- all of graphql-ruby's own tests passed just fine -- but it's mentioned here in case you notice anything out-of-sorts in your own application #3916
18+
- Remove deprecated field options `field:`, `function:`, and `resolve:` (these were already no-ops, but they were overlooked in 2.0.0) #3917
19+
20+
### Bug fixes
21+
22+
- Scoped context: fix usage with dataloader #3950
23+
- Subscriptions: support multiple definitions for subscription root fields with `.trigger` #3897 #3935
24+
- Improve some error messages #3920 #3923
25+
- Clean up scalar validation code #3982
26+
1327
# 2.0.0 (9 February 2022)
1428

1529
### Breaking Changes

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 = "2.0.0"
3+
VERSION = "2.0.1"
44
end

0 commit comments

Comments
 (0)