From 126c3b1dbffe0deb6ae57f2b63e52a50b7318a2b Mon Sep 17 00:00:00 2001 From: Yash Dewasthale Date: Mon, 27 Jul 2026 12:52:26 +0530 Subject: [PATCH] feat: add ChangelogCard component and update homepage: - 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. --- apps/web/app/(pages)/changelog/page.tsx | 377 +++++++++++ apps/web/app/page.tsx | 3 + .../components/homepage/changelog-card.tsx | 76 +++ bun.lock | 600 +++++++++++++++++- 4 files changed, 1053 insertions(+), 3 deletions(-) create mode 100644 apps/web/components/homepage/changelog-card.tsx diff --git a/apps/web/app/(pages)/changelog/page.tsx b/apps/web/app/(pages)/changelog/page.tsx index 7da94c6..1b8434d 100644 --- a/apps/web/app/(pages)/changelog/page.tsx +++ b/apps/web/app/(pages)/changelog/page.tsx @@ -18,6 +18,383 @@ export default function ChangelogPage() {

+
+
+

+ + v0.1.90 + +

+ Jul 25, 2026 +
+ +
+
+

Infrastructure

+
    +
  • - Usage event migration — new usage_event table for detailed event tracking.
  • +
  • - Usage data included in AI streaming responses for real-time visibility.
  • +
+
+
+
+ +
+ +
+
+

+ + v0.1.89 + +

+ Jul 25, 2026 +
+ +
+
+

CLI / TUI

+
    +
  • - Clearer usage limit error responses — structured messages instead of generic errors when limits are reached.
  • +
+
+
+
+ +
+ +
+
+

+ + v0.1.88 + +

+ Jul 25, 2026 +
+ +
+
+

Model Support

+
    +
  • - Claude Opus 5 added as a new model — included in high-value models, context windows, and pricing module.
  • +
+
+
+
+ +
+ +
+
+

+ + v0.1.87 + +

+ Jul 24, 2026 +
+ +
+
+

CLI / TUI

+
    +
  • - Daily token budget management — integrated checks in AI chat and object generation endpoints.
  • +
  • - Proxy usage tracking for better resource management and reporting.
  • +
  • - Improved user feedback for daily token usage and limits in the /usage command.
  • +
+
+
+
+ +
+ +
+
+

+ + v0.1.86 + +

+ Jul 24, 2026 +
+ +
+
+

Agent

+
    +
  • - Hallucination guard in agent runner — detects when model claims actions without making tool calls.
  • +
  • - New prompt rules for refactoring callbacks to async/await patterns.
  • +
+
+
+
+ +
+ +
+
+

+ + v0.1.85 + +

+ Jul 23, 2026 +
+ +
+
+

CLI / TUI

+
    +
  • - JSON body size limit for requests, configurable via environment variable.
  • +
  • - Error handling middleware with structured responses for oversized requests.
  • +
  • - Enhanced diff functionality — line numbers and better context visualization for changes.
  • +
  • - Improved progress display messaging in AI responses.
  • +
+
+
+
+ +
+ +
+
+

+ + v0.1.84 + +

+ Jul 23, 2026 +
+ +
+
+

Skills

+
    +
  • - New skills management feature — commands to add, remove, and list agent skills.
  • +
  • - Skill loading functionality enhances AI interaction capabilities.
  • +
+
+
+
+ +
+ +
+
+

+ + v0.1.83 + +

+ Jul 22, 2026 +
+ +
+
+

Web App

+
    +
  • - New ProvidersSection and FAQSection components on the homepage.
  • +
  • - Docs updated with new Providers section, improved intro and quickstart guides.
  • +
  • - Improved global styles and layout for visual consistency.
  • +
+
+ +
+

CLI / TUI

+
    +
  • - Reasoning content handling in AI chat for better response transparency.
  • +
  • - Tool call budget guidelines to optimize tool usage efficiency.
  • +
  • - brag skill support for project showcase videos.
  • +
+
+
+
+ +
+ +
+
+

+ + v0.1.82 + +

+ Jul 21, 2026 +
+ +
+
+

BYOK / Provider

+
    +
  • - CLOUD_ALLOWED_MODELS introduced to manage which models are accessible without a user-provided API key.
  • +
  • - Streamlined API key retrieval logic across providers for improved error handling.
  • +
+
+
+
+ +
+ +
+
+

+ + v0.1.81 + +

+ Jul 20, 2026 +
+ +
+
+

Providers

+
    +
  • - Refactored API key retrieval for MergeDev, MiniMax, Nvidia, and OpenRouter — streamlined access from environment variables.
  • +
  • - Token usage tracking error handling improved — returns 0 on database errors instead of crashing.
  • +
+
+
+
+ +
+ +
+
+

+ + v0.1.80 + +

+ Jul 20, 2026 +
+ +
+
+

OrcaRouter

+
    +
  • - OrcaRouter API integration for chat and object generation with enhanced error handling.
  • +
  • - Environment variable management for OrcaRouter API keys.
  • +
+
+
+
+ +
+ +
+
+

+ + v0.1.79 + +

+ Jul 20, 2026 +
+ +
+
+

Web App

+
    +
  • - New 404 page — custom NotFound page for better user experience on broken links.
  • +
  • - Added react-tweet dependency for displaying tweets.
  • +
  • - Updated partnerships section with new partner details and logos.
  • +
+
+
+
+ +
+ +
+
+

+ + v0.1.78 + +

+ Jul 19, 2026 +
+ +
+
+

OrcaRouter

+
    +
  • - New OrcaRouter provider support with context window and pricing integration.
  • +
  • - Updated OrcaRouter BYOK models — Claude Opus, Sonnet, Grok, DeepSeek, and Kimi.
  • +
  • - Provider management enhanced to support OrcaRouter in connection and model selection.
  • +
+
+
+
+ +
+

diff --git a/apps/web/app/page.tsx b/apps/web/app/page.tsx index dd13024..557ebee 100644 --- a/apps/web/app/page.tsx +++ b/apps/web/app/page.tsx @@ -3,6 +3,7 @@ import HeroSection from "@/components/homepage/hero"; import GetStartedSection from "@/components/homepage/get-started"; import PartnershipsSection from "@/components/homepage/partnerships-section"; import ProvidersSection from "@/components/homepage/providers-section"; +import ChangelogCard from "@/components/homepage/changelog-card"; import FAQSection from "@/components/homepage/faq-section"; import Footer from "@/components/homepage/footer"; @@ -22,6 +23,8 @@ export default async function Home() { + +