Skip to content

Commit ed704d8

Browse files
committed
1.1.0
1 parent e320a88 commit ed704d8

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

CHANGELOG.md

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

99
### Bug fixes
1010

11+
## 1.1.0 (1 Nov 2016)
12+
13+
### Breaking changes
14+
15+
- Two-character `"\\u"` is no longer treated as the Unicode escape character, only the Unicode escape character `"\u"` is treated that way. (This behavior was a bug, the migration path is to use the Unicode escape character.) #366
16+
- `GraphQL::Language::ParserTests` was removed, use `GraphQL::Compatibility` instead. #366
17+
- Non-null arguments can't be defined with default values, because those values would never be used #361
18+
19+
### New features
20+
21+
- `Schema.from_definition(definition_string)` builds a `GraphQL::Schema` out of a schema definition. #346
22+
- Schema members (types, fields, arguments, enum values) can be hidden on a per-query basis with the `except:` option #300
23+
- `GraphQL::Compatibility` contains `.build_suite` functions for testing user-provided parsers and execution strategies with GraphQL internals. #366
24+
- Schema members respond to `#redefine { ... }` for making shallow copies with extended definitions. #357
25+
- `Schema#instrument` provides an avenue for observing query and field resolution with no overhead.
26+
- Some `SerialExecution` objects were converted to functions, resulting in a modest performance improvement for query resolution.
27+
28+
29+
### Bug fixes
30+
31+
- `NonNullType` and `ListType` have no name (`nil`), as per the spec #355
32+
- Non-null arguments can't be defined with default values, because those values would never be used #361
33+
1134
## 1.0.0 (25 Oct 2016)
1235

1336
### Breaking changes

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 = "1.0.0"
2+
VERSION = "1.1.0"
33
end

0 commit comments

Comments
 (0)