From 50ad0de6fbb1eb806b78fdd8421fc7fe69cc3217 Mon Sep 17 00:00:00 2001 From: Antoine Toussaint Date: Mon, 10 Aug 2026 03:41:09 -0400 Subject: [PATCH] chore(gateway): consume scoped source-agent releases --- go.mod | 2 +- go.sum | 4 ++-- pkg/sourceworkspace/source.go | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/go.mod b/go.mod index 4a817602..07c83a8b 100644 --- a/go.mod +++ b/go.mod @@ -11,7 +11,7 @@ require ( github.com/asottile/dockerfile v3.1.0+incompatible github.com/blang/semver v3.5.1+incompatible github.com/briandowns/spinner v1.23.2 - github.com/codefly-dev/core v0.2.86 + github.com/codefly-dev/core v0.2.87 github.com/codefly-dev/golor v0.1.3 github.com/codefly-dev/llm v0.1.0 github.com/codefly-dev/sdk-go v0.1.58 diff --git a/go.sum b/go.sum index 33582dda..7733e17b 100644 --- a/go.sum +++ b/go.sum @@ -95,8 +95,8 @@ github.com/clipperhouse/uax29/v2 v2.7.0 h1:+gs4oBZ2gPfVrKPthwbMzWZDaAFPGYK72F0NJ github.com/clipperhouse/uax29/v2 v2.7.0/go.mod h1:EFJ2TJMRUaplDxHKj1qAEhCtQPW2tJSwu5BF98AuoVM= github.com/cloudflare/circl v1.6.3 h1:9GPOhQGF9MCYUeXyMYlqTR6a5gTrgR/fBLXvUgtVcg8= github.com/cloudflare/circl v1.6.3/go.mod h1:2eXP6Qfat4O/Yhh8BznvKnJ+uzEoTQ6jVKJRn81BiS4= -github.com/codefly-dev/core v0.2.86 h1:GA5fFN+H4Igr51QtOysDI+aMLdMaXhM7AaLvGGdkiL4= -github.com/codefly-dev/core v0.2.86/go.mod h1:hNxTk7ZnR5AU8imfvNJcGpoULQ1uzML5M3E4/RffWU4= +github.com/codefly-dev/core v0.2.87 h1:bPRCC5ZmT/JLpEz20ZpI8UKbdpoSRexmf7eTq5nl6lE= +github.com/codefly-dev/core v0.2.87/go.mod h1:hNxTk7ZnR5AU8imfvNJcGpoULQ1uzML5M3E4/RffWU4= github.com/codefly-dev/golor v0.1.3 h1:xmo+ceyJFRYZdvpWE2fNd0jeaadp/Ibm1BnganiGKOc= github.com/codefly-dev/golor v0.1.3/go.mod h1:sl/u/K1l7J0Pr3xyVZp8fOJYQItKKst1No9JqgzLLoY= github.com/codefly-dev/gortk v0.2.0 h1:7bOlS5valYz2zil+fZctQNcPCYBcPj86abcw9N8h1hQ= diff --git a/pkg/sourceworkspace/source.go b/pkg/sourceworkspace/source.go index 87154565..68037702 100644 --- a/pkg/sourceworkspace/source.go +++ b/pkg/sourceworkspace/source.go @@ -16,13 +16,13 @@ import ( ) const ( - GenericGoPluginVersion = "0.0.27" - GenericPythonPluginVersion = "0.0.33" - GenericPluginVersion = "0.0.21" + GenericGoPluginVersion = "0.0.29" + GenericPythonPluginVersion = "0.0.35" + GenericPluginVersion = "0.0.23" // NodePluginVersion is published under the historical nextjs agent name, // but owns generic Node.js/TypeScript validation as well as Next.js-specific // lifecycle behavior selected from the package manifest. - NodePluginVersion = "0.0.134" + NodePluginVersion = "0.0.136" RustPluginVersion = "0.0.24" SwiftPluginVersion = "0.0.16" pythonSetupMarker = "setup.py"