Changelog
Track the latest updates, improvements, and new features released in BMIS to keep your events running smoothly.
Latest Updates
BMIS releases updates regularly to enhance your event management experience. You receive new features, performance improvements, and bug fixes automatically. Review the highlights below to understand changes that impact your events.
Check the BMIS dashboard for version details specific to your account. Enable notifications to stay informed about updates.
New Features
- Introduced AI-powered event planner that generates full schedules from natural language inputs
- Added global ticket distribution with multi-language support for international events
- New webhook endpoints for real-time attendee updates
Breaking Changes
- Updated API authentication to require JWT tokens instead of API keys. Migrate using the guide below.
- Removed legacy CSV export; use JSON or PDF formats instead.
Improvements
- Enhanced dashboard load times by
>40% - Better mobile responsiveness for attendee check-in
Bug Fixes
- Fixed sync issues with external calendars
- Resolved ticket overbooking during high-traffic sales
Improvements
- Optimized event search with fuzzy matching for better results
- Added bulk attendee import from Google Sheets
Bug Fixes
- Fixed payment gateway timeouts during peak hours
- Corrected email template rendering for custom fields
- Patched security vulnerability in webhook validation (CVE-2024-1234)
Performance
- Reduced database query times for large events (
<100msaverage)
New Features
- Integrated Stripe and PayPal for seamless payments
- Custom branding for event pages and emails
- Analytics dashboard with attendee engagement metrics
Improvements
- Streamlined event creation wizard with templates for common event types
Upgrade Instructions
BMIS updates deploy automatically, but you may need to adjust configurations for breaking changes.
Review Changelog
Scan recent updates for breaking changes affecting your events.
Test Integrations
Verify webhooks and API calls in a staging environment.
Update API Clients
// Updated JWT auth
const token = await getJWTToken();
fetch('https://api.example.com/v2/events', {
headers: { Authorization: `Bearer ${token}` }
});
# Updated JWT auth
token = get_jwt_token()
response = requests.get(
'https://api.example.com/v2/events',
headers={'Authorization': f'Bearer {token}'}
)
Deploy Changes
Push updates to production and monitor for issues.
Quick Links
Quickstart
Set up your first event quickly.
Authentication
Secure your API access.
API Reference
Full endpoint documentation.
Subscribe to the BMIS changelog RSS feed or join our Discord community for real-time announcements. Provide feedback on updates to help shape future releases.
Last updated today