chore: release version v2.14.2

This commit is contained in:
Zach Daniel 2023-08-17 18:07:09 -04:00
parent f302dca003
commit e976956254
4 changed files with 30 additions and 3 deletions

View file

@ -5,6 +5,33 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog -->
## [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)

View file

@ -10,7 +10,7 @@
```elixir
def deps do
[
{:ash, "~> 2.14.1"}
{:ash, "~> 2.14.2"}
]
end
```

View file

@ -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
```

View file

@ -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
[