Changelog
Track the latest updates and improvements to Bifroster. Review recent releases, new features, and bug fixes.
Recent Updates
Stay updated by subscribing to our release notifications. Check your dashboard at https://dashboard.bifroster.com for automatic update alerts.
Bifroster releases follow semantic versioning. You receive patch updates automatically, but major and minor versions require manual upgrade via the dashboard.
v1.2.0
Enhanced signal stability and performance.
v1.1.0
New integration endpoints.
v1.0.0
Initial platform launch.
v1.2.0 - Enhanced Stability
Improvements
- Enhanced signal processing algorithms for
<99.9%uptime during high-load scenarios - Optimized latency reduction by up to
25%on average connections
Bug Fixes
- Resolved intermittent signal drops in multi-node environments
- Fixed configuration sync issues with webhook integrations
Upgrade to v1.2.0 via your dashboard to benefit from these stability improvements immediately.
v1.1.0 - Integration Endpoints
New Features
- Added
/v1/integrations/webhooksendpoint for real-time signal notifications - Introduced
/v1/signals/batchfor bulk processing operations
Usage Example
curl -X POST https://api.bifroster.com/v1/integrations/webhooks \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://your-webhook-url.com/webhook",
"events": ["signal.updated", "signal.failed"]
}'
const response = await fetch('https://api.bifroster.com/v1/integrations/webhooks', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
url: 'https://your-webhook-url.com/webhook',
events: ['signal.updated', 'signal.failed']
})
});
Upgrade Instructions
Check Current Version
Log in to https://dashboard.bifroster.com and navigate to Settings > Versions.
Review Changes
Read the changelog above for breaking changes.
Run Upgrade
Click "Upgrade Now" and confirm. Backups are automatic.
Verify
Test signal endpoints to ensure everything works.
v1.0.0 - Initial Launch
New Features
- Core signal optimization platform with real-time monitoring
- Dashboard for visualizing signal quality metrics
- Basic API for signal analysis:
POST /v1/signals/analyze
Breaking Changes
- Initial schema requires new account setup
All updates include security patches. Always keep your instance up to date.
Last updated today
Built with Documentation.AI