From 63645d7d190a0a40563fc35a940718bc2f58f170 Mon Sep 17 00:00:00 2001 From: Ben Wilson Date: Mon, 24 Jul 2023 08:31:47 -0400 Subject: [PATCH] update changelog --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 76064ed..722d7f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ # Changelog -## v2.0.0-dev (unreleased) +## v2.0.0 2023-07-24 -- Breaking Feature: Automatically handle sync vs async for the ecto dataloader source ([#146](https://github.com/absinthe-graphql/dataloader/pull/146)). Other dataloader source implementations need to add an `async?` function to comply with the protocol. +- Breaking Feature: Automatically handle sync vs async for the ecto dataloader source ([#146](https://github.com/absinthe-graphql/dataloader/pull/146)). Other dataloader source implementations need to add an `async?` function to comply with the protocol. NOTE: This only impacts you if you have a custom dataloader source. If you use the built in Ecto or KV sources then there is nothing you need to do. - Improvement: KV source no longer double wraps results in `{:ok, {:ok, value}} tuples` when you return an OK tuple while using the tuple policy ([#145](https://github.com/absinthe-graphql/dataloader/pull/145)) ## v1