Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
d35592b
merge dev into main for the v2.32.1 release
lidge-jun Aug 25, 2026
71c57ea
release: v2.32.1
lidge-jun Aug 25, 2026
d560ac6
merge dev into main for the v2.33.0 release
lidge-jun Aug 25, 2026
08ada6f
Merge pull request #2553 from lidge-jun/codex/promote-main-2330
lidge-jun Aug 25, 2026
ec51e42
release: v2.33.0
lidge-jun Aug 25, 2026
e25b653
merge dev into main for the v2.34.0 release
lidge-jun Aug 27, 2026
80fff9a
Merge pull request #2760 from lidge-jun/codex/promote-main-2340
lidge-jun Aug 27, 2026
fc4de77
Merge pull request #2826 from lidge-jun/codex/promote-main-2350
lidge-jun Aug 28, 2026
c7d8407
Merge pull request #3002 from lidge-jun/codex/promote-main-2360
lidge-jun Aug 30, 2026
54e2274
Merge pull request #3037 from lidge-jun/codex/promote-main-2370
lidge-jun Aug 31, 2026
2c4dca1
merge dev into the promotion branch for v2.38.0
lidge-jun Aug 31, 2026
a34e8b7
merge dev into the promotion branch for v2.38.0 (picks up the ReDoS fix)
lidge-jun Aug 31, 2026
ebb4d55
Merge pull request #3073 from lidge-jun/codex/promote-main-2380
lidge-jun Aug 31, 2026
682112e
Merge remote-tracking branch 'origin/dev' into codex/promote-main-2390
lidge-jun Sep 1, 2026
af6113a
merge dev into main for the v2.39.0 release
lidge-jun Sep 1, 2026
847f4f1
merge dev into main for the v2.40.0 release
Sep 2, 2026
ac78647
Merge pull request #3261 from lidge-jun/codex/promote-main-2400
lidge-jun Sep 2, 2026
aaa9eaf
fix(release): pass the bump job's permissions through the reusable-wo…
lidge-jun Sep 2, 2026
35ff3a4
Merge pull request #3263 from lidge-jun/codex/promote-main-2400-relfix
lidge-jun Sep 2, 2026
2648093
fix(gui): hide unavailable key rotation controls
luvs01 Sep 3, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,14 @@ jobs:
bump-dev-version:
needs: publish
if: ${{ inputs.dry-run != true }}
# A reusable-workflow CALL cannot grant the callee more than the calling job holds,
# and GitHub refuses the whole run at startup when the called workflow's own job
# declares permissions the caller did not pass down ("startup_failure", runs
# 33615174183 / 33615177849 — the first dispatches since #3129 wired this call).
# The callee's job declares exactly these two; nothing else in this file gains them.
permissions:
contents: write
pull-requests: write
uses: ./.github/workflows/dev-version-bump.yml
with:
released-version: v${{ inputs.version }}
Expand Down
5 changes: 3 additions & 2 deletions gui/src/components/apikeys-workspace/ApiKeysWorkspace.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ export default function ApiKeysWorkspace({
const selectedRotationId = selected
? (rotationSecret?.id === selected.id ? rotationSecret.rotationId : selected.pendingRotation?.id)
: undefined;
const rotationEnabled = Boolean(onRotationStart || onRotationCommit || onRotationAbort);
const mutationPending = deleting || renamePending || rotationPending;

const runRotation = async (operation: "start" | "commit" | "abort") => {
Expand Down Expand Up @@ -356,7 +357,7 @@ export default function ApiKeysWorkspace({
</div>
</dl>
</div>
<div className="awi-section" aria-live="polite">
{rotationEnabled && <div className="awi-section" aria-live="polite">
<h3 className="awi-section-title">{t("api.rotation.title")}</h3>
{selectedRotationId ? (
<>
Expand Down Expand Up @@ -394,7 +395,7 @@ export default function ApiKeysWorkspace({
</>
)}
{rotationFailed && <p className="awi-delete-error" role="alert">{t("api.rotation.failed")}</p>}
</div>
</div>}
<div className="awi-section">
<h3 className="awi-section-title">{t("api.attribution.title")}</h3>
{/* Branch on the DATASET field, not on `usage`: a key with zero
Expand Down
10 changes: 10 additions & 0 deletions gui/tests/apikeys-actions.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,16 @@ test("rotation start, one-time secret, commit, and abort stay explicit", async (
expect(calls).toContain("abort:k1:rotation-1");
});

test("rotation controls stay hidden when the runtime supplies no rotation handlers", async () => {
const container = await mount({});
await openKey(container);

expect(container.textContent).not.toContain("Key rotation");
expect(container.textContent).not.toContain("Start rotation");
expect(container.textContent).not.toContain("Commit rotation");
expect(container.textContent).not.toContain("Abort rotation");
});

test("a protocol result belongs to its own chip", async () => {
const container = await mount({
filteredModels: [{ id: "gpt-5.4", displayName: "gpt-5.4", provider: "openai", native: true }],
Expand Down
Loading