changelog
Track our progress and see what's new
Dec 23, 2024
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.
Links#
- External links: Visit our documentation
- Email links: Contact support
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/usershas 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:
- Step one: Clone the repository
- Step two: Install dependencies
- Step three: Start the dev server
Nested lists:
- Parent item
- Child item one
- Child item two
- Grandchild item
- Another parent
Tables#
| Feature | Status | Notes |
|---|---|---|
| Authentication | ✅ Complete | OAuth + Email OTP |
| Payments | 🚧 In Progress | Stripe integration |
| Analytics | 📋 Planned | PostHog + Plausible |
Images#
Horizontal Rules#
Use --- to create section breaks:
This text appears after a horizontal rule.
Dec 20, 2024
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.
Dec 15, 2024
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()
Dec 10, 2024
Dec 1, 2024
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.