Changelog
Review the version history of Zwift Community, highlighting recent updates, new features, and fixes.
Overview
Stay informed about the latest enhancements to Zwift Community, your hub for Zwift teams and events. This changelog details key releases, focusing on team discovery, event management, and performance improvements. Check back regularly for updates that enhance your community experience.
Zwift Community follows semantic versioning (vX.Y.Z). Major versions may include breaking changes.
Recent Releases
New Features
- Added advanced team matching with filters for skill level, location, and training focus
- Introduced event RSVP system with calendar integration and reminders
- Enhanced team profiles with member stats and activity feeds
Improvements
- Optimized search performance for faster team and event discovery
- Updated UI with responsive design for mobile users
- Improved notification system for event updates and team invites
Bug Fixes
- Fixed event time zone display issues
- Resolved team join request processing delays
- Corrected profile image upload errors
New Features
- Launched community event calendar with search and filters
- Added team leaderboard for weekly challenges
- Integrated Zwift workout sharing within teams
Improvements
- Streamlined team creation workflow
- Enhanced accessibility with better keyboard navigation
Bug Fixes
- Fixed login issues with Zwift OAuth
- Resolved duplicate event listing errors
- Patched search query escaping vulnerabilities
Initial Release
- Core team discovery and joining functionality
- Basic event browsing and participation tracking
- User profiles with Zwift stats integration
Breaking Changes
- Initial API structure established; previous beta endpoints deprecated
Upcoming Features
Explore what's next for Zwift Community. These planned updates will further enhance team collaboration and event engagement.
AI Team Matching
Get personalized team recommendations based on your Zwift rides and goals.
Live Event Streaming
Watch and chat during community rides in real-time.
Advanced Analytics
Track team performance with detailed ride metrics and progress charts.
Deprecations and Migration
The old /api/search/v1 endpoint is deprecated. Migrate to /api/search/v2 for improved results.
// Old endpoint
fetch('https://api.example.com/api/search/v1?q=team');
// New endpoint
fetch('https://api.example.com/api/search/v2?q=team&filters=skill');
Update your integrations before the sunset date in Q1 2025.
To check your current version, visit your profile settings or use the API: GET /api/version.
Follow these steps to ensure you're on the latest version:
Check Current Version
Visit https://zwift.community/settings and review your account info.
Update Browser Cache
Clear cache or use incognito mode for latest features.
Review Changes
Read release notes here and test new features.
// Example: New team join with RSVP
const response = await fetch('https://api.example.com/v2/teams/{teamId}/join', {
method: 'POST',
headers: { 'Authorization': `Bearer ${YOUR_TOKEN}` },
body: JSON.stringify({ rsvp: true })
});
Last updated today