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-java/graphql-java
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v18.0
Choose a base ref
...
head repository: graphql-java/graphql-java
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v18.1
Choose a head ref
  • 17 commits
  • 37 files changed
  • 9 contributors

Commits on Mar 24, 2022

  1. Make public static fields immutable in ScalarInfo (#2770)

    Public static fields in ScalarInfo were exposing mutable collections
    that are obviously not intended to be modified. Switch to immutable
    collection types to avoid accidental mutation.
    kilink authored Mar 24, 2022
    Configuration menu
    Copy the full SHA
    a5b1383 View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2022

  1. Improve NonNullableValueCoercedAsNullException message (#2774)

    * Add full error message for NonNullableValueCoercedAsNullException
    
    * Add tests for improved NonNullableValueCoercedAsNullException
    
    * Remove empty path and improve grammar
    dondonz authored Mar 27, 2022
    Configuration menu
    Copy the full SHA
    e6c95b8 View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2022

  1. Make public static fields immutable in DirectiveInfo (#2781)

    Public static fields in DirectiveInfo were exposing mutable collections
    that are obviously not intended to be modified. Switch to immutable
    collection types to avoid accidental mutation.
    kilink authored Apr 3, 2022
    Configuration menu
    Copy the full SHA
    66fcb3d View commit details
    Browse the repository at this point in the history
  2. Replace usage of Stack with Deque / ArrayDeque (#2780)

    Replace Stack with ArrayDeque in TypeInfo.
    kilink authored Apr 3, 2022
    Configuration menu
    Copy the full SHA
    aeac9ca View commit details
    Browse the repository at this point in the history
  3. Fix argument / format string mismatches (#2779)

    Fix instances where too many or too few arguments were supplied to String.format.
    kilink authored Apr 3, 2022
    Configuration menu
    Copy the full SHA
    7691ee9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    29ffff7 View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2022

  1. Configuration menu
    Copy the full SHA
    f0d3036 View commit details
    Browse the repository at this point in the history
  2. GraphQL Specification link updated (#2785)

    * GraphQL Specification link updated
    
    * http to https
    firatkucuk authored Apr 9, 2022
    Configuration menu
    Copy the full SHA
    e95283f View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2022

  1. Variable document compilation now handles enums properly AND also tha…

    …t some values can be null (#2784)
    bbakerman authored Apr 13, 2022
    Configuration menu
    Copy the full SHA
    2148cdf View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2022

  1. Add ParserOption to ignore single-line comments (#2788)

    This commit adds the ability to ignore single-line comments during AST conversion.
    
    Fixes #2767
    jord1e authored Apr 16, 2022
    Configuration menu
    Copy the full SHA
    66595fa View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2022

  1. Add missing annotations in DelegatingDataFetchingEnvironment (#2797)

    DelegatingDataFetchingEnvironment was missing Deprecated and Override annotations.
    kilink authored Apr 17, 2022
    Configuration menu
    Copy the full SHA
    2c39728 View commit details
    Browse the repository at this point in the history
  2. Fix instances of incorrectly sized Maps and Sets (#2798)

    Fix a few occurrences where a Map or Set was initialized with an initial capacity
    value N, and then immediately filled with N items, which would always trigger
    a resize.
    kilink authored Apr 17, 2022
    Configuration menu
    Copy the full SHA
    9bf8487 View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2022

  1. Configuration menu
    Copy the full SHA
    12c7c4e View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2022

  1. Make some inner classes static (#2804)

    There were a few instances where inner classes were used unnecessarily over
    static inner classes.
    kilink authored Apr 26, 2022
    Configuration menu
    Copy the full SHA
    a9a8a29 View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2022

  1. Fix AstPrinter to print field descriptions (#2808)

    * Fix AstPrinter to print field descriptions
    
    * consider compact mode
    
    * fix autoformatted lines
    
    * fix autoformatted imports
    
    * fix `IntrospectionResultToSchemaTest.groovy` test
    
    * fix `IntrospectionResultToSchemaTest.groovy` test
    david-castaneda authored Apr 27, 2022
    Configuration menu
    Copy the full SHA
    5e7d856 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2022

  1. Make some static fields final (#2803)

    Make some static fields final, and avoid unnecessary boxing in UnicodeUtils.
    kilink authored Apr 29, 2022
    Configuration menu
    Copy the full SHA
    7086a3e View commit details
    Browse the repository at this point in the history
  2. Max query depth called later in beginExecuteOperation (#2773)

    * Investigation of NonNullableValueCoercedAsNullException is being thrown in MaxQueryDepthInstrumentation
    
    * MaxQueryDepthInstrumentation and MaxQueryComplexityInstrumentation now are called at execution time not after validation
    
    * use atomic ref
    bbakerman authored Apr 29, 2022
    Configuration menu
    Copy the full SHA
    b424f98 View commit details
    Browse the repository at this point in the history
Loading