Skip to content

Commit 5420000

Browse files
committed
1.13.3
1 parent e56654e commit 5420000

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

CHANGELOG.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

3-
[Versioning guidelines](https://graphql-ruby.org/development.html#versioning)
3+
[Versioning guidelines](https://graphql-ruby.org/development.html#versioning)
4+
45
### Breaking changes
56

67
### Deprecations
@@ -9,6 +10,30 @@
910

1011
### Bug fixes
1112

13+
# 1.13.3 (6 January 2022)
14+
15+
### Deprecations
16+
17+
- `GraphQL::Relay::NodeField` and `GraphQL::Relay::NodesField` are deprecated; use `GraphQL::Relay::HasNodesField` or `GraphQL::Relay::HasNodeField` instead. (The underlying field instances require a reference to their owner type, but `NodeField` and `NodesField` can't do that, since they're shared instances) #3791
18+
19+
### New features
20+
21+
- Arguments: support `required: :nullable` to make an argument required to be _present_, even if it's `null` #3784
22+
- Connections: When paginating an AR::Relation, use already-loaded results if possible #3790
23+
- Tracing: Support DRY::Notifications #3776
24+
- Improve the error when a Ruby method doesn't support the defined GraphQL arguments #3785
25+
- Input Objects: call `.authorized?` on them at runtime #3786
26+
- Field extensions: add `extras(...)` for extension-related extras with automatic cleanup #3787
27+
28+
### Bug fixes
29+
30+
- Validation: accept nullable variable types for arguments with default values #3819
31+
- Validation: raise a better error when a schema receives a `query { ... }` but has no query root #3815
32+
- Improve the error message when `Schema.get_field` can't make sense of the arguments #3815
33+
- Subscriptions: losslessly serialize Rails 7 TimeWithZone #3774
34+
- Field Usage analyzer: handle errors from `prepare:` hooks #3794
35+
- Schema from definition: fix default values with camelized arguments #3780
36+
1237
# 1.13.2 (15 December 2021)
1338

1439
### 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.13.2"
3+
VERSION = "1.13.3"
44
end

0 commit comments

Comments
 (0)