Upgrade goa to v3.28.1 (OpenAPI 3.2.0 generation) - #162
Merged
Conversation
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>
There was a problem hiding this comment.
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 refreshgo.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 |
| @@ -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}"), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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).
goa_versionstamps and fixture lockfiles moved.Meta("openapi:versions", ...)and override output paths withMeta("openapi:path:<version>", ...).🤖 Generated with Claude Code