From f8aa0fae969c86f6bf34c9d8c2abbec24fafd08d Mon Sep 17 00:00:00 2001 From: pdparchitect Date: Wed, 3 Jun 2026 08:53:59 +0000 Subject: [PATCH 1/2] - chore: bump go-sdk version to v0.1.1 and update VERSION to 0.1.2 --- VERSION | 2 +- go.mod | 2 +- go.sum | 4 ++-- internal/agent/runner.go | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/VERSION b/VERSION index 17e51c3..d917d3e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.1 +0.1.2 diff --git a/go.mod b/go.mod index c159e38..09490d5 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module github.com/chatbotkit/rook go 1.21 require ( - github.com/chatbotkit/go-sdk v0.1.0 + github.com/chatbotkit/go-sdk v0.1.1 github.com/joho/godotenv v1.5.1 github.com/spf13/pflag v1.0.5 ) diff --git a/go.sum b/go.sum index 8ec2ee3..cfb3227 100644 --- a/go.sum +++ b/go.sum @@ -1,5 +1,5 @@ -github.com/chatbotkit/go-sdk v0.1.0 h1:EehCJmmbN2BoGNEaFjYLEFrHTEly/34lgBfNnzc2lBQ= -github.com/chatbotkit/go-sdk v0.1.0/go.mod h1:u9QxNKUqhls4OOPMuVE0i/Q4wTJMgBARKw+CcQIeg00= +github.com/chatbotkit/go-sdk v0.1.1 h1:luefnGxlVH5zjGskwt8aYRxOIusnRhnl2o9qaM7j088= +github.com/chatbotkit/go-sdk v0.1.1/go.mod h1:u9QxNKUqhls4OOPMuVE0i/Q4wTJMgBARKw+CcQIeg00= github.com/joho/godotenv v1.5.1 h1:7eLL/+HRGLY0ldzfGMeQkb7vMd0as4CfYvUVzLqw0N0= github.com/joho/godotenv v1.5.1/go.mod h1:f4LDr5Voq0i2e/R5DDNOoa2zzDfwtkZa6DnEwAbqwq4= github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= diff --git a/internal/agent/runner.go b/internal/agent/runner.go index 0260ff7..b14c92c 100644 --- a/internal/agent/runner.go +++ b/internal/agent/runner.go @@ -84,7 +84,7 @@ func Run(ctx context.Context, cfg Config) (int, error) { Tools: tools, MaxIterations: cfg.MaxIterations, Extensions: &types.ConversationCompleteRequestExtensions{ - Features: []types.IndigoFeature{ + Features: []types.CompleteFeature{ { Name: skillsFeature["name"].(string), Options: skillsFeature["options"].(map[string]interface{}), From eccbcb1d21a19c0431e89ef06829a4ea3c57ebc2 Mon Sep 17 00:00:00 2001 From: pdparchitect Date: Wed, 3 Jun 2026 08:59:44 +0000 Subject: [PATCH 2/2] - chore: pin build toolchain to stdlib-patched Go version 1.26.4 --- go.mod | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/go.mod b/go.mod index 09490d5..7854a49 100644 --- a/go.mod +++ b/go.mod @@ -2,6 +2,10 @@ module github.com/chatbotkit/rook go 1.21 +// @note pin the build toolchain to a stdlib-patched Go (GO-2026-5037 / +// GO-2026-5039 are fixed in go1.26.4). Bump as future stdlib advisories land. +toolchain go1.26.4 + require ( github.com/chatbotkit/go-sdk v0.1.1 github.com/joho/godotenv v1.5.1