The CRIT-5 closure (2026-05-10) made `OIDCProvider.AllowedEmailDomains`
load-bearing on the OIDC login path: a token whose email domain isn't in
the configured allowlist gets ErrEmailDomainNotAllowed. But the GUI never
exposed the field — `web/src/pages/auth/OIDCProvidersPage.tsx`'s create
form had zero inputs for it, and `OIDCProviderDetailPage.tsx` neither
rendered nor edited the value.
For multi-tenant IdPs (Auth0, Azure AD common endpoint, Google Workspace)
this is the single most important provider knob — the difference between
"anyone in any tenant of this IdP can log in" and "only @acme.com can log
in." Operators driving certctl from the GUI had no way to know the field
exists, let alone set it. Same shape as CRIT-5's pre-closure state: the
control was claimed, persisted, accepted via API, but invisible at the
surface 90% of operators actually use.
Closure across both GUI pages:
web/src/pages/auth/OIDCProvidersPage.tsx
- Create modal gains a chip-style multi-input below fetch_userinfo.
- New exported `validateEmailDomain(s)` mirrors the backend validator
(CRIT-5 closure rules: no @ / no whitespace / no wildcards /
lowercase only / must be FQDN). Returns "" on accept, a
non-empty error string on reject. Server is still the source of
truth — server-returned 400s render via the existing error UI.
- Inline "addEmailDomain" handler: trim → lowercase → validate →
dedupe → push onto form.allowed_email_domains. Enter key in the
input adds the entry without requiring a click on Add.
- Each chip carries a × remove button + data-testid plumbing for
E2E coverage.
web/src/pages/auth/OIDCProviderDetailPage.tsx
- Read-only view's <dl> renders a new row "Allowed email domains"
with an explicit "any (no gate configured)" sentinel when the
list is empty. Operators can tell the difference between "not
configured" and "field exists but the GUI doesn't show it" — the
whole class of lying-field this fix exists to retire.
- Edit form mirrors the create-modal chip control + pre-populates
from provider.allowed_email_domains at startEdit time (defensive
clone so chip mutations don't reach through into the cached
TanStack Query data).
- Save round-trips the trimmed list as `allowed_email_domains` in
the PUT body alongside the other editable fields.
- "Clear all" affordance with a confirm() dialog that warns about
removing the tenant gate (cross-tenant logins permitted after
save) — for operators who want to test enforcement-off then turn
back on without retyping the full domain list.
- Imports `validateEmailDomain` from OIDCProvidersPage for parity.
web/src/api/client.ts
- No changes — `allowed_email_domains?: string[]` was already in
both OIDCProvider and OIDCProviderRequest types. The CRIT-5
backend closure had already shipped the type but no GUI consumer
ever used it.
Regression coverage (Vitest, all passing):
OIDCProvidersPage.test.tsx (7 new):
AllowedEmailDomains — Add persists a chip and is included in submit body
AllowedEmailDomains — rejects entries containing @
AllowedEmailDomains — rejects wildcard entries
AllowedEmailDomains — normalizes mixed-case input to lowercase
AllowedEmailDomains — Enter key adds the entry without clicking Add
AllowedEmailDomains — chip × button removes the entry
AllowedEmailDomains — duplicate entry is rejected
validateEmailDomain unit suite (7 new):
accepts a plain lowercase FQDN (with multi-label TLDs)
rejects entries containing @ (with leading-@ variant)
rejects entries with whitespace (with tab variant)
rejects wildcards (with both *.x and x.* variants)
rejects mixed-case
rejects bare hostnames (no dot)
rejects empty strings
OIDCProviderDetailPage.test.tsx (5 new):
AllowedEmailDomains — read-only view shows configured entries
AllowedEmailDomains — read-only view shows "any" sentinel when empty
AllowedEmailDomains — edit form pre-populates + PUT round-trips
AllowedEmailDomains — removing a chip and saving submits the trimmed list
AllowedEmailDomains — Add validates against backend rules
Verify gate green: `tsc --noEmit` clean across the web/ tree;
OIDCProvidersPage + OIDCProviderDetailPage suites pass all 29 tests
(19 + 10) — 13 of those are new A-3 cases, 16 were existing CRIT-5 /
Bundle 2 Phase 8 coverage. Three pre-existing test failures in
AuthSettingsPage.test.tsx + KeysPage.test.tsx confirmed unrelated
(reproduce on the base commit `191384c` without any of this fix's
changes applied; not in scope for this CRIT fix).
Spec at cowork/auth-bundles-fixes-2026-05-11/03-crit-allowed-email-domains-gui.md
Closure annotation appended to CRIT-5 row of cowork/auth-bundles-audit-2026-05-10.md;
Lying-fields cross-reference table row #1 marked closed across both
the backend (CRIT-5, 2026-05-10) and GUI (A-3, 2026-05-11) legs.
Operator advisory in CHANGELOG.md v2.1.0 release notes — operators
who provisioned OIDC providers through the GUI between v2.1.0 and
this fix should verify allowed_email_domains matches their tenant
policy (the field was configurable only via API / MCP / direct SQL
during that window).
26 KiB
Changelog
Unreleased
Security (BREAKING)
__Host-cookie prefix on all three auth cookies (Audit 2026-05-10 MED-14). The session cookie, CSRF cookie, and OIDC pre-login cookie are renamed fromcertctl_session/certctl_csrf/certctl_oidc_pendingto__Host-certctl_session/__Host-certctl_csrf/__Host-certctl_oidc_pendingto gain browser-enforced subdomain-takeover protection (a__Host-*cookie can only be set withPath=/+Secure+ noDomainattribute, and the browser rejects subdomain attempts to overwrite it). Active sessions invalidate on the rolling deploy that lands this change — operators must re-authenticate once after upgrading. The GUI's CSRF cookie reader was updated in lockstep. Seedocs/migration/oidc-enable.mdfor operator-facing detail.
Security
-
OIDC
allowed_email_domainsnow editable in the GUI (Audit 2026-05-11 A-3). The backend gate that rejects logins whose email domain is outside the configured allowlist landed in v2.1.0 (CRIT-5 closure, 2026-05-10), but the GUI never exposed the field — GUI-driven operators had to use the API directly to configure tenant isolation against multi-tenant IdPs (Auth0, Azure AD common endpoint, Google Workspace). The OIDCProvidersPage create modal and OIDCProviderDetailPage detail view now render a chip-style multi-input with client-side validation that mirrors the backend rules (no@, no whitespace, no wildcards, lowercase-only FQDNs). The read-only view renders an explicit "any (no gate configured)" sentinel when the list is empty so operators can tell "not configured" apart from "field is invisible." A "Clear all" button on the edit form is gated by a confirm dialog that warns about removing the tenant gate. Operator advisory: if you provisioned OIDC providers via the GUI between v2.1.0 and this fix, verifyallowed_email_domainsmatches your tenant policy — the field was configurable only via API / MCP / direct SQL during that window. Per-IdP runbooks for multi-tenant IdPs indocs/operator/oidc-runbooks/already documented the field; the GUI now matches. -
Pre-login cookie Path widened from
/auth/oidc/to/(Audit MED-14 follow-on). Required to satisfy the__Host-prefix'sPath=/rule. The cookie lifetime is unchanged (10 minutes) and only the callback handler consumes it; the wider path scope is harmless. -
RFC 9207
issURL parameter check on OIDC callback (Audit 2026-05-10 MED-17). When the matched IdP's discovery doc advertisesauthorization_response_iss_parameter_supported: true, certctl now requires theissquery parameter on/auth/oidc/callbackand enforces a constant-time compare against the configured provider'sIssuerURL. Mismatch rejects with HTTP 400; the audit row'sfailure_categorydistinguishesiss_param_missing/iss_param_mismatch(RFC 9207 leg) from the existingid_token_iss_mismatch(in-token iss claim leg). Closes the mix-up-attack defense for modern Keycloak, Authentik, and public-trust CAs that ship RFC-9207 discovery. Providers that don't advertise support (the majority today) keep pre-fix behavior — back-compat is preserved. -
Auth GUI batch (Audit 2026-05-10 MED-4/7/8/10/11/12 + LOW-1/11/12 + HIGH-10 GUI). New backend endpoints land alongside their GUI consumers:
GET /api/v1/auth/users+DELETE /api/v1/auth/users/{id}(auth.user.read / auth.user.deactivate; migration 000045 addsusers.deactivated_atplus the two new permissions);GET /api/v1/auth/runtime-config(auth.role.assign) returning a sanitized flat-map of deployed CERTCTL_* values (no secrets leaked — only set/unset booleans and counts);GET /api/v1/auth/oidc/providers/{id}/jwks-status(auth.oidc.list) returning the per-provider verifier counters (refresh count, last refresh / error timestamps, rejected JWS count, RFC 9207 iss-param flag). NewUsersPagelists federated identities + soft-deactivates.AuthSettingsPagegains the runtime-config panel.KeysPage's assign-role modal now collectsscope_type/scope_id/expires_at.RoleDetailPage's add-permission form gains the same scope picker, and the Delete button is hidden on the 7 default system roles (server already rejected, this is pure UX).AuthProviderrenders a sticky red demo-mode banner whenauth_type=none.actor-demo-anonrows onKeysPagealready had buttons disabled. -
11 new MCP tools (Audit 2026-05-10 MED-13). Approval workflow (
certctl_approval_list/_get/_approve/_reject), break-glass credential admin (certctl_breakglass_list/_set_password/_unlock/_remove), bootstrap status + consume (certctl_bootstrap_status/_consume), and audit category filter (certctl_audit_list_with_category). All route through the existing HTTP client so server-side permission gates fire unchanged.certctl_bootstrap_consume's tool description carries an explicit "NEVER WIRE THIS TO AUTONOMOUS OPERATION" warning — a leaked bootstrap token mints a fresh admin API key bypassing every other access-control gate, so the tool is for one-shot manual operator invocation only. -
JWKS auto-refresh on cache-miss (Audit 2026-05-10 MED-6). When the IdP rotates its signing key between pre-login + callback, the cached JWKS no longer contains the kid referenced by the inbound ID token's JWS header. Pre-fix, the verify failed with a generic error and the operator had to manually call
POST /api/v1/auth/oidc/providers/{id}/refresh. The service now detects the kid-not-in-cache shape (isKidMismatchError) and runs a one-shotRefreshKeys(evict cache → re-fetch discovery + JWKS → re-run alg-downgrade defense) before retrying the verify exactly once. Bounded recovery: a second failure surfaces asErrJWKSUnreachableper the original branches; no retry loop. A separate matcher (isKidMismatchError) is intentionally narrow so generic signature failures don't trigger refresh. -
OIDC provider test endpoint (Audit 2026-05-10 MED-5). New
POST /api/v1/auth/oidc/testdry-runs an OIDC provider configuration without persisting: fetches the discovery doc, runs the alg-downgrade defense, detects RFC 9207 iss-parameter advertisement, and confirms JWKS reachability. ReturnsTestDiscoveryResult{discovery_succeeded, jwks_reachable, supported_alg_values, iss_param_supported, errors[]}so the GUI (forthcoming) can render per-check status rows. Per-leg failures ride in the response body'serrorsarray; only a malformed request body trips 400. Gate:auth.oidc.create. Audit rowauth.oidc_provider_testedcarries the success/failure summary. -
Pre-login UA / source-IP binding on OIDC callback (Audit 2026-05-10 MED-16). RFC 9700 §4.7.1 defense against stolen-pre-login-cookie replay by a different browser / source. Migration
000044_prelogin_uaipaddsclient_ip+user_agenttooidc_pre_login_sessions; values captured at/auth/oidc/loginare constant-time compared at/auth/oidc/callback. Mismatches return HTTP 400 with auditfailure_category=prelogin_ua_mismatchorprelogin_ip_mismatch. Two operator escape hatches:CERTCTL_OIDC_PRELOGIN_REQUIRE_UAandCERTCTL_OIDC_PRELOGIN_REQUIRE_IP(both defaulttrue) — operators on enterprise proxies that rewrite UA, or dual-stack v4/v6 environments where source IP routinely flips, can disable the affected leg. The binding column is persisted even when enforcement is off, so retroactive forensics remain possible. Empty values on either side pass through (rolling-deploy + headless-proxy compat).
v2.1.0 - Auth Bundles 1 + 2: RBAC primitive + OIDC SSO + sessions ⚠️
SECURITY: AUDIT YOUR API KEYS.
Bundle 1 ships role-based authorization. Every existing API key configured via
CERTCTL_API_KEYS_NAMED(or the legacyCERTCTL_AUTH_SECRET) is mapped to the r-admin role on the first upgrade boot so existing automation keeps working unchanged. Most keys do NOT need full admin power; downgrade them before tagging the next release.Recommended post-upgrade flow:
# 1. List every key with its current role: certctl-cli auth keys list # 2. Walk an interactive prompt that downgrades each key: certctl-cli auth keys scope-down # 3. Or get a heuristic suggestion based on 30 days of audit history: certctl-cli auth keys scope-down --suggest certctl-cli auth keys scope-down --suggest --apply # applies the suggestion # 4. Or drive scope-down from a JSON config (Helm post-upgrade hook): certctl-cli auth keys scope-down --non-interactive ./scope-down.jsonThe synthetic
actor-demo-anonactor (used whenCERTCTL_AUTH_TYPE=noneis configured) is system-managed and excluded from the prompt loop.
What else changed in v2.1.0:
-
Audit 2026-05-10 CRIT-1 closure — wire-layer RBAC enforcement. The Bundle 1 + Bundle 2 audit surfaced that the permission catalogue was enforced on ~24 admin-only routes only; the bulk of state-changing routes (
POST /api/v1/certificates,PUT /api/v1/profiles/{id},DELETE /api/v1/issuers/{id},POST /api/v1/agents/{id}/csr, evenPOST /api/v1/auth/roles+POST /api/v1/auth/keys/{id}/roles) had norbacGatewrap. Ar-viewerBearer was essentiallyr-adminminus five fine-grained verbs at the wire layer (CWE-862). This release wraps every state-changing + read endpoint withrbacGate(global scope) orrbacGateScoped(per-profile / per- issuer scope-bound grants), and adds an AST-level CI guard (TestRouterRBACGateCoverage) that fails when a new route is registered without enforcement. Catalogue extended via migration 000039 with 30 permissions coveringcert.edit,job.*,approval.*,policy.*,team.*,owner.*,notification.*,discovery.*,network_scan.*,healthcheck.*,digest.*,verification.*,stats.read,metrics.read. AUDIT YOUR KEYS (the scope-down call-out above) now translates to real reduction in blast radius. Auditor pin preserved at exactly{audit.read, audit.export}. -
RBAC primitive shipped.
tenants,roles,permissions,role_permissions,actor_rolestables (migration 000029); 33-permission canonical catalogue; 7 default roles (admin,operator,viewer,agent,mcp,cli,auditor); per-handler permission gates viaauth.RequirePermissionmiddleware (replaces the legacyIsAdminboolean check on the 5 admin-only handlers). -
Day-0 admin bootstrap. Set
CERTCTL_BOOTSTRAP_TOKENon a fresh deploy and POST a single curl call against/api/v1/auth/bootstrapto mint the first admin API key; one-shot, never logged, and locks closed once any admin actor exists. Migration 000031 ships theapi_keystable that stores the SHA-256 hash; the plaintext is shown in the response body once and never persisted. -
Auditor role split. New
auditorrole holds onlyaudit.readaudit.export. Compliance reviewers can read the audit trail without holding mutation power. Migration 000032 addsaudit_events.event_categoryso auditors can filter to authentication-related events specifically.
-
/v1/auth/checkenrichment. Response now includes the actor's standing roles and effective permissions, so the GUI gates affordances from a single fetch on app boot. -
Approval-bypass closure. Edits to a profile that has (or would have)
RequiresApproval=truenow route through theApprovalServicetwo-person integrity gate (Phase 9). Migration 000033 addsapproval_kind+payloadtoissuance_approval_requestsso cert-issuance and profile-edit approvals share the same workflow. Same-actor self-approve is rejected withErrApproveBySameActorfor both kinds. Closes the flip-flop loophole where an admin could disable approval, mutate, re-enable. Documented atdocs/reference/profiles.md. -
GUI: Roles / API Keys / Auth Settings / Approvals queue. Four new pages under
/auth/*consume/v1/auth/mefor permission-aware rendering. The Approvals queue blocks self-approve at the client layer (Approve/Reject buttons hidden when requested_by == current actor_id) on top of the server-side enforcement. AuditPage gains a category filter (cert_lifecycle / auth / config) for the auditor view. -
MCP server gains 12 RBAC tools. Operators driving certctl from Claude / VS Code / any MCP client get parity with the GUI
- CLI. Each tool routes through the same HTTP handler; permission gates fire server-side.
-
OpenAPI catalogues every new route. Every Bundle 1 endpoint ships with an
operationId; the parity test guards against drift. -
Coverage gates.
internal/auth/andinternal/service/auth/now have ≥85% coverage floors in.github/coverage-thresholds.yml. The 12-path negative-test list from the Bundle 1 prompt is fully covered (path #12 deferred with in-tree TODO). -
Protocol-endpoint allowlist pinned at three layers. The middleware bypass (
auth.IsProtocolEndpoint), the router-levelAuthExemptRouterRoutesconstant, and a newphase12_protocol_allowlist_test.goAST scan all guard against accidentally wrapping ACME / SCEP / EST / OCSP / CRL routes inrbacGate. -
Bundle 2: OIDC + sessions + back-channel logout + break-glass. Auth Bundle 2 ships in the same v2.1.0 release. Operators get OIDC SSO support for Keycloak / Authentik / Okta / Auth0 / Microsoft Entra ID / Google Workspace (via Keycloak broker), HMAC-signed session cookies with idle/absolute timeouts + CSRF defense, back-channel logout per OpenID Connect Back-Channel Logout 1.0, and a default-OFF break-glass admin path with Argon2id passwords for SSO-broken incidents. API-key auth keeps working unchanged alongside; existing automation needs no changes. Migration walkthrough at
docs/migration/oidc-enable.md; per-IdP setup guides atdocs/operator/oidc-runbooks/index.md. -
OIDC token validation pinned at three layers. Algorithm allow-list (RS256/RS512/ES256/ES384/EdDSA only) with HS-family +
nonerejected at the service-layer sentinel; IdP-downgrade-attack defense at provider creation AND every JWKS RefreshKeys (intersects the IdP's advertisedid_token_signing_alg_values_supportedagainst the allow- list, rejects providers that advertise weak algs even before any token is signed); OIDC Core §3.1.3.7 re-verification ofiss/aud/azp/at_hash(REQUIRED-when-access_token-present per Phase 3 tightening of the spec MAY → MUST) /exp/iatwindow /nonceconstant-time-compare. PKCE-S256 mandatory;plainrejected. Single-use state + nonce via atomicDELETE...RETURNINGon consume. -
Session cookies use length-prefixed HMAC. The cookie wire format is
v1.<session_id>.<signing_key_id>.<base64url-no-pad(HMAC-SHA256)>with HMAC inputlen:sid:len:kid(NOT bare-concat) to defeat concatenation collisions.HttpOnly+Secure+SameSite=Laxdefault;SameSite=Strictconfigurable viaCERTCTL_SESSION_SAMESITE. Idle timeout 1h / absolute 8h defaults; scheduler GC sweeps expired rows hourly. Signing keys rotate via the newRotateSigningKeyprimitive; the old key stays valid forCERTCTL_SESSION_SIGNING_KEY_RETENTION(default 24h) so existing cookies validate during rollover. -
CSRF defense via double-submit-cookie + hashed-token-on-row. Plaintext CSRF token in the JS-readable
certctl_csrfcookie (intentionallyHttpOnly=falsefor the GUI to echo into theX-CSRF-Tokenheader); SHA-256 hash on the session row;subtle.ConstantTimeComparein the newCSRFMiddleware. API-key actors are CSRF-exempt (no session row in context). -
OIDC
client_secretencrypted at rest. AES-256-GCM v3 blob format (magic 0x03 + salt(16) + nonce(12) + ciphertext+tag) using the existingCERTCTL_CONFIG_ENCRYPTION_KEY. Encryption invariant pinned by an integration test asserting ciphertext != plaintext + v3 blob shape + round-trip recovery + wrong-passphrase fails. -
OIDC first-admin bootstrap. New
CERTCTL_BOOTSTRAP_ADMIN_GROUPSCERTCTL_BOOTSTRAP_OIDC_PROVIDER_IDenv vars: the first OIDC-authenticated user with a matching group claim becomes admin per tenant. Coexists with the Bundle 1 env-var-token bootstrap; the admin-existence probe ensures only one wins. Audit row (bootstrap.oidc_first_admin) on every grant.
-
Break-glass admin (default-OFF). New
CERTCTL_BREAKGLASS_ENABLEDenv var (defaultfalse). When enabled, the local Argon2id-password admin path bypasses OIDC + group-claim layers — intended ONLY for SSO-broken incidents. Argon2id with OWASP 2024 params (m=64 MiB, t=3, p=4); lockout after 5 failures (configurable); constant-time across all failure paths viaverifyDummy; surface invisibility (HTTP 404 on every endpoint when disabled, NOT 403). WARN log at server boot when enabled. WebAuthn/FIDO2 second factor pairing on the v3 roadmap (Decision 12). -
GUI: OIDC Providers + Group → Role Mappings + Sessions + login buttons. Four new pages under
/auth/*consume the Bundle 2 API surface. Login page renders one "Sign in with X" button per configured OIDC provider (in addition to the API-key form, which remains as a fallback for Bearer-mode + break-glass paths). Sessions page exposes own-sessions + admin all-actors view. Every actionable element is permission-gated server-side viaauth.oidc.*andauth.session.*perms; client-side hide is UX layer. Logout button in the sidebar firesPOST /auth/logoutto clear the session server-side before redirecting to login. -
MCP server gains 11 OIDC + session tools.
certctl_auth_list_oidc_providers,_get_oidc_provider,_create_oidc_provider,_update_oidc_provider,_delete_oidc_provider,_refresh_oidc_provider,_list_group_mappings,_add_group_mapping,_remove_group_mapping,_list_sessions,_revoke_session. Operator-facing MCP tool count goes 12 (Bundle 1 RBAC) → 23 across the auth surface. Total MCP tool count:grep -cE 'mcp\.AddTool\(' internal/mcp/tools*.go≈ 150. -
Per-IdP runbooks: 6 production-tier setup guides at
docs/operator/oidc-runbooks/. Each runbook follows a consistent five-section layout (Prerequisites / IdP-side config / certctl-side config / Verification / Troubleshooting + Validation checklist with operator sign-off line). Keycloak is the canonical reference; Authentik / Okta / Auth0 / Entra ID / Google Workspace document the IdP-specific deltas (Auth0's namespaced custom claims; Entra ID's group OBJECT IDs; Google Workspace's missing-groups-claim limitation- the recommended Keycloak broker pattern).
-
Threat model extended.
docs/operator/auth-threat-model.mdships 5 new "Defenses Bundle 2 ships" subsections + 8 new threat- catalogue subsections (OIDC token forgery / session hijacking / IdP compromise / back-channel logout failure modes / group-claim manipulation / bootstrap risks / break-glass risks / token-leak hygiene). 6 new SQL-shaped operator-facing checks. New "Threats Bundle 2 does NOT close" section enumerating the 8 v3-backlog items (WebAuthn / JIT elevation / SAML / multi-tenant activation / HSM-FIPS / OIDC RP-initiated logout / Playwright / per-IdP external-tester sign-off). -
Performance baselines documented.
docs/operator/auth-benchmarks.mdships four benchmarks with measured baselines on a 4 vCPU / 8 GiB / Postgres 16 / Go 1.25 floor:BenchmarkSession_SteadyStatep99 5 µs (target < 1 ms; 200× under),BenchmarkSession_ColdProcessp99 7.1 ms (target < 10 ms),BenchmarkOIDC_SteadyStatep99 1.5 ms (target < 5 ms),BenchmarkOIDC_ColdCacheoperator-runs against live Keycloak viamake benchmark-auth-coldcache. -
Standards + RFC implementation table.
docs/reference/auth-standards-implemented.mdships 13 RFC / standard rows + 14 CWE rows with concrete file paths- negative-test anchors per row. NOT a compliance-mapping doc per the operator's 2026-05-05 retired-compliance-docs decision; the doc explicitly says "build the framework mapping yourself against the rows here using the framework-mapping methodology your audit firm prescribes; this project does not own that mapping."
-
Coverage gates held at floor 90 across all four Bundle 2 packages.
internal/auth/oidc/93.7%,internal/auth/session/94.9%,internal/auth/breakglass/91.5%,internal/auth/user/domain/96.4%. NO held-low-with-rationale entry — the Phase 13 prompt's anti-Bundle-1-mistake rule held. Bundle 1's existing 85% floors forinternal/auth/+internal/service/auth/stay 85 (already-shipped-and-accepted) per the prompt's explicit inheritance rule. -
Multi-tenant query CI guard. New
scripts/ci-guards/multi-tenant-query-coverage.sh(ratchet-style, baseline 32 at v2.1.0 close): greps every SELECT/UPDATE/DELETE ininternal/repository/postgres/against 10 tenant-aware tables, fails on regression OR improvement (forces the operator to lift / lower the baseline visibly). Forward-compat protection so a future Bundle 3 / managed-service multi-tenant activation can flip the switch without finding silent tenant-data-leak bugs in shipped queries. -
Phase 10 Keycloak testcontainers integration test. New build-tag- gated suite at
internal/auth/oidc/testfixtures/+integration_keycloak_test.godrives the full OIDC flow against a live Keycloak container booted by testcontainers-go. 5-test matrix: discovery + JWKS load, full PKCE auth-code happy path with HTTP form scraping, logout-revokes- session, JWKS rotation, unmapped-groups-fails-closed. Reuses one container across the matrix to amortize the 60-90s boot. Optional Okta smoke test (build-taggedintegration && okta_smoke) for live tenant validation. New Makefile targets:make keycloak-integration-testmake okta-smoke-test+make benchmark-auth-coldcache.
-
OpenAPI surface extended. New
cookieAuthsecurity scheme (apiKey/cookie/certctl_session) alongside the existingbearerAuth. 13 new Bundle 2 endpoints across the OIDC + session- group-mapping CRUD surface; 4 break-glass endpoints with
surface-invisibility framing. The N-bundle-2-security-empty-preserved
CI guard locks the
security: []opt-out count at ≥ 14 so existing public endpoints stay public.
- group-mapping CRUD surface; 4 break-glass endpoints with
surface-invisibility framing. The N-bundle-2-security-empty-preserved
CI guard locks the
-
Bundle-1-only compat regression CI guard. New
scripts/ci-guards/bundle-1-compat-regression.shasserts the load-bearing invariants that protect the Bundle-1-only-deploy case (session middleware defers-to-next, CSRF passthrough on missing session row, ChainAuthSessionThenBearer wired, public OIDC routes in AuthExempt allowlist, AuthInfo guards on OIDCProvidersResolver != nil). Siblingbundle-1-to-2-upgrade-regression.shasserts the upgrade-path invariants (migrations 000034..000038 are CREATE TABLE IF NOT EXISTS- BEGIN/COMMIT-wrapped + no DROP TABLE / ALTER...DROP COLUMN against 19 protected Bundle-1 tables + ON CONFLICT DO NOTHING on permission seed).
Migration ordering, idempotency, and downgrade are documented in
docs/migration/api-keys-to-rbac.md
(API-key → RBAC, Bundle 1) and docs/migration/oidc-enable.md
(API-key → OIDC, Bundle 2). The threat model lives at
docs/operator/auth-threat-model.md.
Day-2 RBAC operations live at docs/operator/rbac.md.
RFC + CWE evidence at docs/reference/auth-standards-implemented.md.
v2.0.68 - Image registry path changed ⚠️
Image registry path changed. Starting this release, container images publish to
ghcr.io/certctl-io/certctl-serverandghcr.io/certctl-io/certctl-agent. Existing pulls fromghcr.io/shankar0123/certctl-{server,agent}:<tag>continue to work for previously-published tags (the registry never deletes images), but the:latesttag at the old path stops moving forward at this release. Update yourdocker pullpaths,docker-compose.ymlimage:keys, or Helmimage.repositoryvalues to receive future updates. Oldgit clone/git push/ install-script / API URLs continue to redirect forever - only the container-registry path changed.
This is the only operator-action-required change in v2.0.68. Other changes in this release are cosmetic URL refreshes after the GitHub-org transfer from shankar0123/certctl to certctl-io/certctl (HTTP redirects mean no other operator action is required) plus an internal contextcheck lint fix in the agent. Full commit list is on the GitHub release page.
certctl no longer maintains a hand-edited per-version changelog. Per-release notes are auto-generated from commit messages between consecutive tags.
Where to find what changed in a given release:
- GitHub Releases - every tag has an auto-generated "What's Changed" section pulled from the commits between that tag and the previous one, plus per-release supply-chain verification instructions (Cosign / SLSA / SBOM).
git log <prev-tag>..<this-tag> --oneline- same content, locally.
Why no hand-edited CHANGELOG.md:
certctl is solo-developed and pushes directly to master. Maintaining a
hand-edited CHANGELOG meant the file drifted (entries piled into
[unreleased] and never got promoted to per-version sections when tags were
cut). A stale CHANGELOG is worse than no CHANGELOG - it signals abandoned
maintenance to security-conscious operators doing diligence.
The auto-generated release notes work here because commit messages follow a
descriptive convention: <area>: <summary> with a longer body for non-trivial
changes (see git log v2.0.50..HEAD for the established pattern). Anyone
reading the GitHub Releases page can see exactly what landed in each version
without depending on the author to manually update a separate file.
For the historical record: earlier versions (pre-v2.2.0 and the [2.2.0] tag itself) had a hand-edited CHANGELOG. That content is preserved in git history at the v2.2.0 tag.