Merge remote-tracking branch 'remotes/from/ce/main'
Some checks are pending
build / setup (push) Waiting to run
build / Check ce/* Pull Requests (push) Blocked by required conditions
build / ui (push) Blocked by required conditions
build / artifacts-ce (push) Blocked by required conditions
build / artifacts-ent (push) Blocked by required conditions
build / hcp-setup (push) Waiting to run
build / hcp-image (push) Blocked by required conditions
build / test (push) Blocked by required conditions
build / test-hcp-image (push) Blocked by required conditions
build / completed-successfully (push) Blocked by required conditions
CI / setup (push) Waiting to run
CI / Run Autopilot upgrade tool (push) Blocked by required conditions
CI / Run Go tests (push) Blocked by required conditions
CI / Run Go tests tagged with testonly (push) Blocked by required conditions
CI / Run Go tests with data race detection (push) Blocked by required conditions
CI / Run Go tests with FIPS configuration (push) Blocked by required conditions
CI / Test UI (push) Blocked by required conditions
CI / tests-completed (push) Blocked by required conditions
Run linters / Setup (push) Waiting to run
Run linters / Deprecated functions (push) Blocked by required conditions
Run linters / Code checks (push) Blocked by required conditions
Run linters / Protobuf generate delta (push) Blocked by required conditions
Run linters / Format (push) Blocked by required conditions
Run linters / Semgrep (push) Waiting to run
Check Copywrite Headers / copywrite (push) Waiting to run
Security Scan / scan (push) Waiting to run

This commit is contained in:
hc-github-team-secure-vault-core 2026-04-01 17:17:38 +00:00
commit 65dc1a41e0
7 changed files with 17 additions and 5 deletions

View file

@ -3,7 +3,7 @@
SPDX-License-Identifier: BUSL-1.1
}}
<Page::Header @title="Secrets recovery" class="bottom-margin-16">
<Page::Header @title="Secrets recovery">
<:breadcrumbs>
<Page::Breadcrumbs @breadcrumbs={{@breadcrumbs}} />
</:breadcrumbs>

View file

@ -25,7 +25,7 @@
</:actions>
</Page::Header>
<Hds::Table class="top-margin-16" data-test-table="details">
<Hds::Table data-test-table="details">
<:head as |H|>
<H.Tr>
{{#each this.tableColumns as |col|}}

View file

@ -37,7 +37,7 @@
{{#if this.showContent}}
{{! Filters section }}
<Hds::SegmentedGroup class="has-top-margin-m" as |SG|>
<Hds::SegmentedGroup class="top-margin-12" as |SG|>
<SG.TextInput
@width="300px"
@type="search"

View file

@ -171,6 +171,10 @@
margin-bottom: size_variables.$spacing-8 !important;
}
.bottom-margin-8 {
margin-bottom: size_variables.$spacing-8;
}
.has-bottom-margin-s {
margin-bottom: size_variables.$spacing-12;
}
@ -203,6 +207,10 @@
margin-top: size_variables.$spacing-12;
}
.top-margin-12 {
margin-top: size_variables.$spacing-12;
}
.has-top-margin-xs {
margin-top: size_variables.$spacing-8;
}

View file

@ -21,7 +21,7 @@
</:description>
</Page::Header>
<div class="has-top-padding-l">
<div>
{{#if this.showForms}}
<h3 class="is-size-4 has-text-weight-semibold">Settings</h3>
<p class="has-border-top-light has-top-padding-l">

View file

@ -3,7 +3,7 @@
SPDX-License-Identifier: BUSL-1.1
}}
<Hds::PageHeader class="page-header" ...attributes as |PH|>
<Hds::PageHeader class="page-header bottom-margin-8" ...attributes as |PH|>
<PH.Title>{{@title}}</PH.Title>
{{#if (has-block "breadcrumbs")}}
<PH.Breadcrumb>

View file

@ -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