Skip to content

Commit

Permalink
chore: release version v2.21.15
Browse files Browse the repository at this point in the history
  • Loading branch information
zachdaniel committed Jun 13, 2024
1 parent e944274 commit 262149e
Show file tree
Hide file tree
Showing 4 changed files with 66 additions and 3 deletions.
63 changes: 63 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,69 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline

<!-- changelog -->

## [v2.21.15](https://github.com/ash-project/ash/compare/v2.21.14...v2.21.15) (2024-06-13)




### Bug Fixes:

* return `{:ok` tuple when upgrading an expression calc to a literal calc

* use positional loading on embedded resources

* backport fix for `changing_attributes` for multiple attributes (#1102)

* backport fix to `changing_attributes` and atomic validations (#1098)

* union array argument/attribute handling when current attribute is (#1024)

* fix bad backport of validators

* handle rollbacks in nested error formas (backport from 3.0)

* Set tenant for managed relationship changeset (#1043)

* disable atomic upgrade for 2.0

* ensure actor is set when calling `for_read`

* `code_interface` actions accept `@context` for `Ash 2.0` (#1017)

* `code_interface` actions accept `@context` for `Ash 2.0`

* 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:

* Add attributes_present, attributes_absent. (#1046) (#1063)

* 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.14](https://github.com/ash-project/ash/compare/v2.21.13...v2.21.14) (2024-04-30)


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.14"}
{:ash, "~> 2.21.15"}
]
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.14"} # <-- add this line
{:ash, "~> 2.21.15"} # <-- 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.14"
@version "2.21.15"

def project do
[
Expand Down

0 comments on commit 262149e

Please sign in to comment.