changelog

Track our progress and see what's new

1.3.0

Dec 23, 2024

FeatureImprovement

Rich Markdown Support

This release demonstrates all the markdown features available in changelog entries.

Text Formatting#

You can use bold text, italic text, and bold italic together. Also supports strikethrough and inline code.

Blockquotes#

Note: This is an informational callout. Use it for tips and additional context.

Warning: This is a warning callout. Use it for important notices.

Breaking Change: API endpoint /api/v1/users has been renamed to /api/v2/users.

Code Blocks#

Inline code: Use the parseChangelog() function to parse markdown.

Fenced code block:

// Example usage
import { parseChangelog } from "@/lib/changelog"

const entries = parseChangelog(markdown)
console.log(entries)
# Install dependencies
bun install

# Run development server
bun dev

Lists#

Unordered list:

  • First item with bold
  • Second item with code
  • Third item with a link

Ordered list:

  1. Step one: Clone the repository
  2. Step two: Install dependencies
  3. Step three: Start the dev server

Nested lists:

  • Parent item
    • Child item one
    • Child item two
      • Grandchild item
  • Another parent

Tables#

FeatureStatusNotes
Authentication✅ CompleteOAuth + Email OTP
Payments🚧 In ProgressStripe integration
Analytics📋 PlannedPostHog + Plausible

Images#

Dashboard Preview

Horizontal Rules#

Use --- to create section breaks:


This text appears after a horizontal rule.


1.2.0

Dec 20, 2024

FeatureImprovement

Authentication Improvements

Enhanced security and better user experience for authentication flows.

  • Added GitHub OAuth provider support
  • Improved session management with automatic refresh
  • Enhanced password reset flow with rate limiting

Note: Make sure to update your environment variables with the new GitHub OAuth credentials.

Authentication Flow


1.1.0

Dec 15, 2024

Feature

Dashboard Overhaul

Complete redesign of the dashboard with new analytics.

  • New analytics dashboard with usage metrics
  • Dark mode support across all dashboard pages
  • Improved navigation with collapsible sidebar
// New dashboard hook
const { metrics, isLoading } = useDashboardMetrics()

Dashboard Preview


1.0.1

Dec 10, 2024

Fix

Bug Fixes

Critical bug fixes and stability improvements.

IssueStatusPR
Auth redirect loopFixed#123
DB timeoutFixed#124
Dark mode flashFixed#125

1.0.0

Dec 1, 2024

Feature

Initial Release

First public release of speakeasy.

  • Authentication with Google OAuth and email OTP
  • PostgreSQL database with Drizzle ORM
  • 50+ shadcn/ui components
  • Landing page with pricing and testimonials
  • User dashboard with settings

Welcome! Thanks for trying speakeasy. Check out our getting started guide to begin.

Launch