File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ The format is based on [Keep a
6
6
Changelog] ( https://keepachangelog.com/en/1.0.0/ ) , and this project adheres to
7
7
[ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
8
8
9
+ ## 0.7.5 - 2024-09-25
10
+
11
+ ### Fixed
12
+
13
+ - Makes sure all harness archive tasks are loaded and available to use
14
+
9
15
## 0.7.4 - 2023-08-09
10
16
11
17
### Fixed
Original file line number Diff line number Diff line change @@ -78,13 +78,16 @@ defmodule Harness.Manifest do
78
78
:ok = ProjectStack . push ( __MODULE__ , config , Path . expand ( path ) )
79
79
80
80
deps = Mix.Dep . cached ( )
81
+ archive_path = archive_path ( )
81
82
82
83
:ok =
83
84
deps
84
85
|> Enum . flat_map ( & Mix.Dep . load_paths / 1 )
85
- |> ( & [ archive_path ( ) | & 1 ] ) . ( )
86
86
|> Enum . each ( & Code . append_path / 1 )
87
87
88
+ Code . append_path ( archive_path )
89
+ Mix.Task . load_tasks ( [ archive_path ] )
90
+
88
91
deps
89
92
|> Enum . map ( fn % Mix.Dep { app: app } -> app end )
90
93
|> Enum . each ( & Application . ensure_started / 1 )
You can’t perform that action at this time.
0 commit comments