Skip to content

chore(web): add changelog pages to footer#5239

Merged
ComputelessComputer merged 1 commit into
mainfrom
chore/web-changelog-pages
May 17, 2026
Merged

chore(web): add changelog pages to footer#5239
ComputelessComputer merged 1 commit into
mainfrom
chore/web-changelog-pages

Conversation

@ComputelessComputer
Copy link
Copy Markdown
Collaborator

@ComputelessComputer ComputelessComputer commented May 17, 2026

Add a website changelog index and individual release pages backed by existing changelog markdown. Update sitemap entries and desktop external changelog links to the Anarlog domain.


Note

Low Risk
Low risk: adds new public, read-only changelog routes and link updates, with no auth or data mutations. Main risk is broken routing/build if markdown glob/import paths or version parsing are incorrect.

Overview
Adds public changelog pages on the web app: a /changelog/ index listing releases and a /changelog/$version detail page rendering the markdown release notes with canonical/OG metadata.

Introduces apps/web/src/lib/changelog.ts to load and sort entries from packages/changelog/content/*.md, format dates, and fetch a specific version; updates the footer to link to the changelog and extends sitemap generation to include /changelog/ plus per-version URLs.

Updates the desktop changelog’s “Open in web” link to point at https://anarlog.so/changelog/{version}.

Reviewed by Cursor Bugbot for commit 42af488. Bugbot is set up for automated code reviews on this repo. Configure here.

Add a website changelog index and individual release pages backed by existing changelog markdown. Update sitemap entries and desktop external changelog links to the Anarlog domain.
@netlify
Copy link
Copy Markdown

netlify Bot commented May 17, 2026

Deploy Preview for old-char ready!

Name Link
🔨 Latest commit 42af488
🔍 Latest deploy log https://app.netlify.com/projects/old-char/deploys/6a093dd53831410008f86515
😎 Deploy Preview https://deploy-preview-5239--old-char.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
🤖 Make changes Run an agent on this branch

To edit notification comments on pull requests, go to your Netlify project configuration.

Copy link
Copy Markdown

@cursor cursor Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes and found 2 potential issues.

Fix All in Cursor

❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.

Reviewed by Cursor Bugbot for commit 42af488. Configure here.

import: "default",
query: "?raw",
},
) as Record<string, string>;
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AGENTS.md exposed as a public changelog entry

High Severity

The glob *.md in changelog.ts and getChangelogVersions in sitemap.ts both pick up the AGENTS.md file from packages/changelog/content/, which contains internal AI agent instructions — not a release. It passes the .filter((entry) => entry.version) check because "AGENTS" is truthy. This creates a public /changelog/AGENTS page exposing development instructions and adds it to the sitemap. Additionally, compareVersionsDesc receives NaN from "AGENTS".split(".").map(Number), causing undefined sort behavior for the entire list.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 42af488. Configure here.

(line) => line && !line.startsWith("#") && !line.startsWith("!["),
) ?? "See what changed in this release."
);
}
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Summary shows raw HTML banner tags as text

Medium Severity

getEntrySummary filters lines starting with # and ![ but not custom HTML-like tags such as <banner>. Several changelog entries (e.g., 1.0.20.md, 1.0.25.md) start with <banner title="...">, so the summary for those entries renders the raw tag markup as literal text inside the <p> element on the changelog index page.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 42af488. Configure here.

@ComputelessComputer ComputelessComputer merged commit ed2f0ee into main May 17, 2026
13 checks passed
@ComputelessComputer ComputelessComputer deleted the chore/web-changelog-pages branch May 17, 2026 05:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant