Add thread section management APIs - #36380
Merged
copyberry[bot] merged 1 commit intoJul 31, 2026
Merged
Conversation
## What changed - Add `threadSection/create`, `threadSection/update`, and `threadSection/delete` app-server methods, with generated protocol schemas and TypeScript bindings. - Persist custom sections in SQLite with stable UUIDv7 identities, trim and validate display names, and prevent renaming or deleting the built-in pinned section. - Delete sections transactionally and return their active and archived threads to the unsectioned list. - Serialize section mutations with section listing so concurrent requests observe ordered updates. ## Testing - Cover section persistence across restarts, ordered renames, member cleanup on deletion, invalid requests, unsupported stores, and thread-store/state-runtime behavior. GitOrigin-RevId: dc9a4be283c21dbc93ab1829eafc4825d8df6575
copyberry
Bot
force-pushed
the
copyberry/codex-internal-to-codex-oss/dc9a4be283c21dbc93ab1829eafc4825d8df6575
branch
from
July 31, 2026 19:09
387cdf2 to
c42ea41
Compare
copyberry
Bot
deleted the
copyberry/codex-internal-to-codex-oss/dc9a4be283c21dbc93ab1829eafc4825d8df6575
branch
July 31, 2026 19:10
ayanamislover
temporarily deployed
to
issue-triage
July 31, 2026 19:14 — with
GitHub Actions
Inactive
ayanamislover
temporarily deployed
to
issue-triage
July 31, 2026 19:14 — with
GitHub Actions
Inactive
ayanamislover
temporarily deployed
to
issue-triage
July 31, 2026 19:14 — with
GitHub Actions
Inactive
ayanamislover
temporarily deployed
to
issue-triage
July 31, 2026 19:15 — with
GitHub Actions
Inactive
qum1nzhennan
temporarily deployed
to
issue-triage
July 31, 2026 19:23 — with
GitHub Actions
Inactive
qum1nzhennan
temporarily deployed
to
issue-triage
July 31, 2026 19:23 — with
GitHub Actions
Inactive
qum1nzhennan
temporarily deployed
to
issue-triage
July 31, 2026 19:23 — with
GitHub Actions
Inactive
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Add thread section management APIs
What changed
threadSection/create,threadSection/update, andthreadSection/deleteapp-server methods, with generated protocol schemas and TypeScript bindings.Testing