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
1 change: 1 addition & 0 deletions ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,7 @@ codes when a label exists. Related-node person chips use the same
side label (`Ada West (Our side)`), not the ontology class
(`Ada West (Person)`). Related-node organization chips use the
entity-level label (`Demo Corp (Company)`), not `Organization`.
Related-node post chips show the post title only, not `(Post)`.

`GET /api/posts` and `GET /api/posts/{post_id}` include
`voc_type_label` / `visibility_label` from `common_lookup_value` so
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ 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).

## [0.74.0] - 2026-08-16

### Changed

- Related-node post chips show the post title only, not
"Linked post (Post)". Person and org chips already use business
labels; the ontology class on a post title was noise.

## [0.73.0] - 2026-08-16

### Changed
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": "0.73.0",
"version": "0.74.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
3 changes: 3 additions & 0 deletions frontend/src/App.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -983,6 +983,9 @@ describe("App, authenticated", () => {
expect(screen.getByText("Related to Ada West").closest(".related-keymen")).not.toHaveTextContent(
"Priya Nair (Person)",
);
const relatedPanel = screen.getByText("Related to Ada West").closest(".related-keymen");
expect(relatedPanel).toHaveTextContent("Linked post");
expect(relatedPanel).not.toHaveTextContent("Linked post (Post)");
await userEvent.click(screen.getByRole("button", { name: "Open related post: Linked post" }));
await waitFor(() =>
expect(screen.getByText("The evidence panel should show exactly this text.")).toBeInTheDocument(),
Expand Down
3 changes: 3 additions & 0 deletions frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -483,6 +483,9 @@ function relatedNodeCaption(node: RelatedNode): string {
return `${name} (${level})`;
}
}
if (node.node_type_code === NODE_POST) {
return name;
}
return `${name} (${node.ontology_label ?? node.node_type_code})`;
}

Expand Down
2 changes: 1 addition & 1 deletion lineageweave/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@
"sentence_excerpts",
]

__version__ = "0.73.0"
__version__ = "0.74.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 = "0.73.0"
version = "0.74.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.