Skip to content

feat: add ChangelogCard component and update homepage:#242

Merged
yashdev9274 merged 1 commit into
mainfrom
supercode-cli
Jul 27, 2026
Merged

feat: add ChangelogCard component and update homepage:#242
yashdev9274 merged 1 commit into
mainfrom
supercode-cli

Conversation

@yashdev9274

@yashdev9274 yashdev9274 commented Jul 27, 2026

Copy link
Copy Markdown
Owner

Description

  • Introduced ChangelogCard component to display recent changelog entries.
  • Updated homepage to include ChangelogCard, enhancing visibility of recent updates.
  • Added structured changelog entries for versions 0.1.90, 0.1.89, and 0.1.88 with relevant details.

Type of change

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • Documentation update
  • Refactor (no functional changes)

How Has This Been Tested?

Please describe the tests that you ran to verify your changes.

  • bun test passes
  • bun run typecheck passes
  • bun run lint passes (if applicable)

Checklist:

  • My code follows the project's style guidelines
  • I have performed a self-review of my own code
  • I have commented my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation
  • My changes generate no new warnings
  • I have added tests that prove my fix is effective or that my feature works

Summary by CodeRabbit

  • New Features
    • Added a Changelog section to the homepage, highlighting recent updates and linking to the full changelog.
    • Expanded the changelog with release notes for versions v0.1.78 through v0.1.90, including feature and fix highlights.

- Introduced ChangelogCard component to display recent changelog entries.
- Updated homepage to include ChangelogCard, enhancing visibility of recent updates.
- Added structured changelog entries for versions 0.1.90, 0.1.89, and 0.1.88 with relevant details.

@greptile-apps greptile-apps Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Your trial has ended. Reactivate Greptile to resume code reviews.

@vercel

vercel Bot commented Jul 27, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
supercli Ready Ready Preview, Comment Jul 27, 2026 7:24am
supercli-client Ready Ready Preview, Comment Jul 27, 2026 7:24am
supercli-docs Ready Ready Preview, Comment Jul 27, 2026 7:24am

@coderabbitai

coderabbitai Bot commented Jul 27, 2026

Copy link
Copy Markdown

Review Change Stack

Walkthrough

The changelog page now includes releases v0.1.90 through v0.1.78. The homepage renders a client-side ChangelogCard showing recent entries, release metadata, and a link to the full changelog.

Changes

Changelog experience

Layer / File(s) Summary
Recent release content
apps/web/app/(pages)/changelog/page.tsx
Adds release sections for v0.1.90–v0.1.78 with GitHub links, dates, and categorized bullet points.
Homepage changelog card
apps/web/components/homepage/changelog-card.tsx, apps/web/app/page.tsx
Adds the ChangelogCard component with recent entries and a /changelog link, then places it between the providers and FAQ sections on the homepage.

Estimated code review effort: 3 (Moderate) | ~20 minutes

Sequence Diagram(s)

sequenceDiagram
  participant Visitor
  participant Home
  participant ChangelogCard
  participant ChangelogPage
  Visitor->>Home: Open homepage
  Home->>ChangelogCard: Render changelog card
  Visitor->>ChangelogCard: Select READ FULL CHANGELOG
  ChangelogCard->>ChangelogPage: Navigate to /changelog
Loading

Possibly related PRs

Poem

A bunny hops through fresh release lines,
From ninety down, the changelog shines.
A card now greets the homepage bright,
Then points to more by moonlit light.
Hop, hop—new updates take flight!

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (4 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title is specific and matches the main change: adding a ChangelogCard and updating the homepage.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch supercode-cli

Warning

There were issues while running some tools. Please review the errors and either fix the tool's configuration or disable the tool if it's a critical failure.

🔧 ESLint

If the error stems from missing dependencies, add them to the package.json file. For unrecoverable errors (e.g., due to private dependencies), disable the tool in the CodeRabbit configuration.

ESLint install failed. For unrecoverable errors, disable the tool in CodeRabbit configuration.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🧹 Nitpick comments (1)
apps/web/components/homepage/changelog-card.tsx (1)

1-1: 🚀 Performance & Scalability | 🔵 Trivial | ⚡ Quick win

Keep this component as a Server Component.

Nothing in ChangelogCard requires client-side behavior. Remove "use client" to avoid shipping and hydrating unnecessary JavaScript; Link and the icon can remain in a Server Component.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@apps/web/components/homepage/changelog-card.tsx` at line 1, Remove the "use
client" directive from the ChangelogCard component so it remains a Server
Component; leave its existing Link and icon usage unchanged.

Source: Coding guidelines

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@apps/web/components/homepage/changelog-card.tsx`:
- Around line 6-10: Update the changelogEntries data used by the homepage card
to reuse the changelog page’s shared release source, preserving chronological
ordering and each entry’s version/date metadata. Remove the duplicated hardcoded
release list and ensure the card reflects the same 49 release sections as the
linked changelog page.

---

Nitpick comments:
In `@apps/web/components/homepage/changelog-card.tsx`:
- Line 1: Remove the "use client" directive from the ChangelogCard component so
it remains a Server Component; leave its existing Link and icon usage unchanged.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 9b5d3702-31b2-4d39-84ee-26bee26e931f

📥 Commits

Reviewing files that changed from the base of the PR and between be7b016 and 126c3b1.

⛔ Files ignored due to path filters (1)
  • bun.lock is excluded by !**/*.lock
📒 Files selected for processing (3)
  • apps/web/app/(pages)/changelog/page.tsx
  • apps/web/app/page.tsx
  • apps/web/components/homepage/changelog-card.tsx

Comment on lines +6 to +10
const changelogEntries = [
{ type: "feat" as const, text: "Claude Opus 5 added as a new model — included in high-value models and pricing" },
{ type: "feat" as const, text: "New skills management — commands to add, remove, and list agent skills" },
{ type: "fix" as const, text: "Hallucination guard in agent runner — detects when model claims actions without tool calls" },
{ type: "feat" as const, text: "Usage event migration — new usage_event table for detailed event tracking" },

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🗄️ Data Integrity & Integration | 🟡 Minor | ⚡ Quick win

Keep the homepage changelog metadata consistent with the changelog page.

The card duplicates release data and is already inconsistent: the entries are not chronological, lack per-entry version/date metadata, and the linked page renders 49 release sections while the card claims 56. Prefer a shared changelog data source, or update the card to match the page.

Also applies to: 36-36

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@apps/web/components/homepage/changelog-card.tsx` around lines 6 - 10, Update
the changelogEntries data used by the homepage card to reuse the changelog
page’s shared release source, preserving chronological ordering and each entry’s
version/date metadata. Remove the duplicated hardcoded release list and ensure
the card reflects the same 49 release sections as the linked changelog page.

@yashdev9274
yashdev9274 merged commit 92469ae into main Jul 27, 2026
5 of 8 checks passed
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