Open
Conversation
Add `update-quay-api-spec` Makefile target that fetches the Swagger 2.0 spec from a Quay instance, converts it to OpenAPI 3.0.1 using swagger-converter, and removes unused OAuth2 security definitions. This documents and automates the previously undocumented process for obtaining and updating code_generator/quay_api.json. Closes #43 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Update the OpenAPI spec and regenerate the Go client from
quay.enthought.com. This brings in API changes and adds 3 new endpoints:
- /api/v1/organization/{orgname}/robots/{robot_shortname}/federation
- /api/v1/superuser/config
- /api/v1/superuser/users/{username}
Breaking changes in the Quay API:
- NewOrg: email field is now optional (was required)
- UpdateOrg: email field removed (cannot update org email via API)
Provider changes:
- organization_resource: email is now optional when creating orgs
- organization_resource: email updates show a warning (API limitation)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
dpinte
commented
Jan 16, 2026
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
This PR updates the Quay API specification from quay.enthought.com and regenerates the Go client.
Changes
New endpoints added:
/api/v1/organization/{orgname}/robots/{robot_shortname}/federation/api/v1/superuser/config/api/v1/superuser/users/{username}Breaking API changes (from upstream Quay):
NewOrg: email field is now optional (was required)UpdateOrg: email field removed (cannot update org email via API anymore)Provider updates:
organization_resource: email is now optional when creating organizationsorganization_resource: attempting to update email now shows a warning explaining the API limitationNote
This PR depends on #50 which adds the
make update-quay-api-spectarget used to generate this update.Test plan
go build .to verify the provider buildsmake testacc🤖 Generated with Claude Code