From f6aa07fb0039ad602179138af2d9e2219e27805d Mon Sep 17 00:00:00 2001 From: Robrecht Cannoodt Date: Tue, 18 Aug 2026 10:57:08 +0200 Subject: [PATCH 1/7] bump common submodule --- common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common b/common index deb906e..6eda5dd 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit deb906ef7abacf8809291631372c8aacadabeae9 +Subproject commit 6eda5dd0b9c46b43ee36fc379152e079c26f25d3 From 6091b87ca38f8a54846c2637e5021409d4372ecc Mon Sep 17 00:00:00 2001 From: Robrecht Cannoodt Date: Tue, 18 Aug 2026 10:57:08 +0200 Subject: [PATCH 2/7] update vscode settings --- .gitignore | 1 - .vscode/settings.json | 10 +++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d7ea7d5..34d8d71 100644 --- a/.gitignore +++ b/.gitignore @@ -9,4 +9,3 @@ trace-* .ipynb_checkpoints /temp -/.vscode diff --git a/.vscode/settings.json b/.vscode/settings.json index 7529210..50e8686 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -5,6 +5,14 @@ "common/schemas/task_config.yaml": "_viash.yaml", "common/schemas/task_method.yaml": "**/methods/**/config.vsh.yaml", "common/schemas/task_control_method.yaml": "**/control_methods/**/config.vsh.yaml", - "common/schemas/task_metric.yaml": "**/metrics/**/config.vsh.yaml" + "common/schemas/task_metric.yaml": "**/metrics/**/config.vsh.yaml", + "https://raw.githubusercontent.com/viash-io/viash-schemas/refs/heads/main/json_schemas/0.9.7/config.schema.json": [ + "**/*.vsh.yaml", + "**/*.vsh.yml" + ], + "https://raw.githubusercontent.com/viash-io/viash-schemas/refs/heads/main/json_schemas/0.9.7/package.schema.json": [ + "_viash.yaml", + "_viash.yml" + ] } } From 14be25c7ebb8a7a83680951658dc0f247d23d9a3 Mon Sep 17 00:00:00 2001 From: Robrecht Cannoodt Date: Tue, 18 Aug 2026 10:57:08 +0200 Subject: [PATCH 3/7] fix stale comment in test.sh --- src/workflows/process_datasets/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/workflows/process_datasets/test.sh b/src/workflows/process_datasets/test.sh index d918102..894795e 100755 --- a/src/workflows/process_datasets/test.sh +++ b/src/workflows/process_datasets/test.sh @@ -1,7 +1,7 @@ #!/bin/bash # Run this prior to executing this script: -# bin/viash_build -q 'batch_integration' +# viash ns build --parallel --setup cachedbuild # get the root of the directory REPO_ROOT=$(git rev-parse --show-toplevel) From eb2c80830753bc04b427d22e6d8a1f61435ae20b Mon Sep 17 00:00:00 2001 From: Robrecht Cannoodt Date: Tue, 18 Aug 2026 11:00:12 +0200 Subject: [PATCH 4/7] update changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 483ad29..68e49f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,5 +29,9 @@ * `run_benchmark`: write the commit the workflow ran from and the launch time into `task_info.yaml`, instead of publishing `_viash.yaml` verbatim (PR #18). +* Updated to Viash 0.9.7. + +* Updated the `common` submodule and pinned the Viash 0.9.7 JSON schemas in `.vscode/settings.json` (PR #19). + ## BUGFIXES From 935c01e19ea61b4071d73e20016d6b49adb4938f Mon Sep 17 00:00:00 2001 From: Robrecht Cannoodt Date: Tue, 18 Aug 2026 11:49:05 +0200 Subject: [PATCH 5/7] Fix schema --- .vscode/settings.json | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 50e8686..7529210 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -5,14 +5,6 @@ "common/schemas/task_config.yaml": "_viash.yaml", "common/schemas/task_method.yaml": "**/methods/**/config.vsh.yaml", "common/schemas/task_control_method.yaml": "**/control_methods/**/config.vsh.yaml", - "common/schemas/task_metric.yaml": "**/metrics/**/config.vsh.yaml", - "https://raw.githubusercontent.com/viash-io/viash-schemas/refs/heads/main/json_schemas/0.9.7/config.schema.json": [ - "**/*.vsh.yaml", - "**/*.vsh.yml" - ], - "https://raw.githubusercontent.com/viash-io/viash-schemas/refs/heads/main/json_schemas/0.9.7/package.schema.json": [ - "_viash.yaml", - "_viash.yml" - ] + "common/schemas/task_metric.yaml": "**/metrics/**/config.vsh.yaml" } } From bd0389684234af57ab2ab6440b562ec45566de49 Mon Sep 17 00:00:00 2001 From: Robrecht Cannoodt Date: Tue, 18 Aug 2026 11:50:25 +0200 Subject: [PATCH 6/7] Add .vscode to .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 34d8d71..d7ea7d5 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ trace-* .ipynb_checkpoints /temp +/.vscode From f97650e827c02694f5f61213fb3b25c1656be501 Mon Sep 17 00:00:00 2001 From: Robrecht Cannoodt Date: Tue, 18 Aug 2026 11:50:49 +0200 Subject: [PATCH 7/7] Update CHANGELOG with PR references and details Clarified changelog entries with PR references. --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 68e49f9..0fa4c46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,9 +29,9 @@ * `run_benchmark`: write the commit the workflow ran from and the launch time into `task_info.yaml`, instead of publishing `_viash.yaml` verbatim (PR #18). -* Updated to Viash 0.9.7. +* Updated to Viash 0.9.7 (PR #19). -* Updated the `common` submodule and pinned the Viash 0.9.7 JSON schemas in `.vscode/settings.json` (PR #19). +* Updated the `common` submodule (PR #19). ## BUGFIXES