File tree Expand file tree Collapse file tree 3 files changed +25
-2
lines changed Expand file tree Collapse file tree 3 files changed +25
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,29 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
5
5
6
6
<!-- changelog -->
7
7
8
+ ## [ v0.16.0] ( https://github.com/ash-project/reactor/compare/v0.15.6...v0.16.0 ) (2025-09-21)
9
+
10
+
11
+
12
+
13
+ ### Features:
14
+
15
+ * Allow Reactors to be able to be undone after successful completion. (#262 ) by James Harton
16
+
17
+ * add allow_async? flag to compose DSL (#256 ) by James Harton
18
+
19
+ ### Bug Fixes:
20
+
21
+ * undo for composed reactors (#263 ) by James Harton
22
+
23
+ * resolve nested step dependency and argument inheritance issues (#258 ) by James Harton
24
+
25
+ * correct current_try increment during step retries (#257 ) by James Harton
26
+
27
+ * correct current_try increment during step retries by James Harton
28
+
29
+ * mermaid: trim whitespace from module names to prevent : nofile errors (#253 ) by James Harton
30
+
8
31
## [ v0.15.6] ( https://github.com/ash-project/reactor/compare/v0.15.5...v0.15.6 ) (2025-07-02)
9
32
10
33
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ The package can be installed by adding `reactor` to your list of dependencies in
39
39
``` elixir
40
40
def deps do
41
41
[
42
- {:reactor , " ~> 0.15.6 " }
42
+ {:reactor , " ~> 0.16.0 " }
43
43
]
44
44
end
45
45
```
Original file line number Diff line number Diff line change 1
1
defmodule Reactor.MixProject do
2
2
use Mix.Project
3
3
4
- @ version "0.15.6 "
4
+ @ version "0.16.0 "
5
5
@ description "An asynchronous, graph-based execution engine"
6
6
7
7
def project do
You can’t perform that action at this time.
0 commit comments