Changelog

Product updates and version history

Current Version:v2.0.0
Released 1 day ago

Redesigned API architecture

#234

Complete overhaul of the REST API with new endpoints and response formats

Before:
// Old API
fetch('/api/users')
  .then(res => res.json())
  .then(data => console.log(data.users));
After:
// New API v2
fetch('/api/v2/users', {
  headers: { 'X-API-Version': '2.0' }
})
  .then(res => res.json())
  .then(data => console.log(data.data));
Migration Guide:
// Migration guide
1. Update all API endpoints to include /v2 prefix
2. Add X-API-Version header to all requests
3. Update response parsing (data.users → data.data)

WebSocket support for real-time updates

#230fixes #145

Live data streaming with WebSocket connections

3x faster data processing

#228

Optimized algorithms reduce processing time by 67%

Stay Updated

Release Stats

Total Releases4
This Month3
Avg. Time Between5 days
Contributors4

Jump to Version

Downloads