Skip to content

Commit 16624e2

Browse files
author
Robrecht Cannoodt
authored
Merge branch 'develop_0_9' into fix/dependency_resolving
2 parents a8bcdd3 + 37e0fda commit 16624e2

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
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
* `Dependencies`: Fix an edge case during dependency resolving (PR #870). Local dependencies of dependencies of local dependencies were resolved incorrectly and resulted in a wrongly resolved destination path.
1012

1113
# Viash 0.9.6 (2025-10-10): Hotfix for dependency path resolution

src/main/scala/io/viash/config/dependencies/AbstractGitRepository.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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}")

0 commit comments

Comments
 (0)