Skip to content

Commit

Permalink
Release v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kzlsakal committed Feb 23, 2024
1 parent 8c60cf2 commit dce488a
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Changelog

## 0.5.0

- Feature: [Support `@composeDirective`](https://github.com/DivvyPayHQ/absinthe_federation/pull/91)
- Bug Fix: [Import directive definitions when a custom prototype is used](https://github.com/DivvyPayHQ/absinthe_federation/pull/92)
- **BREAKING** (only if migrating from 0.4.2): Using a custom prototype will now
require using the following method:

```elixir
defmodule MyApp.MySchema do
use Absinthe.Schema
use Absinthe.Federation.Schema, prototype_schema: MyApp.MySchemaPrototype
```

instead of

```elixir
defmodule MyApp.MySchema do
use Absinthe.Schema
use Absinthe.Federation.Schema, skip_prototype: true
@prototype_schema MyApp.MySchemaPrototype
```

## 0.4.2

- Feature: [Support using a custom schema prototype](https://github.com/DivvyPayHQ/absinthe_federation/pull/90)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Install from [Hex.pm](https://hex.pm/packages/absinthe_federation):
```elixir
def deps do
[
{:absinthe_federation, "~> 0.4"}
{:absinthe_federation, "~> 0.5"}
]
end
```
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.4.2"
@version "0.5.0"

def project do
[
Expand Down

0 comments on commit dce488a

Please sign in to comment.