async-graphql/CHANGELOG.md

5.5 KiB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

Changed

  • Rework Extension, now fully supports asynchronous, better to use than before, and can achieve more features. Because it contains a lot of changes (if you don't have a custom extension, it will not cause the existing code to fail to compile), the major version will be updated to 3.0.0.

[2.7.4] 2021-04-02

  • Add the BuildHasher generic parameter to dataloader::HashMapCache to allow custom hashing algorithms. #455

[2.7.3] 2021-04-02

Added

  • Add cache support for DataLoader. #455
  • Implements ScalarType for serde_json::Value.
  • Add SelectionField::alias and SelectionField::arguments methods.

Fixed

  • Prevent Warp WS Close, Ping, and Pong messages from being parsed as GraphQL #459
  • Fix Schema::sdl() does not include subscription definitions. #464

[2.7.2] 2021-04-01

Removed

  • Remove SchemaBuilder::override_name method. #437

Added

  • Add name and visible attributes for Newtype macro for define a new scalar. #437
  • NewType macro now also implements From<InnerType> and Into<InnerType>.

[2.7.1] 2021-03-31

  • Add Request::disable_introspection method. #456

[2.7.0] 2021-03-27

Fixed

  • Fix chrono-tz integration. #452

Changed

  • Rework Extension & TracingExtension & OpenTelemetryExtension

[2.6.5] - 2021-03-24

  • In websocket, if the client sends start before connection_init, the connection will be immediately disconnected and return 1011 error. #451

[2.6.4] - 2021-03-22

  • Fix docs.

[2.6.3] - 2021-03-22

Added

  • Add extension::OpenTelemetry.

Removed

  • Remove TracingConfig, now Request span always takes the current span as the parent, so this option is no longer needed.
  • Remove multipart feature.

Changed

  • Now all features are not activated by default.

[2.6.2] - 2021-03-20

  • Add SchemaBuilder::enable_subscription_in_federation method. #449

[2.6.1] - 2021-03-19

  • Fix tracing extension doesn't work with async code. #448

[2.6.0] - 2021-03-18

[2.5.14] - 2021-03-14

  • Add DataLoader::loader method. #441
  • Fix the validation does not work on some inline fragments.

[2.5.13] - 2021-03-09

  • Support generics in Subscription types. #438

[2.5.12] - 2021-03-09

  • Remove unnecessary Box from WebSocket messages.
  • Export subscription type to Federation SDL. (for GraphGate 😁)
  • Add extends attribute for derive macros Subscription and MergedSubscription.
  • Add SchemaBuilder::override_name method. #437

[2.5.11] - 2021-03-07

  • Execute _entity requests in parallel. #431

[2.5.10] - 2021-03-06

  • Add descriptions for the exported Federation SDL.

[2.5.9] - 2021-02-28

Changed

  • Moved Variables from async_graphql::context::Variables to async_graphql::Variables.

[2.5.8] - 2021-02-27

Added

  • Allow the deprecation attribute to have no reason.

    #[derive(SimpleObject)]
    struct MyObject {
        #[graphql(deprecation)]
        a: i32,
    
        #[graphql(deprecation = true)]
        b: i32,
    
        #[graphql(deprecation = false)]
        c: i32,
    
        #[graphql(deprecation = "reason")]
        d: i32,
    }
    

[2.5.7] - 2021-02-23

Fixed

  • Fix the problem that the borrowing lifetime returned by the Context::data function is too small.

[2.5.6] - 2021-02-23

Changed

  • When introspection is disabled, introspection related types are no longer registered.

[2.5.5] - 2021-02-22

Added

[2.5.4] - 2021-02-15

Fixed

  • Fixed the error that the directive locations FIELD_DEFINITION and ENUM_VALUE cannot be parsed.

[2.5.3] - 2021-02-13

Fixed

[2.5.2] - 2021-02-06

Added

Fixed

  • Fixed the bug that can accept subscription requests during the initialization of WebSocket.
  • Fixed GraphQL over WebSocket Protocol does not support ConnectionError events. #406