fix(validators/oci): fail closed on upstream rate limiting#1281
Merged
rdimitrov merged 1 commit intoMay 12, 2026
Merged
Conversation
ValidateOCI previously returned nil when the anonymous manifest fetch came back HTTP 429, skipping the io.modelcontextprotocol.server.name label-match that is the only cross-system ownership proof we apply to OCI packages. Under upstream rate-limiting that branch let a publish proceed without any ownership attestation against the named image. Surface the 429 as a retryable error instead, matching the fail-closed behavior of the npm/PyPI/NuGet/MCPB validators on non-success upstream responses. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
rdimitrov
added a commit
that referenced
this pull request
May 12, 2026
Promotes [v1.7.9](https://github.com/modelcontextprotocol/registry/releases/tag/v1.7.9) to production. Includes the OCI validator fail-closed fix from #1281. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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.
Summary
When the OCI validator's anonymous manifest fetch returns HTTP 429, return a retryable error instead of
nil. This aligns OCI with the fail-closed behavior of the npm / PyPI / NuGet / MCPB validators, and ensures theio.modelcontextprotocol.server.namelabel-match always runs before a publish is accepted.Test plan
go test ./internal/validators/registries/ -run TestValidateOCIpasses locallygofmt+golangci-lintclean on the changed file🤖 Generated with Claude Code