Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 5 additions & 0 deletions CHANGELOG.d/2.9.0-name-evidence-lineage-after-cited.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# 2.9.0 Name Event Lineage after landed cited evidence

Open Public post from the landed Demo Corp members and the popup names
Event Lineage after Linked post evidence is current. Home list opens
do not.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ All notable changes to this project are documented here. Format follows
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/); versioning follows
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.9.0] - 2026-08-17

### Added

- Opening Public post from the landed Demo Corp members now names the
next action after landed cited evidence: Linked post evidence is
current, then read Event Lineage on that post. Home list opens do
not add that copy. No TEPP theta is invented. No cutoff body is
invented (ADR 0016).

## [2.8.0] - 2026-08-17

### Added
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "frontend",
"private": true,
"version": "2.8.0",
"version": "2.9.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
14 changes: 14 additions & 0 deletions frontend/src/App.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1504,6 +1504,7 @@ describe("App, authenticated", () => {
expect(screen.queryByRole("status", { name: "Ask next action" })).not.toBeInTheDocument();
expect(screen.queryByRole("status", { name: "Ask seed next action" })).not.toBeInTheDocument();
expect(screen.queryByRole("status", { name: "Ask citation next action" })).not.toBeInTheDocument();
expect(screen.queryByRole("status", { name: "Evidence next action" })).not.toBeInTheDocument();
expect(screen.queryByRole("complementary", { name: "Evidence" })).not.toBeInTheDocument();
expect(screen.queryByText("Related to Ada West")).not.toBeInTheDocument();
expect(screen.queryByText("Related to Priya Nair")).not.toBeInTheDocument();
Expand Down Expand Up @@ -2478,6 +2479,16 @@ describe("App, authenticated", () => {
expect(
citedEvidence.compareDocumentPosition(askInput) & Node.DOCUMENT_POSITION_FOLLOWING,
).not.toBe(0);
const evidenceNext = await screen.findByRole("status", { name: "Evidence next action" });
expect(evidenceNext).toHaveTextContent(
"Linked post evidence is current. Read Event Lineage on that post next.",
);
expect(
citedEvidence.compareDocumentPosition(evidenceNext) & Node.DOCUMENT_POSITION_FOLLOWING,
).not.toBe(0);
expect(evidenceNext.compareDocumentPosition(askInput) & Node.DOCUMENT_POSITION_FOLLOWING).not.toBe(
0,
);
await waitFor(() => expect(document.getElementById("post-ask")).toHaveFocus());
} finally {
HTMLElement.prototype.scrollIntoView = originalScrollIntoView;
Expand Down Expand Up @@ -2850,6 +2861,9 @@ describe("App, authenticated", () => {
expect(
citedEvidence.compareDocumentPosition(affiliate) & Node.DOCUMENT_POSITION_FOLLOWING,
).not.toBe(0);
expect(await screen.findByRole("status", { name: "Evidence next action" })).toHaveTextContent(
"Linked post evidence is current. Read Event Lineage on that post next.",
);
await waitFor(() => expect(document.getElementById("post-ask")).toHaveFocus());
});

Expand Down
9 changes: 9 additions & 0 deletions frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,11 @@ function ChatPanel({
}
/>
) : null}
{nameFirstAsk && firstCitedTitle && landedEvidencePostId ? (
<p className="post-meta" role="status" aria-label="Evidence next action">
{landedEvidenceNextAction(firstCitedTitle)}
</p>
) : null}
{!seededOnly && (
<div className="chat-input-row">
<input
Expand Down Expand Up @@ -364,6 +369,10 @@ function firstCitedNextAction(postTitle: string): string {
return `${postTitle} is the first cited source. Open that evidence next.`;
}

function landedEvidenceNextAction(postTitle: string): string {
return `${postTitle} evidence is current. Read Event Lineage on that post next.`;
}

function EventLineageSection({
lineage,
graph,
Expand Down
2 changes: 1 addition & 1 deletion lineageweave/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@
"sentence_excerpts",
]

__version__ = "2.8.0"
__version__ = "2.9.0"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "lineageweave"
version = "2.8.0"
version = "2.9.0"
description = "Reconstructs git-branch-style lineage DAGs from scattered short records using multi-channel score fusion and LLM adjudication."
readme = "README.md"
license = { text = "MIT" }
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.