From 5fc2e91e6c9cc691b37b3d0b51e948501fec5eb7 Mon Sep 17 00:00:00 2001 From: Lennart Kats Date: Wed, 15 Jul 2026 13:37:52 +0200 Subject: [PATCH 1/2] Bump cli-compat to appkit 0.38.1, skills 0.2.10 Point the aitools skills version at the upcoming databricks-agent-skills v0.2.10 release, which graduates databricks-data-discovery from experimental/ to stable skills/. Do NOT merge until v0.2.10 is tagged on databricks/databricks-agent-skills; the files-channel installer resolves this exact release tag. Co-authored-by: Isaac Signed-off-by: Lennart Kats --- internal/build/cli-compat.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/build/cli-compat.json b/internal/build/cli-compat.json index fc1855cf35f..e63decb2297 100644 --- a/internal/build/cli-compat.json +++ b/internal/build/cli-compat.json @@ -1,4 +1,4 @@ { - "1.0.0": { "appkit": "0.38.1", "skills": "0.2.9" }, + "1.0.0": { "appkit": "0.38.1", "skills": "0.2.10" }, "0.299.2": { "appkit": "0.24.0", "skills": "0.1.5" } } From 14f7dd29663e95bf17d4c5f094e84058c6bd893f Mon Sep 17 00:00:00 2001 From: Lennart Kats Date: Thu, 16 Jul 2026 09:51:40 +0200 Subject: [PATCH 2/2] Update TestGetSkillsRefLatestReleaseFallsBackToEmbeddedPin for 0.2.10 The embedded-pin fallback assertion tracks the cli-compat.json skills version; bump it from v0.2.9 to v0.2.10 to match the manifest. Co-authored-by: Isaac Signed-off-by: Lennart Kats --- libs/aitools/installer/installer_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/aitools/installer/installer_test.go b/libs/aitools/installer/installer_test.go index 13c870cbebb..6e12ef3d3aa 100644 --- a/libs/aitools/installer/installer_test.go +++ b/libs/aitools/installer/installer_test.go @@ -1073,7 +1073,7 @@ func TestGetSkillsRefLatestReleaseFallsBackToEmbeddedPin(t *testing.T) { ref, explicit, err := GetSkillsRef(t.Context()) require.NoError(t, err) - assert.Equal(t, "v0.2.9", ref) + assert.Equal(t, "v0.2.10", ref) assert.False(t, explicit, "an embedded fallback is not a user pin") }