Changelog
Stay informed about the latest updates, new features, and improvements in Bookengo to make the most of the platform.
Overview
Bookengo releases updates regularly to enhance shuttle reservation management for hotel managers. You receive new features for better guest experiences, performance improvements, and critical bug fixes. Review the recent changes below to understand impacts on your workflows and integrations.
Latest Release
Explore v2.1.0 details and quick migration steps.
Migration Guides
Step-by-step instructions for upgrading your setup.
API Reference
Updated endpoints and changelog for developers.
Enable automatic updates in your dashboard settings to stay current without manual intervention. Check your version under Account > Billing.
Recent Releases
New Features
- Added real-time shuttle tracking with live GPS updates for guests
- Introduced bulk reservation imports via CSV for high-volume hotels
- New dashboard widget for upcoming shuttle analytics
Improvements
- Optimized booking confirmation emails with customizable templates
- Enhanced mobile responsiveness for on-the-go manager approvals
- Reduced API response times by
>30%for reservation queries
New Features
- Multi-language support for guest notifications (English, Spanish, French)
- Integrated payment processing with Stripe and PayPal
- Automated driver assignment based on shuttle availability
Breaking Changes
- Updated authentication to use JWT tokens; migrate from API keys
- Reservation endpoint now requires
hotelIdin path parameters
Bug Fixes
- Fixed duplicate booking creation during concurrent check-ins
- Resolved calendar sync issues with Google Calendar
Improvements
- Streamlined shuttle route planning with drag-and-drop editor
- Added export options for reservation reports in PDF and Excel
Bug Fixes
- Corrected pricing calculation errors for dynamic rates
- Patched security vulnerability in guest data export (CVE-2024-5678)
Check Your Version
Follow these steps to verify your Bookengo version and apply updates.
Access Dashboard
Log in to your Bookengo account at https://app.bookengo.com.
View Version
Navigate to Settings > About. Note the displayed version number.
Update Integration
Use the version check in your code:
async function checkVersion() {
const response = await fetch('https://api.bookengo.com/v1/version', {
headers: { 'Authorization': `Bearer ${YOUR_TOKEN}` }
});
const data = await response.json();
console.log(`Current version: ${data.version}`);
}
import requests
headers = {'Authorization': f'Bearer {YOUR_TOKEN}'}
response = requests.get('https://api.bookengo.com/v1/version', headers=headers)
print(f"Current version: {response.json()['version']}")
Stay tuned for upcoming releases focused on AI-driven route optimization and expanded integrations.
Last updated 1 day ago

