Skip to content

Commit

Permalink
chore: release version v2.21.12
Browse files Browse the repository at this point in the history
  • Loading branch information
zachdaniel committed Apr 12, 2024
1 parent 67e05dd commit ee852f3
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 3 deletions.
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,43 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline

<!-- changelog -->

## [v2.21.12](https://github.com/ash-project/ash/compare/v2.21.11...v2.21.12) (2024-04-12)




### Bug Fixes:

* ensure opts properly contain the `tenant`

* properly set tenant on aggregate query

* properly set action_type when preparing changesets (#1012)

* types: can and can? types were only addressing create when using the tuple method, the code also accepts the record for update & destroy

* allow strings in Ash.Type.Enum again

* set tenant in bulk creates after setting up changeset

* properly cast identity keys before comparison

* properly handle lists of errors added by validations

* honor only_when_valid? in bulk actions

* policy ending with authorize_unless had flipped conditional

* properly handle transaction errors from bulk creates

### Improvements:

* support `allow_nil_input` dsl option in update/destroy (#965)

* allow simple check to return error tuple (#958)

* ensure that update defaults are set

## [v2.21.11](https://github.com/ash-project/ash/compare/v2.21.10...v2.21.11) (2024-04-12)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
```elixir
def deps do
[
{:ash, "~> 2.21.11"}
{:ash, "~> 2.21.12"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion documentation/tutorials/get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,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.21.11"} # <-- add this line
{:ash, "~> 2.21.12"} # <-- add this line
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ defmodule Ash.MixProject do
designed to be used by multiple front ends.
"""

@version "2.21.11"
@version "2.21.12"

def project do
[
Expand Down

0 comments on commit ee852f3

Please sign in to comment.