File tree Expand file tree Collapse file tree
src/main/scala/io/viash/config/dependencies Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66
77* ` Nextflowrunner ` : fix publishing of directories when the output file name template contains a trailing slash (PR #867 ).
88
9+ * ` Logging ` : Reduce log level for fetching repositories from info to debug (PR #871 ).
10+
911# Viash 0.9.6 (2025-10-10): Hotfix for dependency path resolution
1012
1113This release fixes an issue with dependency resolution in some edge cases that was introduced in Viash 0.9.5.
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ trait AbstractGitRepository extends Repository with Logging {
9090 // If a new one is checked out, copy it to the cache
9191 // If a cached repo is used, copy it to a new temporary folder
9292 def getSparseRepoInTemp (): AbstractGitRepository = {
93- info (s " Fetching repo for $uri" )
93+ debug (s " Fetching repo for $uri" )
9494 findInCache() match {
9595 case Some (repo) if repo.checkCacheStillValid() =>
9696 debug(s " Using cached repo from ${repo.localPath}" )
You can’t perform that action at this time.
0 commit comments