fix: resolve compile errors from JWT revocation merge - #727
Closed
TheFaith-Code wants to merge 4 commits into
Closed
TheFaith-Code wants to merge 4 commits into
TheFaith-Code wants to merge 4 commits into
Conversation
feat(auth): add JWT revocation and session revoke endpoint
Fix build breakage introduced when feat/jwt-revocation-issue-436 merged into main. Restores go build ./... to a green state: - config: remove duplicate OTelLogsEnabled field (merge artifact) - routes: remove dead mockHandlerPlanSvc methods referencing undefined type - svid: use tlsconfig.AuthorizeOneOf (v2.6.0 API), drop unused import - graphql/db: repair malformed merge output - outbox: restore lost metrics, fix Store ctx signature, remove duplicate TenantID, fix jwx KeyID() and redis redirect error handling - saga: rename conflicting Step/RetryPolicy types - service/worker: restore missing exports and interfaces - handlers/middleware: restore lost webhook/handler/middleware funcs - slo-lint: use package main - go mod tidy: resolve pre-existing klauspost/compress module breakage
TheFaith-Code
had a problem deploying
to
preview-727
August 3, 2026 11:24 — with
GitHub Actions
Failure
This branch had an error being deployed
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
Fixes the build breakage introduced when
feat/jwt-revocation-issue-436merged intomain. Restoresgo build ./...to green.The JWT revocation feature itself (#436) is unchanged and intact — these are merge-artifact fixes only.
Fixes
OTelLogsEnabledfield (merge artifact)mockHandlerPlanSvcmethods referencing an undefined typetlsconfig.AuthorizeOneOf(v2.6.0 API), drop unused importStorectx signature, remove duplicateTenantID, fix jwxKeyID()and Redis redirect error handlingStep/RetryPolicytypespackage mainklauspost/compressmodule breakageTesting
go build ./...passesOut of scope (pre-existing, unrelated to #436)
Remaining test-suite failures (e.g. RBAC matrix, deprecation middleware) predate the JWT merge and are left as-is.