Skip to content

Commit 0384446

Browse files
authored
Fix minor CHANGELOG typos
1 parent 5486088 commit 0384446

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

juniper/CHANGELOG.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@
33
## Features
44

55
- Added async support. ([#2](https://github.com/graphql-rust/juniper/issues/2))
6-
- `Schema::execute()` is now async. Synchronous execution can still be used via `Schema::execute_sync()`
6+
- `Schema::execute()` is now async. Synchronous execution can still be used via `Schema::execute_sync()`.
77
- Field resolvers may optionally be declared as `async` and return a future.
88

9-
- Added *experimental* support for subscriptions. (
10-
[#433](https://github.com/graphql-rust/juniper/pull/433))
9+
- Added *experimental* support for GraphQL subscriptions. ([#433](https://github.com/graphql-rust/juniper/pull/433))
1110

12-
- Added support for generating the [GraphQL Schema Language](https://graphql.org/learn/schema/#type-language) representation of your schema using `RootNode::as_schema_language()`. ([#676](https://github.com/graphql-rust/juniper/pull/676))
11+
- Added support for generating the [GraphQL Schema Language](https://graphql.org/learn/schema/#type-language) representation of a schema using `RootNode::as_schema_language()`. ([#676](https://github.com/graphql-rust/juniper/pull/676))
1312
- This is controlled by the `schema-language` feature and is on by default. It may be turned off if you do not need this functionality to reduce dependencies and speed up compile times.
1413
- Note that this is for generating the GraphQL Schema Language representation from the Rust schema. For the opposite--generating a Rust schema from a GraphQL Schema Language file--see the [`juniper_from_schema`](https://github.com/davidpdrsn/juniper-from-schema) project.
1514

@@ -102,8 +101,8 @@
102101
- Add subscription endpoint to `playground_source()`.
103102
- Add subscription endpoint to `graphiql_source()`.
104103

105-
- Specifying a scalar type via a string is no longer supported. ([#631](https://github.com/graphql-rust/juniper/pull/631)).
106-
- For example, instead of `#[graphql(scalar = "DefaultScalarValue")]` use `#[graphql(scalar = DefaultScalarValue)]`. **Note the lack of quotes**.
104+
- Specifying a scalar type via a string is no longer supported. ([#631](https://github.com/graphql-rust/juniper/pull/631))
105+
- For example, instead of `#[graphql(scalar = "DefaultScalarValue")]` use `#[graphql(scalar = DefaultScalarValue)]`. *Note the lack of quotes*.
107106

108107
- Integration tests:
109108
- Renamed `http::tests::HTTPIntegration` as `http::tests::HttpIntegration`.

0 commit comments

Comments
 (0)