Skip to content

Upgrade goa to v3.28.1 (OpenAPI 3.2.0 generation) - #162

Merged
raphael merged 1 commit into
mainfrom
goa-openapi-3.2
Jun 11, 2026
Merged

Upgrade goa to v3.28.1 (OpenAPI 3.2.0 generation)#162
raphael merged 1 commit into
mainfrom
goa-openapi-3.2

Conversation

@raphael

@raphael raphael commented Jun 11, 2026

Copy link
Copy Markdown
Member

Upgrades goa.design/goa/v3 to v3.28.1-0.20260610225411-c3df31fff2e7, picking up OpenAPI 3.2.0 generation support (goadesign/goa#3940, goadesign/goa#3941, goadesign/goa#3942).

  • Root module, quickstart module, and integration-test fixture modules bumped.
  • Registry and quickstart regenerated: no codegen output changes (this repo generates no HTTP-transport OpenAPI documents); only the goa_version stamps and fixture lockfiles moved.
  • Downstream designs can now select generated spec versions with Meta("openapi:versions", ...) and override output paths with Meta("openapi:path:<version>", ...).

🤖 Generated with Claude Code

Picks up OpenAPI 3.2.0 generation support (goadesign/goa#3940, #3941,
#3942). Regenerated registry and quickstart; no codegen output changes
(no HTTP-transport OpenAPI documents in this repo).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Copilot AI review requested due to automatic review settings June 11, 2026 05:36

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR upgrades the repo (and its embedded quickstart + integration-test fixtures) to a newer goa.design/goa/v3 version to pick up OpenAPI 3.2.0 generation support, and updates the regenerated artifacts and module lockfiles accordingly.

Changes:

  • Bump goa.design/goa/v3 (root + quickstart + integration fixture modules) and refresh go.sum/indirect deps.
  • Regenerate quickstart + fixture outputs (e.g., gen/goa.json, generated registration code).
  • Minor runtime behavior tweak in the fixture orchestrator shutdown context and CLI help handling.

Reviewed changes

Copilot reviewed 8 out of 11 changed files in this pull request and generated 9 comments.

Show a summary per file
File Description
go.mod Bumps root module goa.design/goa/v3 dependency to the new pseudo-version.
go.sum Refreshes root module dependency checksums after the Goa bump/tidy.
quickstart/go.mod Bumps quickstart module goa.design/goa/v3 dependency and indirect deps.
quickstart/go.sum Refreshes quickstart module checksums after the Goa bump/tidy.
quickstart/gen/goa.json Updates generated Goa version stamp.
integration_tests/fixtures/assistant/go.mod Updates fixture module dependencies (incl. Goa).
integration_tests/fixtures/assistant/go.sum Refreshes fixture module checksums after the bump/tidy.
integration_tests/fixtures/assistant/gen/mcp_assistant/register.go Regenerated tool registration code for the fixture.
integration_tests/fixtures/assistant/gen/goa.json Updates generated Goa version stamp for the fixture.
integration_tests/fixtures/assistant/cmd/orchestrator/http.go Adjusts server shutdown to use a detached context with timeout.
integration_tests/fixtures/assistant/cmd/orchestrator-cli/main.go Switches help handling to errors.Is(err, flag.ErrHelp).

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

goa.design/clue v1.2.6
goa.design/goa-ai v0.0.0
goa.design/goa/v3 v3.26.0
goa.design/goa/v3 v3.28.1-0.20260610214754-ec048c3e7102
Comment thread quickstart/gen/goa.json
@@ -1,3 +1,3 @@
{
"goa_version": "v3.26.0"
"goa_version": "v3.28.0"
@@ -1,3 +1,3 @@
{
"goa_version": "v3.26.0"
"goa_version": "v3.28.0"
Payload: tools.TypeSpec{
Name: "*assistant.AnalyzeSentimentPayload",
Schema: tools.RawJSON("{\"type\":\"object\",\"required\":[\"text\"],\"properties\":{\"text\":{\"type\":\"string\",\"description\":\"Input text to analyze\"}},\"additionalProperties\":false}"),
Schema: []byte("{\"type\":\"object\",\"required\":[\"text\"],\"properties\":{\"text\":{\"type\":\"string\",\"description\":\"Input text to analyze\"}},\"additionalProperties\":false}"),
Payload: tools.TypeSpec{
Name: "*assistant.ExtractKeywordsPayload",
Schema: tools.RawJSON("{\"type\":\"object\",\"required\":[\"text\"],\"properties\":{\"text\":{\"type\":\"string\",\"description\":\"Input text\"}},\"additionalProperties\":false}"),
Schema: []byte("{\"type\":\"object\",\"required\":[\"text\"],\"properties\":{\"text\":{\"type\":\"string\",\"description\":\"Input text\"}},\"additionalProperties\":false}"),
Payload: tools.TypeSpec{
Name: "*assistant.SummarizeTextPayload",
Schema: tools.RawJSON("{\"type\":\"object\",\"required\":[\"text\"],\"properties\":{\"text\":{\"type\":\"string\",\"description\":\"Input text to summarize\"}},\"additionalProperties\":false}"),
Schema: []byte("{\"type\":\"object\",\"required\":[\"text\"],\"properties\":{\"text\":{\"type\":\"string\",\"description\":\"Input text to summarize\"}},\"additionalProperties\":false}"),
Payload: tools.TypeSpec{
Name: "*assistant.SearchPayload",
Schema: tools.RawJSON("{\"type\":\"object\",\"required\":[\"query\"],\"properties\":{\"limit\":{\"type\":\"integer\",\"description\":\"Maximum number of results\"},\"query\":{\"type\":\"string\",\"description\":\"Search query\"}},\"additionalProperties\":false}"),
Schema: []byte("{\"type\":\"object\",\"required\":[\"query\"],\"properties\":{\"limit\":{\"type\":\"integer\",\"description\":\"Maximum number of results\"},\"query\":{\"type\":\"string\",\"description\":\"Search query\"}},\"additionalProperties\":false}"),
Payload: tools.TypeSpec{
Name: "*assistant.ExecuteCodePayload",
Schema: tools.RawJSON("{\"type\":\"object\",\"required\":[\"language\",\"code\"],\"properties\":{\"code\":{\"type\":\"string\",\"description\":\"Code to execute\"},\"language\":{\"type\":\"string\",\"description\":\"Language to execute\",\"enum\":[\"python\",\"javascript\"]}},\"additionalProperties\":false}"),
Schema: []byte("{\"type\":\"object\",\"required\":[\"language\",\"code\"],\"properties\":{\"code\":{\"type\":\"string\",\"description\":\"Code to execute\"},\"language\":{\"type\":\"string\",\"description\":\"Language to execute\",\"enum\":[\"python\",\"javascript\"]}},\"additionalProperties\":false}"),
Payload: tools.TypeSpec{
Name: "*assistant.ProcessBatchPayload",
Schema: tools.RawJSON("{\"type\":\"object\",\"required\":[\"items\"],\"properties\":{\"blob\":{\"type\":\"string\",\"description\":\"Base64 blob\"},\"format\":{\"type\":\"string\",\"description\":\"Output format\",\"enum\":[\"json\",\"text\",\"blob\",\"uri\"]},\"items\":{\"type\":\"array\",\"description\":\"Items to process\",\"items\":{\"type\":\"string\"}},\"mimeType\":{\"type\":\"string\",\"description\":\"MIME type\"},\"uri\":{\"type\":\"string\",\"description\":\"Resource URI\"}},\"additionalProperties\":false}"),
Schema: []byte("{\"type\":\"object\",\"required\":[\"items\"],\"properties\":{\"blob\":{\"type\":\"string\",\"description\":\"Base64 blob\"},\"format\":{\"type\":\"string\",\"description\":\"Output format\",\"enum\":[\"json\",\"text\",\"blob\",\"uri\"]},\"items\":{\"type\":\"array\",\"description\":\"Items to process\",\"items\":{\"type\":\"string\"}},\"mimeType\":{\"type\":\"string\",\"description\":\"MIME type\"},\"uri\":{\"type\":\"string\",\"description\":\"Resource URI\"}},\"additionalProperties\":false}"),
@raphael
raphael merged commit 48d6cba into main Jun 11, 2026
3 checks passed
@raphael
raphael deleted the goa-openapi-3.2 branch June 11, 2026 05:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants