Skip to main content

Changelog

Stay up-to-date with the latest changes, improvements, and new features in the Trading Card API documentation site.


Version History

All notable changes to the Trading Card API Documentation are documented here. We follow Semantic Versioning and the Keep a Changelog format.


🚧 Unreleased

What's Coming Next

These features are currently in development and will be included in the next release.

📦 0.2.33 - 2025-11-22

🔧 Changed

  • Made "Tell Us About Your Project" field required in early access application form (#276)
  • Updated early access messaging to rolling basis acceptance instead of fixed capacity
  • Updated API access description to clarify read-only beta access

📦 0.2.32 - 2025-11-22

🔄 API Updates

  • API Release 0.7.5 - Updated documentation with latest API release information and synchronized changelog

📦 0.2.31 - 2025-11-16

🐛 Fixed

  • Fixed backticks still being interpreted in build-release workflow (#271)
    • Changed from echo to printf to prevent ALL shell interpretation
    • Resolves backticks being stripped from release notes
    • Resolves validation script being accidentally executed during release note generation
    • Fixes command substitution errors that occurred despite using --notes-file
  • Fixed wrong version comparison link in release notes (#271)
    • Changed auto-detection to use most recent tag (not 2nd most recent)
    • Script runs before new tag exists, so it should compare against the current latest
    • Fixes comparison links showing wrong previous version (e.g., 0.2.28 instead of 0.2.29)

📦 0.2.30 - 2025-11-16

🐛 Fixed

  • Fixed build-release workflow failing with backticks in release notes (#267)
    • Updated GitHub Actions workflow to use --notes-file instead of inline --notes
    • Prevents shell interpretation of markdown backticks as command substitution
    • Resolves "command not found" errors during automated releases
  • Fixed update-changelog.sh creating CHANGELOG.md in wrong location (#267)
    • Corrected PROJECT_ROOT path calculation (now goes up 2 levels instead of 1)
    • CHANGELOG.md now correctly updates in project root instead of scripts/ directory

✨ Added

  • Added release notes validation script (#267)
    • New scripts/validation/validate-release-notes.sh validates changelog structure
    • Checks for shell-unsafe characters in release notes
    • Verifies release notes can be generated successfully
    • Runs automatically in CI on all PRs to main/develop/release branches
    • Prevents merge if validation fails

📦 0.2.29 - 2025-11-16

✨ Added

  • OAuth scopes and authorization documentation for v0.6.0 (#244)
    • NEW: Authorization and OAuth Scopes concepts page - Comprehensive 700+ line guide covering:
      • Five granular OAuth scopes: read:published, read:draft, read:all-status, write, delete
      • Status-based access control and automatic filtering
      • Scope combinations for different use cases (public apps, admin tools, CMS)
      • Requesting scopes with code examples in 4 languages (PHP, JavaScript, Python, cURL)
      • Security best practices and principle of least privilege
      • Troubleshooting scope errors (insufficient_scope, not seeing expected data)
      • Migration guide from simple read/write scopes to granular scopes
    • Enhanced Getting Started authentication guide with "Understanding OAuth Scopes" section
    • Updated all OAuth authentication examples to use granular scopes (read:published write)
    • Added to Concepts section in navigation
    • Clarified scope selection for Personal Access Tokens
  • NEW: How-To section - Task-focused step-by-step tutorials (#243)
    • Created new "How-To" documentation category positioned between Concepts and Guides
    • Clear separation: Concepts (reference) → How-To (tasks) → Guides (applications)
    • NEW: Upload Card Images tutorial - Comprehensive 900+ line step-by-step guide covering:
      • Image preparation and validation requirements
      • Complete upload workflow for front and back images
      • Code examples in 4 languages (PHP, JavaScript, Python, cURL) with error handling
      • Retrieving and verifying uploaded images with ?include=images
      • Responsive display techniques using automatic thumbnails
      • Update and delete operations
      • Inline troubleshooting at each step (file size, dimensions, MIME types, duplicates, auth errors)
      • Cross-links to advanced guides (responsive images, CDN integration, building card tracker)
    • How-To index page with section overview and navigation
    • Scalable structure for future task-focused tutorials
  • Card Images highlighted in Getting Started guide (#242)
    • Added Card Images to core resources table in introduction.md
    • Added Card Images to Core Resources diagram in overview.md
    • Enhanced "Image Delivery" section to "Card Images & Delivery" with upload/management capabilities
    • Linked to Working with Images guide for detailed documentation
    • Card Images now prominently featured as a core API capability (v0.7.0)
  • Card model documentation updates for v0.6.0 and v0.7.0 (#240)
    • NEW: Card code examples section - Comprehensive examples showing image_uuid field and ?include=images parameter
    • Code examples in all 4 languages (PHP, JavaScript, Python, cURL) demonstrating:
      • Fetching cards with image_uuid field (v0.6.0+)
      • Including card images in responses using ?include=images (v0.7.0+)
      • Listing cards with images and processing included resources
    • Updated Building Card Tracker guide:
      • Added image_uuid to Card data structure example
      • Added images relationship to Card data structure
      • NEW: "Fetching Cards with Images" section - Practical examples showing efficient image fetching patterns
    • Created API repo issue #1089 for OpenAPI spec updates (missing images relationship documentation)
  • Set Sources API documentation for v0.6.0 (#239)
    • NEW: Data Provenance and Set Sources concepts page - Comprehensive guide explaining what Set Sources are, why to use them, and best practices
    • Comprehensive code examples in all 4 languages (PHP, JavaScript, Python, cURL)
    • Create, list, retrieve, update, and delete set source operations
    • Filter sources by set ID examples
    • Include sources in set requests (?include=sources)
    • Source verification tracking examples
    • Track multiple source types (checklist, metadata, images)
    • Added "Set Source Tracking and Data Attribution" section to Collection Management guide
    • Practical integration examples for data provenance and verification
    • Best practices for source management and attribution
    • Added Data Quality section to Concepts index
  • Comprehensive card images code examples for all languages (#238)
    • NEW: cURL examples - Complete command-line examples for all Card Images operations
    • Enhanced PHP examples with file validation, error handling, update/delete operations
    • Enhanced JavaScript examples with upload progress tracking using axios
    • Enhanced Python examples with progress tracking using requests-toolbelt
    • Upload examples with file size and type validation in all languages
    • List card images examples for filtering by card ID
    • Download examples with CDN redirect handling and error checking
    • Update image metadata examples (changing front/back type)
    • Delete card image examples with error handling
    • Batch download examples for all size variants
    • Added cURL to code examples index and navigation sidebar
    • All examples include comprehensive error handling and best practices
  • Personal Access Token (PAT) authentication documentation for v0.6.0 (#241)
    • Comprehensive PAT authentication guide with step-by-step token generation
    • Comparison table between OAuth 2.0 and PAT authentication methods
    • Code examples for PAT initialization in PHP, JavaScript, and Python
    • Security best practices for token management and storage
    • Token management guide (viewing, revoking, rotating)
    • PAT troubleshooting section with common issues and solutions
    • Updated authentication overview to include both OAuth and PAT methods
    • Updated Getting Started guide to mention PAT as development-friendly option
    • Enhanced all code examples with PAT authentication alongside OAuth
  • Card Images API documentation for v0.7.0 (#234)
    • Complete endpoint reference for all 6 Card Images endpoints
    • Comprehensive "Working with Images" guide with upload, download, and management examples
    • File upload examples in PHP, JavaScript, and Python code examples
    • Card image management section in Building Card Tracker guide
    • Image validation, caching, and best practices documentation
    • Support for front/back images with size variants (thumbnails)
  • Image thumbnails and responsive images documentation (#235)
    • New "Responsive Card Images" comprehensive guide with srcset, sizes, picture element, and lazy loading
    • Responsive image code examples in PHP, JavaScript, and Python
    • Detailed thumbnail size specifications (small 150px, medium 300px, large 600px)
    • Enhanced download endpoint documentation with size variant details
    • Performance best practices for responsive image delivery
    • Framework integration examples (React, Vue, vanilla JS)
  • CDN integration documentation for v0.7.0 (#236)
    • Comprehensive "CDN Integration" guide with versioned URLs and cache invalidation
    • CDN redirect behavior documentation (302 to CDN, not proxied)
    • Cache header documentation (1-year TTL, immutable directive)
    • Global edge delivery and performance optimization guide
    • URL structure and version parameter documentation
    • Complete integration examples in PHP, JavaScript, and Python
    • Troubleshooting guide for CDN-related issues
    • Performance expectations and monitoring best practices

🔧 Changed

  • Simplified release notes generation to use CHANGELOG.md content directly (#228)
  • Updated GitHub release v0.2.23 with actual changelog content instead of generic placeholders
  • Updated OpenAPI specification from API repository (includes Card Images API)
  • Enhanced documentation generator script with multipart/form-data file upload examples
  • Enhanced documentation generator with responsive image examples (#235)
  • Updated "Working with Images" guide with cross-references to responsive images guide (#235)
  • Updated code examples to use versioned CDN URLs (#236)
    • PHP examples show fetching metadata with versioned URLs
    • JavaScript examples include React component with CDN URLs
    • Python examples demonstrate Flask/Django integration with versioned URLs
  • Enhanced "Responsive Card Images" guide with versioned URL documentation (#236)
  • Updated "Working with Images" guide with CDN delivery information (#236)
  • Added CDN integration to Getting Started overview (#236)
  • Added CDN Integration to Concepts index (#236)

🐛 Fixed

  • Corrected image size specifications in "Working with Images" guide (was 400px/800px/1200px, now correctly 150px/300px/600px) (#235)

🗑️ Removed

  • Automatic git commit parsing from release notes generation (#228)
  • Generic placeholder content from release notes generator
  • Deployment information section from release notes
  • Contributing links section from release notes

📦 0.2.28 - 2025-11-15

🔧 Changed

  • Updated API changelog documentation to include version 0.7.3
  • Updated release statistics to reflect latest API version 0.7.3
  • Updated version information throughout API changelog

🔄 API Updates

  • API Release 0.7.3 - Updated documentation with latest API release information and synchronized changelog

📦 0.2.27 - 2025-11-15

🔧 Changed

  • Updated API changelog documentation to include version 0.7.2
  • Updated release statistics to reflect latest API version 0.7.2
  • Updated version information throughout API changelog

🔄 API Updates

  • API Release 0.7.2 - Updated documentation with latest API release information and synchronized changelog

📦 0.2.26 - 2025-11-15

🔧 Changed

  • Updated API changelog documentation to include version 0.7.1
  • Updated release statistics to reflect latest API version 0.7.1
  • Updated version information throughout API changelog

🔄 API Updates

  • API Release 0.7.1 - Updated documentation with latest API release information and synchronized changelog

📦 0.2.25 - 2025-11-15

🔧 Changed

  • Updated API changelog documentation to include version 0.7.0
  • Updated release statistics to reflect latest API version 0.7.0
  • Updated version information throughout API changelog

🔄 API Updates

  • API Release 0.7.0 - Updated documentation with latest API release information and synchronized changelog

📦 0.2.24 - 2025-11-11

🔧 Changed

  • Updated API changelog documentation to include versions 0.6.0 and 0.6.1
  • Updated release statistics to reflect latest API version 0.6.1
  • Updated version information throughout API changelog

🔄 API Updates

  • API Release 0.6.1 - Updated documentation with API version 0.6.1 changelog (version script hotfix)
  • API Release 0.6.0 - Updated documentation with API version 0.6.0 changelog (major feature release)

📦 0.2.23 - 2025-11-08

✨ Added

  • Brevo API integration for email marketing (#207)
  • NewsletterForm component with double opt-in (#209)
  • EarlyAccessForm component with 6 fields and Brevo integration (#210)
  • Homepage newsletter signup section (#211)
  • Footer newsletter form (all pages) (#212)
  • Blog post newsletter section (#213)
  • Early Access application page at /early-access (#214)
  • Newsletter confirmation page at /newsletter-confirmed (#215)
  • Early access submitted page at /early-access-submitted (#215)
  • Newsletter subscription opt-in for early access applicants
  • First and last name capture in forms
  • Comprehensive form validation and analytics tracking
  • Comprehensive versioning and release system similar to API repository
  • Automated semantic version generation based on git history and branch types
  • Version management scripts (version.sh, version-bump.sh, version-preview.sh)
  • Automated changelog generation with commit categorization
  • GitHub Actions workflows for automated releases and deployments
  • CI workflow for build validation and script testing
  • Release notes generation for GitHub releases
  • GitHub deployment integration with DigitalOcean App Platform
  • Professional deployment tracking and status updates
  • Comprehensive PHP SDK documentation suite with detailed guides
  • SDK overview page with feature comparison and roadmap
  • Complete PHP SDK installation and setup guide
  • PHP SDK quick start guide with all usage patterns (facade, helper, direct class)
  • Detailed API resources reference covering all 10+ available resources
  • Comprehensive error handling documentation with exception hierarchy
  • Real-world PHP SDK examples (price tracking, collection management, marketplace integration)
  • Laravel-specific integration patterns (controllers, commands, jobs, testing)

🔧 Changed

  • Simplified release workflows - removed unnecessary beta/RC workflows for documentation site
  • Reorganized version scripts with consistent .sh file extensions
  • Streamlined deployment process with controlled releases (auto-deploy disabled)
  • Updated PHP SDK documentation with correct package name and installation steps
  • Streamlined PHP SDK overview page to eliminate redundancy with sub-pages

🐛 Fixed

  • Corrected PHP SDK package name from tradingcardapi/php-sdk to cardtechie/tradingcardapi-sdk-php
  • Fixed PHP SDK installation instructions to include Laravel-specific setup
  • Updated minimum requirements to PHP 8.1+ and Laravel 10.0+
  • Corrected GitHub repository links throughout PHP SDK documentation
  • Fixed PROJECT_ROOT path calculation in version-bump.sh script
  • Removed redundant lint step from CI workflow

🗑️ Removed

  • Non-existent PHP SDK documentation site link from support section

📦 0.2.22 - 2025-11-05

🔄 API Updates

  • API Release 0.5.0 - Updated documentation with latest API release information and synchronized changelog

📦 0.2.21 - 2025-10-19

🐛 Bug Fixes

  • Documentation Changelog Missing Releases (#196) - Updated docs/changelog.md with missing release versions (0.2.18, 0.2.19, 0.2.20) that were previously only documented in CHANGELOG.md

🔧 Improvements

  • Version Bump Automation - Added version-bump slash command for automated changelog management with git commit and push capabilities

📦 0.2.20 - 2025-10-19

🐛 Bug Fixes

  • DigitalOcean Production Build (#193, #195) - Added build:production script that bypasses prebuild hook for DigitalOcean deployments, preventing API changelog generation failures in production environment

📦 0.2.19 - 2025-10-19

🐛 Bug Fixes

  • API Changelog Automation Data Loss Prevention (#192) - Fixed API changelog automation to prevent data loss by removing fallback content generation, adding safety checks against mass deletions, and ensuring all workflows clone the API repository with proper authentication

📦 0.2.18 - 2025-10-10

🐛 Bug Fixes

  • Production URL in Release Notes (#181) - Re-fixed incorrect production URL in release notes generation after reverting initial fix

📦 0.2.17 - 2025-10-10

🐛 Bug Fixes

  • Production URL in Release Notes - Initial fix for incorrect production URL in release notes generation (reverted in next release)

📦 0.2.16 - 2025-10-09

🐛 Bug Fixes

  • Duplicate API Changelog Entries (#178, #179) - Fixed API changelog generation script that was creating duplicate entries for each release. Simplified mergeChangelog() to use API repository as single source of truth, eliminating duplication issues in docs/api/changelog.md

📦 0.2.15 - 2025-09-24

✨ Features

  • OAuth vs API Keys Blog Post (#170) - Added comprehensive blog post comparing OAuth 2.0 and API Key authentication methods, explaining rationale for current OAuth implementation and announcing upcoming API key support

📦 0.2.14 - 2025-09-19

🔧 Improvements

  • Automation PR Enhancement (#158) - Enhanced API changelog automation to include site changelog updates and version bumps, uses hotfix branch prefix, and provides comprehensive PRs with all necessary site maintenance

📦 0.2.13 - 2025-09-19

🐛 Bug Fixes

  • API Changelog File Replacement (#155) - Fixed API changelog generation script to preserve historical data instead of replacing entire file, maintaining all previous release information while adding new releases

📦 0.2.12 - 2025-09-19

🐛 Bug Fixes

  • Script Force Flag and Workflow Token (#150) - Fixed --force flag handling in PR creation script and updated workflow to use CHANGELOG_UPDATE_TOKEN for proper PR creation permissions

📦 0.2.11 - 2025-09-19

🐛 Bug Fixes

  • PR Creation Label Requirements (#147) - Removed label requirements from create-changelog-pr.js to fix PR creation failures

📦 0.2.10 - 2025-09-19

🐛 Bug Fixes

  • runCommand Null Reference Error (#145) - Fixed null reference error in create-changelog-pr.js script when execSync returns null with stdio inherit

📦 0.2.9 - 2025-09-19

🐛 Bug Fixes

  • PR Creation Script Path (#143) - Fixed script path and internal path issues in create-changelog-pr.js preventing automated PR creation

📦 0.2.8 - 2025-09-19

🐛 Bug Fixes

  • API Changelog Script Path (#141, #142) - Fixed incorrect script path in api-changelog-update.yaml workflow preventing changelog generation

📦 0.2.7 - 2025-09-19

🐛 Bug Fixes

  • Webhook Validation for Repository Dispatch (#139, #140) - Fixed webhook secret validation for repository_dispatch events to work with GitHub's webhook system

📦 0.2.6 - 2025-09-18

🐛 Bug Fixes

  • Deployment Creation Token (#137) - Fixed deployment creation to use DEPLOY_APP_TOKEN instead of GITHUB_TOKEN for proper permissions

📦 0.2.5 - 2025-09-18

🐛 Bug Fixes

  • Deployment Workflow Not Triggering (#135, #136) - Fixed deployment workflow to actually trigger using DEPLOY_APP_TOKEN and proper deployment event pattern

📦 0.2.4 - 2025-09-18

🐛 Bug Fixes

  • Version Calculation and Release Notes Debugging (#132, #133) - Fixed version calculation and added release notes visibility to build logs

📦 0.2.3 - 2025-09-18

🐛 Bug Fixes

  • Build Release Workflow Versioning (#130, #131) - Fixed semantic versioning and improved release notes extraction from CHANGELOG.md

📦 0.2.2 - 2025-09-18

🐛 Bug Fixes

  • Build Release Workflow Permissions (#128, #129) - Fixed workflow permissions and modernized release creation using GitHub CLI

📦 0.2.1 - 2025-09-18

🐛 Bug Fixes

  • Build Release Workflow (#126, #127) - Fixed script paths to use new scripts/version/ directory structure

📦 0.2.0 - 2025-09-18

🚀 Major Features Added

  • Automated API Changelog System (#100, #101, #102)
    • Webhook-based automation for zero-maintenance API changelog updates
    • Intelligent change detection preventing unnecessary PRs
    • Enterprise-grade security with webhook secret validation
    • Comprehensive error handling with retry logic and debugging artifacts
    • Structured JSON output for advanced automation consumption
  • Blog Featured Images (#88)
    • Professional responsive featured image support for all blog posts
    • Mobile-first design with breakpoints (300px → 200px → 150px)
    • Manual BlogImage component with professional styling
    • Featured images for all existing blog posts
  • Live API Changelog Integration (#86, #99, #103)
    • Real-time API release information display
    • Complete integration with API repository changelog
    • Automatic synchronization with API releases
  • Comprehensive PHP SDK Documentation (#83, #91, #92, #95)
    • Complete PHP SDK documentation suite with guides and examples
    • SDK overview page with feature comparison and roadmap
    • Installation, quickstart, and advanced usage documentation
    • PHP SDK changelog integration and display
  • Professional Documentation Infrastructure (#82, #85, #97, #98)
    • API rate limits and quotas comprehensive documentation
    • Public changelog page with user-friendly formatting
    • Enhanced documentation structure and navigation

🔧 Technical Infrastructure Added

  • Versioning and Release System (#84, #90)
    • Automated semantic version generation based on git history
    • Version management scripts (version.sh, version-bump.sh, version-preview.sh)
    • Automated changelog generation with commit categorization
    • GitHub Actions workflows for automated releases and deployments
  • CI/CD Pipeline Enhancements
    • Comprehensive CI workflow for build validation and script testing
    • Release notes generation for GitHub releases
    • GitHub deployment integration with DigitalOcean App Platform
    • Enhanced error handling and debugging capabilities

📝 Content and Documentation Added

  • Professional Blog Content (#28, #43, #87, #89)
    • Trading Card API v0.4.0 release announcement blog post
    • Initial blog posts improving blog page display
    • Professional blog structure and formatting
  • Comprehensive Developer Guides (#29, #30, #31, #32, #33, #34, #44, #45, #46, #47, #48, #50)
    • Card price tracking application development guide
    • Collection management application development guide
    • Marketplace integration comprehensive guide
    • Mobile application integration guide
    • Data analysis applications development guide
    • Authentication services implementation guide
  • Enhanced Site Infrastructure (#35, #36, #49, #65, #66, #67)
    • Beta notice/disclaimer system for documentation pages
    • Comprehensive Google Analytics setup for production site
    • Fixed and updated all footer links with proper navigation

🔧 System Improvements and Optimizations

  • API Reference and Navigation (#25, #27, #39, #40, #41, #42)
    • Updated and fixed API reference page functionality
    • Renamed master branch to main with updated workflows
    • Added admin site link to header navigation
    • Enhanced API reference structure and usability
  • Site Performance and User Experience (#23, #24, #37, #38)
    • Removed Algolia search to simplify site architecture
    • Removed dark/light mode toggle to fix styling issues
    • Streamlined site functionality for better performance
  • Deployment and Infrastructure (#12, #13, #14, #15, #16, #17, #18, #19, #20, #21)
    • Removed logo from site header for cleaner design
    • Removed GitHub link from header navigation
    • Removed Netlify from deployment options
    • Added Google Analytics integration
    • Homepage redesign from ready API to early access/beta
    • Enhanced deployment infrastructure

🐛 Critical Bug Fixes

  • Production Stability (#68, #69)
    • Fixed production crash from undefined process variable
    • Resolved process undefined error affecting site stability
  • Documentation Links and Navigation (#93, #96)
    • Fixed broken links throughout documentation
    • Corrected anchor references to match Docusaurus generation
    • Updated all cross-references and internal linking
  • Infrastructure and Build Issues
    • Fixed featured image layout and positioning issues
    • Resolved CI workflow validation and build problems
    • Fixed PROJECT_ROOT path calculation in version management
    • Corrected PHP SDK installation and usage documentation

🗑️ Cleanup and Modernization

  • Removed obsolete .cache/api-releases.json from repository
  • Removed redundant CI workflow steps and unused build processes
  • Removed GitHub Pages deployment (DigitalOcean handles deployment)
  • Removed unnecessary workflow files (build-develop.yaml, build-release-candidate.yaml)
  • Cleaned up version preview workflow (not needed for core functionality)
  • Streamlined build processes and removed redundant lint steps

📦 0.1.0 - 2025-09-16

Initial Release

This marks the first major release of the Trading Card API documentation site with full feature parity.

✨ Added

🏗️ Core Documentation Site

  • Complete Docusaurus-based documentation site for Trading Card API
  • Responsive design with mobile-first approach
  • Custom styling and branding for Trading Card API

🏗️ Documentation Content

  • Introduction and overview pages
  • Getting started guides (authentication, first request, overview)
  • Comprehensive API documentation (endpoints, models)
  • Code examples in JavaScript, PHP, and Python
  • Conceptual guides and filtering documentation

🏗️ Developer Guides

  • Building card price tracker applications
  • Collection management system guides
  • Marketplace integration documentation
  • Mobile app integration guides
  • Data analysis and filtering guides
  • Authentication service documentation

🏗️ Interactive Features

  • Live API explorer at /api endpoint
  • Interactive code examples with syntax highlighting
  • Beta notice system for user notifications
  • Google Analytics integration for usage tracking

🏗️ Blog System

  • Blog posts about API updates and best practices
  • Author management system
  • RSS feed support for blog content
  • Welcome post and getting started tutorials

🏗️ Components and Features

  • Custom React components (CodeExample, Stats, BetaNotice)
  • Homepage with hero section and feature highlights
  • Use case showcase (6 primary use cases)
  • Early access program integration
  • Contact forms and email integration

🏗️ Technical Infrastructure

  • OpenAPI specification integration
  • Automatic API documentation generation
  • Static site generation and deployment
  • SEO optimization and meta tags
  • Privacy policy and terms of service pages

🏗️ Development Tools

  • npm scripts for build, serve, and development
  • Hot reloading for development
  • Clear documentation structure
  • Version management system (this release)

🔗 Additional Resources

🐙 GitHub Resources

🏷️ Version Information

  • Current Version: Check the package.json for the latest version
  • Release Schedule: New versions are released as features are completed
  • Breaking Changes: We'll always provide migration guides for any breaking changes

🔔 Stay Updated

📧 Get Notified

💬 Community


Questions or Feedback?

Have questions about a specific change or want to suggest improvements? We'd love to hear from you! Reach out through GitHub Issues or email support.