From 1eca6bfe29f5c2b30bd624cb932786ea48a26853 Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Thu, 18 Jul 2024 17:40:08 -0400 Subject: [PATCH] chore: release version v1.2.1 --- CHANGELOG.md | 27 +++++++++++++++++++ .../tutorials/getting-started-with-graphql.md | 2 +- mix.exs | 2 +- 3 files changed, 29 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8df49bb..caa1a39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,33 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v1.2.1](https://github.com/ash-project/ash_graphql/compare/v1.2.0...v1.2.1) (2024-07-18) + + + + +### Bug Fixes: + +* upgrade ash dependency for bulk action bug fix + +* use checked constraints (#187) + +* don't assume `filter` is non-nil for gets + +* properly interpolate action in conflict messages + +* add resource query to action struct (#178) + +### Improvements: + +* add extension installation code + +* add igniter-backed installer + +* add `nullable_fields?` for easily marking fields as nullable + +* only define `managed_relationship` mutations when necessary + ## [v1.2.0](https://github.com/ash-project/ash_graphql/compare/v1.1.1...v1.2.0) (2024-06-17) diff --git a/documentation/tutorials/getting-started-with-graphql.md b/documentation/tutorials/getting-started-with-graphql.md index 7524598..141a3eb 100644 --- a/documentation/tutorials/getting-started-with-graphql.md +++ b/documentation/tutorials/getting-started-with-graphql.md @@ -22,7 +22,7 @@ mix igniter.install ash_graphql def deps() [ ... - {:ash_graphql, "~> 1.2.0"} + {:ash_graphql, "~> 1.2.1"} ] end ``` diff --git a/mix.exs b/mix.exs index b7d7f93..266a16a 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule AshGraphql.MixProject do The extension for building GraphQL APIs with Ash """ - @version "1.2.0" + @version "1.2.1" def project do [