Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: graphql-rust/juniper
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: juniper_codegen-v0.17.0
Choose a base ref
...
head repository: graphql-rust/juniper
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 16 commits
  • 122 files changed
  • 2 contributors

Commits on Sep 8, 2025

  1. Configuration menu
    Copy the full SHA
    e82cfcc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c7406d0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a3004c8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0d4415e View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    563c925 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6be0ab9 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    d4f1b03 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    4e3670d View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2025

  1. Deprecation of input object fields and arguments (#1348, #864, #1347, g…

    …raphql/graphql-spec#525, graphql/graphql-spec#805)
    
    - allow `#[graphql(deprecated)]` and `#[deprecated]` attributes on struct fields in `#[derive(GraphQLInputObject)]` macro
    - allow `#[graphql(deprecated)]` attribute on method arguments in `#[graphql_object]` and `#[graphql_interface]` macros
    - allow `@deprecated` directive on arguments and input object fields
    - add `__InputValue.isDeprecated` and `__InputValue.deprecationReason` fields
    - add `includeDeprecated` argument to `__Type.inputFields`, `__Field.args` and `__Directive.args` fields
    - make `includeDeprecated` argument of `__Type.fields`, `__Type.enumValues`, `__Type.inputFields`, `__Field.args` and `__Directive.args` fields non-`Null` (graphql/graphql-spec#1142)
    - add `schema::meta::Argument::deprecation_status` field
    - make `@deprecated(reason:)` argument non-`Null` (graphql/graphql-spec#1040)
    
    Additionally:
    - add `__Type.isOneOf` field (graphql/graphql-spec#825)
    - add `SCHEMA`, `OBJECT`, `ARGUMENT_DEFINITION`, `INTERFACE`, `UNION`, `ENUM`, `INPUT_OBJECT` and `INPUT_FIELD_DEFINITION` values to `__DirectiveLocation` enum
    - update canonical introspection query to 16.11.0 version of GraphQL.js
    - fix incorrect `__Type.specifiedByUrl` field name to `__Type.specifiedByURL`
    - fix missing `@specifiedBy(url:)` directive in SDL generated by `RootNode::as_sdl()` and `RootNode::as_document()` methods
    tyranron authored Sep 12, 2025
    Configuration menu
    Copy the full SHA
    90ecd03 View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2025

  1. Configuration menu
    Copy the full SHA
    02dec09 View commit details
    Browse the repository at this point in the history
  2. Fix serde deprecations

    tyranron committed Sep 18, 2025
    Configuration menu
    Copy the full SHA
    8b85532 View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2025

  1. Fix bench CI job

    tyranron committed Sep 25, 2025
    Configuration menu
    Copy the full SHA
    2f60482 View commit details
    Browse the repository at this point in the history
  2. Upgrade tokio-tungstenite crate from 0.27 to 0.28 version (#1351)

    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 25, 2025
    Configuration menu
    Copy the full SHA
    b282c50 View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2025

  1. Satisfy latest nightly rustc linter

    - refactor local declarative macro calling in unit tests of `juniper` crate
    tyranron committed Oct 1, 2025
    Configuration menu
    Copy the full SHA
    4cda23c View commit details
    Browse the repository at this point in the history
  2. Support descriptions of executable documents (#1349, #1347, graphql/g…

    …raphql-spec#1170)
    
    - add `description` field to `ast::Operation`, `ast::Fragment` and `ast::VariableDefinition` (graphql/graphql-spec#1170)
    - support full Unicode range (graphql/graphql-spec#849, graphql/graphql-spec#687)
    - support parsing block string literals
    - support variable-length escaped Unicode characters in strings (graphql/graphql-spec#849, graphql/graphql-spec#687)
    - fix incorrect double escaping in `ScalarToken::String` `Display`ing
    - change `ScalarToken::String` to contain raw quoted and escaped `StringLiteral`
    - add `LexerError::UnterminatedBlockString` variant
    
    Additionally:
    - move `String` parsing to `StringLiteral::parse()` method
    - move lexer tests to `parser::lexer` module
    - satisfy rustc linter when running `juniper` unit tests without features
    tyranron authored Oct 1, 2025
    Configuration menu
    Copy the full SHA
    180a513 View commit details
    Browse the repository at this point in the history
  3. Rename ast::VariableDefinitions to ast::VariablesDefinition (#1353,

    #1347, graphql/graphql-spec#916)
    
    - rename `ast::Operation::variable_definitions` field to `variables_definition`
    tyranron authored Oct 1, 2025
    Configuration menu
    Copy the full SHA
    7725a27 View commit details
    Browse the repository at this point in the history
Loading