File tree Expand file tree Collapse file tree 3 files changed +27
-2
lines changed
Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,31 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
1111
1212<!-- changelog -->
1313
14+ ## [ v0.6.0] ( https://github.com/ash-project/ash_events/compare/v0.5.1...v0.6.0 ) (2026-02-04)
15+
16+
17+
18+
19+ ### Features:
20+
21+ * destroy: add soft delete support and comprehensive tests by [ @Torkan ] ( https://github.com/Torkan )
22+
23+ * add store_sensitive_attributes dsl option by [ @Torkan ] ( https://github.com/Torkan )
24+
25+ ### Bug Fixes:
26+
27+ * replay: support non-writable UUID primary keys during replay by [ @Torkan ] ( https://github.com/Torkan )
28+
29+ * action-wrappers: handle nil source_context to allow actions without actor by [ @Torkan ] ( https://github.com/Torkan )
30+
31+ * upsert: use update_timestamp for occurred_at when upsert updates existing record by [ @Torkan ] ( https://github.com/Torkan )
32+
33+ * tests: remove duplicate atomic create test assertion by [ @Torkan ] ( https://github.com/Torkan )
34+
35+ * mix: move preferred_cli_env to cli/0 callback by [ @Torkan ] ( https://github.com/Torkan )
36+
37+ * events: return notifications from event creation to prevent missed notification warnings by [ @Torkan ] ( https://github.com/Torkan )
38+
1439## v0.5.1 (2025-09-19)
1540
1641
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ Add `ash_events` to your dependencies in `mix.exs`:
3333``` elixir
3434def deps do
3535 [
36- {:ash_events , " ~> 0.5.1 " }
36+ {:ash_events , " ~> 0.6.0 " }
3737 # ... other deps
3838 ]
3939end
Original file line number Diff line number Diff line change 55defmodule AshEvents.MixProject do
66 use Mix.Project
77
8- @ version "0.5.1 "
8+ @ version "0.6.0 "
99
1010 @ description """
1111 The extension for tracking changes to your resources via a centralized event log, with replay functionality.
You can’t perform that action at this time.
0 commit comments