Skip to content

Commit 7f84bb3

Browse files
authored
πŸ”„ chore: update schema URL to v0.71.5 (#5194)
## Schema URL Update Updates the MCP Gateway JSON schema validation URL from `v0.71.1` to `v0.71.5`. ### Files Changed - `internal/config/rules/rules.go` β€” `SchemaURL` constant updated to `v0.71.5` - `internal/config/validation_schema_test.go` β€” hardcoded schema URLs updated to `v0.71.5` ### Why Pinning to a specific release tag ensures reproducible, deterministic configuration validation β€” the schema won't silently change between runs. ### Release Notes See the [gh-aw release notes](https://github.com/github/gh-aw/releases/tag/v0.71.5) for changes in this schema version. > [!WARNING] > **⚠️ Firewall blocked 1 domain** > > The following domain was blocked by the firewall during workflow execution: > > - `invalidhostthatdoesnotexist12345.com` > > To allow these domains, add them to the `network.allowed` list in your workflow frontmatter: > > ```yaml > network: > allowed: > - defaults > - "invalidhostthatdoesnotexist12345.com" > ``` > > See [Network Configuration](https://github.github.com/gh-aw/reference/network/) for more information. > [!NOTE] > <details> > <summary>πŸ”’ Integrity filter blocked 1 item</summary> > > The following item was blocked because it doesn't meet the GitHub integrity level. > > - [https://github.com/github/gh-aw/releases/tag/v0.71.5](https://github.com/github/gh-aw/releases/tag/v0.71.5) `get_latest_release`: has lower integrity than agent requires. The agent cannot read data with integrity below "unapproved". > > To allow these resources, lower `min-integrity` in your GitHub frontmatter: > > ```yaml > tools: > github: > min-integrity: approved # merged | approved | unapproved | none > ``` > > </details> > Generated by [Nightly Schema Updater](https://github.com/github/gh-aw-mcpg/actions/runs/25436481684/agentic_workflow) Β· ● 351.3K Β· [β—·](https://github.com/search?q=repo%3Agithub%2Fgh-aw-mcpg+%22gh-aw-workflow-id%3A+nightly-schema-updater%22&type=pullrequests) > - [x] expires <!-- gh-aw-expires: 2026-05-13T12:57:10.494Z --> on May 13, 2026, 12:57 PM UTC <!-- gh-aw-agentic-workflow: Nightly Schema Updater, engine: copilot, version: 1.0.21, model: auto, id: 25436481684, workflow_id: nightly-schema-updater, run: https://github.com/github/gh-aw-mcpg/actions/runs/25436481684 --> <!-- gh-aw-expires-type: pull-request --> <!-- gh-aw-workflow-id: nightly-schema-updater -->
2 parents 1cc76d0 + 9446d0c commit 7f84bb3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

β€Žinternal/config/rules/rules.goβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var log = logger.New("config:rules")
1212
// Documentation URL constants
1313
const (
1414
ConfigSpecURL = "https://github.com/github/gh-aw/blob/main/docs/src/content/docs/reference/mcp-gateway.md"
15-
SchemaURL = "https://raw.githubusercontent.com/github/gh-aw/v0.71.1/docs/public/schemas/mcp-gateway-config.schema.json"
15+
SchemaURL = "https://raw.githubusercontent.com/github/gh-aw/v0.71.5/docs/public/schemas/mcp-gateway-config.schema.json"
1616
)
1717

1818
// ValidationError represents a configuration validation error with context.

β€Žinternal/config/validation_schema_test.goβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ func TestEnhancedErrorMessages(t *testing.T) {
580580
"Location:",
581581
"Error:",
582582
"Details:",
583-
"https://raw.githubusercontent.com/github/gh-aw/v0.71.1/docs/public/schemas/mcp-gateway-config.schema.json",
583+
"https://raw.githubusercontent.com/github/gh-aw/v0.71.5/docs/public/schemas/mcp-gateway-config.schema.json",
584584
},
585585
},
586586
{

0 commit comments

Comments
Β (0)