diff --git a/CHANGELOG.md b/CHANGELOG.md index 21d2f0e10a..dbaa240b92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## 1.7.4 +- Feature: Support Dataloader 2.0 + +## 1.7.4 + - Bug Fix: [Bugfix: multiple pushes per client for subscriptions that have a context_id](https://github.com/absinthe-graphql/absinthe/pull/1249) ## 1.7.3 diff --git a/mix.exs b/mix.exs index 968c0dd2a3..c37d6ce184 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule Absinthe.Mixfile do use Mix.Project @source_url "https://github.com/absinthe-graphql/absinthe" - @version "1.7.4" + @version "1.7.5" def project do [ @@ -75,7 +75,7 @@ defmodule Absinthe.Mixfile do [ {:nimble_parsec, "~> 1.2.2 or ~> 1.3.0"}, {:telemetry, "~> 1.0 or ~> 0.4"}, - {:dataloader, "~> 1.0.0", optional: true}, + {:dataloader, "~> 1.0.0 or ~> 2.0", optional: true}, {:decimal, "~> 1.0 or ~> 2.0", optional: true}, {:opentelemetry_process_propagator, "~> 0.2.1", optional: true}, {:ex_doc, "~> 0.22", only: :dev},