Skip to content

Commit

Permalink
Release v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kzlsakal committed Dec 29, 2024
1 parent df19b33 commit 72ee141
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.6.0

- [Rework how entities field is resolved](https://github.com/DivvyPayHQ/absinthe_federation/pull/104):
- Support async resolution with 0-arity function
- Support Dataloader.Ecto
- Support function capture in `_resolve_reference`

## 0.5.4

- Bug Fix: [Fix `@link` directive arguments](https://github.com/DivvyPayHQ/absinthe_federation/pull/101)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Install from [Hex](https://hex.pm/packages/absinthe_federation):
```elixir
def deps do
[
{:absinthe_federation, "~> 0.5"}
{:absinthe_federation, "~> 0.6"}
]
end
```
Expand Down Expand Up @@ -237,7 +237,7 @@ end

### Using Dataloader in \_resolve_reference queries

You can use Dataloader in to resolve references to specific objects, but it requires manually setting up the batch and item key, as the field has no parent. Resolution for both \_resolve\_reference fields are functionally equivalent.
You can use Dataloader in to resolve references to specific objects, but it requires manually setting up the batch and item key, as the field has no parent. Resolution for both \_resolve_reference fields are functionally equivalent.

```elixir
defmodule Example.Schema do
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule Absinthe.Federation.MixProject do
use Mix.Project

@source_url "https://github.com/DivvyPayHQ/absinthe_federation"
@version "0.5.4"
@version "0.6.0"

def project do
[
Expand Down

0 comments on commit 72ee141

Please sign in to comment.