feat(site): add changelog section#1793
Merged
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
✅ Deploy Preview for vjs10-site ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Contributor
📦 Bundle Size Report🎨 @videojs/html — no changesPresets (7)
Media (10)
Players (5)
Skins (30)
UI Components (39)
Sizes are marginal over the root entry point. ⚛️ @videojs/react — no changesPresets (7)
Media (9)
Skins (27)
UI Components (33)
Sizes are marginal over the root entry point. 🧩 @videojs/core — no changesEntries (14)
🏷️ @videojs/element — no changesEntries (2)
📦 @videojs/store — no changesEntries (3)
🔧 @videojs/utils — no changesEntries (10)
📦 @videojs/spf — no changesEntries (4)
ℹ️ How to interpretJS sizes are initial static graph totals (minified + brotli). Lazy dynamic chunks are shown separately when present.
Run |
- Move changelog into Getting started docs sidebar section as a typed SidebarLink item with an outbound arrow - Keep footer Discord/GitHub icons in the link flow on wide viewports so they wrap alongside the text links - Remove the changelog index tagline, keep it as meta description - Reword compare link to "Compare changes on GitHub" Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01MCn71tEi5hQpsMsWdzFTs8
mihar-22
approved these changes
Jul 2, 2026
This was referenced Jul 2, 2026
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
https://deploy-preview-1793--vjs10-site.netlify.app/changelog
What is it?
Add a changelog section to the site that renders the CI-generated release notes in
src/content/changelog/as browsable pages, with an RSS feed and navigation links.DEEPLY mechanical copy/paste of blog post processing and styling, except
Closes #1031
Why is that index view kinda ugly? How is this different than what we have on GitHub?
We've got some broader work going on (#462) to turn our mechanical changelogs into human-readable changelogs. Read about those efforts here. A separate PR will backport our changelogs into some nicer prose with descriptions on the index which will look a bit nicer
Ok but it still looks a bit ugly
Yeah. Honestly copy/paste of blog styles was easy, but probably not the best solution. But dammit we've got a player to build. I didn't want to spend too long on this. We'll revisit... maybe... at some point.
Follow-up: Algolia search (manual, requires crawler dashboard access)
Changelog pages ship with
data-search-contentanddata-site="changelog"markup, but they won't appear in search until a newvideojs_changelogindex is set up. This is intentionally not wired intoSearch.tsxin this PR — querying an index that doesn't exist yet 404s the whole multi-index search request and would break search on deploy. Steps, in order:videojs_docs/videojs_blog, app ID5WD2PWU9HZ):https://videojs.org/changelog/**writing to a new index namedvideojs_changelog.recordExtractoron the blog action: content selector[data-search-content], respect[data-search-ignore], and recorddata-siteas an attribute for faceting./changelog,/changelog/2, …) from records, or restrict extraction to pages matching/changelog/*with a version-like segment — otherwise every release title gets duplicate records from the card list.beta.24) returns the release page.https://claude.ai/code/session_01MCn71tEi5hQpsMsWdzFTs8