diff --git a/CHANGELOG.md b/CHANGELOG.md index dd09fb03..0fb12c1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +# [4.0.3] 2022-6-20 + +- Custom error type in axum request extractor [#945](https://github.com/async-graphql/async-graphql/pull/945) +- Add nodes exposure on `ConectionType` so nesting through edges isn't always needed. [#952](https://github.com/async-graphql/async-graphql/pull/952) +- Make email-validator optional [#950](https://github.com/async-graphql/async-graphql/pull/950) + # [4.0.2] 2022-6-10 - Expose `Edge::node` to allow better testing. [#933](https://github.com/async-graphql/async-graphql/pull/933) diff --git a/README.md b/README.md index 089ff759..e5736f35 100644 --- a/README.md +++ b/README.md @@ -84,6 +84,7 @@ This crate offers the following features, all of which are not activated by defa - `hashbrown`: Integrate with the [`hashbrown` crate](https://github.com/rust-lang/hashbrown). - `time`: Integrate with the [`time` crate](https://github.com/time-rs/time). - `tokio-sync` Integrate with the [`tokio::sync::RwLock`](https://docs.rs/tokio/1.18.1/tokio/sync/struct.RwLock.html) and [`tokio::sync::Mutex`](https://docs.rs/tokio/1.18.1/tokio/sync/struct.Mutex.html). +- `fast_chemail`: Integrate with the [`fast_chemail` crate](https://crates.io/crates/fast_chemail). ## Apollo Studio diff --git a/src/lib.rs b/src/lib.rs index c48aa81c..41ff53d7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -89,6 +89,7 @@ //! - `time`: Integrate with the [`time` crate](https://github.com/time-rs/time). //! - `tokio-sync` Integrate with the [`tokio::sync::RwLock`](https://docs.rs/tokio/1.18.1/tokio/sync/struct.RwLock.html) //! and [`tokio::sync::Mutex`](https://docs.rs/tokio/1.18.1/tokio/sync/struct.Mutex.html). +//! - `fast_chemail`: Integrate with the [`fast_chemail` crate](https://crates.io/crates/fast_chemail). //! //! ## Integrations //!