Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Support full Unicode in lexer
  • Loading branch information
tyranron committed Sep 16, 2025
commit 1ed88606aaf75ae0a1736dabadc878838135c0ca
6 changes: 5 additions & 1 deletion juniper/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,15 @@ All user visible changes to `juniper` crate will be documented in this file. Thi
- [September 2025] GraphQL spec: ([#1347])
- `__Type.isOneOf` field. ([#1348], [graphql/graphql-spec#825])
- `SCHEMA`, `OBJECT`, `ARGUMENT_DEFINITION`, `INTERFACE`, `UNION`, `ENUM`, `INPUT_OBJECT` and `INPUT_FIELD_DEFINITION` values to `__DirectiveLocation` enum. ([#1348])
- Arguments and input object fields deprecation: ([#1348], [#864], [graphql/graphql-spec#525], [graphql/graphql-spec#805])
- Arguments and input object fields deprecation: ([#1348], [#864], [graphql/graphql-spec#525], [graphql/graphql-spec#805])
- Placing `#[graphql(deprecated)]` and `#[deprecated]` attributes on struct fields in `#[derive(GraphQLInputObject)]` macro.
- Placing `#[graphql(deprecated)]` attribute on method arguments in `#[graphql_object]` and `#[graphql_interface]` macros.
- Placing `@deprecated` directive on arguments and input object fields.
- `includeDeprecated` argument to `__Type.inputFields`, `__Field.args` and `__Directive.args` fields.
- `__InputValue.isDeprecated` and `__InputValue.deprecationReason` fields.
- `schema::meta::Argument::deprecation_status` field.
- Support for variable-length escaped Unicode characters (e.g. `\u{110000}`) in strings. ([#1349], [graphql/graphql-spec#849], [graphql/graphql-spec#687])
- Support full Unicode range. ([#1349], [graphql/graphql-spec#849], [graphql/graphql-spec#687])
- Support for [block strings][0180-1]. ([#1349])

### Changed
Expand All @@ -48,8 +50,10 @@ All user visible changes to `juniper` crate will be documented in this file. Thi
[#1348]: /../../pull/1348
[#1349]: /../../pull/1349
[graphql/graphql-spec#525]: https://github.com/graphql/graphql-spec/pull/525
[graphql/graphql-spec#687]: https://github.com/graphql/graphql-spec/issues/687
[graphql/graphql-spec#805]: https://github.com/graphql/graphql-spec/pull/805
[graphql/graphql-spec#825]: https://github.com/graphql/graphql-spec/pull/825
[graphql/graphql-spec#849]: https://github.com/graphql/graphql-spec/pull/849
[graphql/graphql-spec#1040]: https://github.com/graphql/graphql-spec/pull/1040
[graphql/graphql-spec#1142]: https://github.com/graphql/graphql-spec/pull/1142
[0180-1]: https://spec.graphql.org/September2025/#sec-String-Value.Block-Strings
Expand Down
Loading