From 8c6dbbcaf4c02b020575955b1b47f72ba370563e Mon Sep 17 00:00:00 2001 From: Hugo Dutka Date: Wed, 30 Jul 2025 13:27:53 +0200 Subject: [PATCH 1/2] chore: bump default agentapi version --- registry/coder/modules/claude-code/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry/coder/modules/claude-code/main.tf b/registry/coder/modules/claude-code/main.tf index e06aa5941..d8d4b9b5e 100644 --- a/registry/coder/modules/claude-code/main.tf +++ b/registry/coder/modules/claude-code/main.tf @@ -100,7 +100,7 @@ variable "install_agentapi" { variable "agentapi_version" { type = string description = "The version of AgentAPI to install." - default = "v0.2.3" + default = "v0.3.0" } locals { From 7917a68265c03736adc1f7b0dd9325d8b1a4bb56 Mon Sep 17 00:00:00 2001 From: Hugo Dutka Date: Wed, 30 Jul 2025 13:28:58 +0200 Subject: [PATCH 2/2] chore: bump module versions (patch) --- registry/coder/modules/claude-code/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/registry/coder/modules/claude-code/README.md b/registry/coder/modules/claude-code/README.md index b3dfecccb..97f7d97a9 100644 --- a/registry/coder/modules/claude-code/README.md +++ b/registry/coder/modules/claude-code/README.md @@ -13,7 +13,7 @@ Run the [Claude Code](https://docs.anthropic.com/en/docs/agents-and-tools/claude ```tf module "claude-code" { source = "registry.coder.com/coder/claude-code/coder" - version = "2.0.3" + version = "2.0.4" agent_id = coder_agent.example.id folder = "/home/coder" install_claude_code = true @@ -84,7 +84,7 @@ resource "coder_agent" "main" { module "claude-code" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/claude-code/coder" - version = "2.0.3" + version = "2.0.4" agent_id = coder_agent.example.id folder = "/home/coder" install_claude_code = true @@ -102,7 +102,7 @@ Run Claude Code as a standalone app in your workspace. This will install Claude ```tf module "claude-code" { source = "registry.coder.com/coder/claude-code/coder" - version = "2.0.3" + version = "2.0.4" agent_id = coder_agent.example.id folder = "/home/coder" install_claude_code = true