From bcda5f99b57f6610cf09a9541caf2891154da7f4 Mon Sep 17 00:00:00 2001 From: Vault Automation Date: Wed, 1 Apr 2026 11:10:06 -0600 Subject: [PATCH 1/2] update header spacing (#13505) (#13561) Co-authored-by: lane-wetmore --- ui/app/components/recovery/page/snapshots.hbs | 2 +- .../recovery/page/snapshots/snapshot-details.hbs | 2 +- ui/app/components/secret-engine/list.hbs | 2 +- ui/app/styles/helper-classes/spacing.scss | 8 ++++++++ .../templates/vault/cluster/access/mfa/methods/create.hbs | 2 +- ui/lib/core/addon/components/page/header.hbs | 2 +- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/ui/app/components/recovery/page/snapshots.hbs b/ui/app/components/recovery/page/snapshots.hbs index 751d44cc8c..8587cf27cd 100644 --- a/ui/app/components/recovery/page/snapshots.hbs +++ b/ui/app/components/recovery/page/snapshots.hbs @@ -3,7 +3,7 @@ SPDX-License-Identifier: BUSL-1.1 }} - + <:breadcrumbs> diff --git a/ui/app/components/recovery/page/snapshots/snapshot-details.hbs b/ui/app/components/recovery/page/snapshots/snapshot-details.hbs index 8ab08d0ed5..a88c7d24dc 100644 --- a/ui/app/components/recovery/page/snapshots/snapshot-details.hbs +++ b/ui/app/components/recovery/page/snapshots/snapshot-details.hbs @@ -25,7 +25,7 @@ - + <:head as |H|> {{#each this.tableColumns as |col|}} diff --git a/ui/app/components/secret-engine/list.hbs b/ui/app/components/secret-engine/list.hbs index 7ec23e98d5..db462f1ba3 100644 --- a/ui/app/components/secret-engine/list.hbs +++ b/ui/app/components/secret-engine/list.hbs @@ -37,7 +37,7 @@ {{#if this.showContent}} {{! Filters section }} - + -
+
{{#if this.showForms}}

Settings

diff --git a/ui/lib/core/addon/components/page/header.hbs b/ui/lib/core/addon/components/page/header.hbs index 2566e66687..3ccd23c13f 100644 --- a/ui/lib/core/addon/components/page/header.hbs +++ b/ui/lib/core/addon/components/page/header.hbs @@ -3,7 +3,7 @@ SPDX-License-Identifier: BUSL-1.1 }} - + {{@title}} {{#if (has-block "breadcrumbs")}} From d91bb239218773dde06965109794fdd749e77b86 Mon Sep 17 00:00:00 2001 From: Vault Automation Date: Wed, 1 Apr 2026 11:13:46 -0600 Subject: [PATCH 2/2] VAULT-43165: Fix exterprise token JIT error propagation (#13375) (#13479) * Fix exterprise token error propagation --- vault/core.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vault/core.go b/vault/core.go index 2da158e6ae..719839c918 100644 --- a/vault/core.go +++ b/vault/core.go @@ -359,6 +359,10 @@ type Core struct { keepHALockOnStepDown *uint32 heldHALock physical.Lock + // enterpriseTokenGetAuthRegisterFunc is an optional per-core test seam for + // enterprise token auth registration lookup. + enterpriseTokenGetAuthRegisterFunc func(*Core) (RegisterAuthFunc, error) + // shutdownDoneCh is used to notify when core.Shutdown() completes. // core.Shutdown() is typically issued in a goroutine to allow Vault to // release the stateLock. This channel is marked atomic to prevent race