From e976956254d85fe0a1c5c5a491edc4f1a5dca23a Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Thu, 17 Aug 2023 18:07:09 -0400 Subject: [PATCH] chore: release version v2.14.2 --- CHANGELOG.md | 27 ++++++++++++++++++++++++++ README.md | 2 +- documentation/tutorials/get-started.md | 2 +- mix.exs | 2 +- 4 files changed, 30 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c07d1e39..fb5e0489 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,33 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v2.14.2](https://github.com/ash-project/ash/compare/v2.14.1...v2.14.2) (2023-08-17) + + + + +### Bug Fixes: + +* Enum types only have `storage_type/0` still + +* inspecting a query now only shows arguments explicitly set + +* don't set attributes or arguments to invalid values + +### Improvements: + +* storage_type/0 -> storage_type/1 + +* Ash.Resource.Calculation: set struct defaults. (#673) + +* track invalid keys, don't add required errors for them + +* properly set path into error instead of on error messages + +* expose union errors with path when tag is set + +* find all installed extensions by default + ## [v2.14.1](https://github.com/ash-project/ash/compare/v2.14.0...v2.14.1) (2023-08-14) diff --git a/README.md b/README.md index b2956f54..18f4f7db 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ ```elixir def deps do [ - {:ash, "~> 2.14.1"} + {:ash, "~> 2.14.2"} ] end ``` diff --git a/documentation/tutorials/get-started.md b/documentation/tutorials/get-started.md index b812ebe6..0f96eee8 100644 --- a/documentation/tutorials/get-started.md +++ b/documentation/tutorials/get-started.md @@ -73,7 +73,7 @@ defp deps do [ # {:dep_from_hexpm, "~> 0.3.0"}, # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}, - {:ash, "~> 2.14.1"} # <-- add this line + {:ash, "~> 2.14.2"} # <-- add this line ] end ``` diff --git a/mix.exs b/mix.exs index 749e359b..9c745ab4 100644 --- a/mix.exs +++ b/mix.exs @@ -7,7 +7,7 @@ defmodule Ash.MixProject do designed to be used by multiple front ends. """ - @version "2.14.1" + @version "2.14.2" def project do [