chore: release version v2.14.3

This commit is contained in:
Zach Daniel 2023-08-22 14:44:48 -04:00
parent 95c5f5f1ac
commit c3b21aa8ea
4 changed files with 34 additions and 3 deletions

View file

@ -5,6 +5,37 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog -->
## [v2.14.3](https://github.com/ash-project/ash/compare/v2.14.2...v2.14.3) (2023-08-22)
### Bug Fixes:
* init validations at runtime not compile time
* Ash.Filter: Don't overly constrain related references. (#678)
* handle nil constraints in `cast_input`
* properly handle in-line maps in exprs
* don't cast notloaded/forbidden values at runtime
* add required errors for missing read arguments
* don't evaluate unknown types in basic operators
### Improvements:
* support in-line aggregates
* Set api field for ActionInput when running action (#676)
* make resource's DSL attributes section patchable (#675)
* validate all actions and accept/reject fields at once. (#674)
## [v2.14.2](https://github.com/ash-project/ash/compare/v2.14.1...v2.14.2) (2023-08-17)

View file

@ -10,7 +10,7 @@
```elixir
def deps do
[
{:ash, "~> 2.14.2"}
{:ash, "~> 2.14.3"}
]
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.2"} # <-- add this line
{:ash, "~> 2.14.3"} # <-- 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.2"
@version "2.14.3"
def project do
[