logo
ChangelogRelease History
Changelog

OnBooq Changelog

Stay updated with the latest releases, improvements, and bug fixes for the OnBooq platform.

Recent Releases

Check the latest updates below. Each release includes new features for enquiry capture, performance improvements, and fixes to ensure your Enquiry Assistant runs smoothly 24/7.

2024-10-15v1.3.0
featureimprovement

New Features

  • Added advanced AI responses for common customer questions about services and pricing
  • Introduced customizable booking prompts that guide visitors to schedule appointments directly in chat
  • New webhook support for integrating enquiry data with your CRM systems

Improvements

  • Reduced response latency by 40% for after-hours enquiries
  • Enhanced analytics dashboard with real-time conversion tracking
2024-09-20v1.2.0
bugfixsecurity

Bug Fixes

  • Fixed intermittent notification failures for mobile users
  • Resolved issue where chat sessions dropped during high traffic periods
  • Patched potential security vulnerability in API token handling

Improvements

  • Optimized database queries for faster lead capture
  • Updated UI components for better mobile responsiveness
2024-08-10v1.1.0
breakingfeature

New Features

  • Launched core Enquiry Assistant with 24/7 lead capture and instant FAQ responses
  • Integrated basic booking flow to convert chats into scheduled jobs

Breaking Changes

  • Deprecated legacy enquiry-v1 endpoint; migrate to https://api.example.com/v2/enquiries
  • Updated required Authorization header format to Bearer {YOUR_TOKEN}

Upgrade Guide

Follow these steps to upgrade your OnBooq instance safely.

Backup Data

Export your current configuration and enquiry logs.

curl -H "Authorization: Bearer YOUR_TOKEN" \
  https://api.example.com/v1/export?type=backup

Update SDK

Install the latest version using your package manager.

npm install onbooq-sdk@1.3.0

Migrate API Calls

Update deprecated endpoints in your integration code.

// Before (v1.1.0)
fetch('https://api.example.com/enquiry-v1', {
  headers: { 'X-API-Key': 'YOUR_KEY' }
});

Test & Deploy

Run tests and deploy to production.

Verify your version by calling GET /version on https://api.example.com. Subscribe to our RSS feed for instant notifications.

Upcoming Roadmap

Stay ahead with these planned enhancements.

Migration Notes

Review these key changes:

Old EndpointNew EndpointNotes
/enquiry-v1/v2/enquiriesRequired auth upgrade
X-API-KeyAuthorization: BearerUse {YOUR_TOKEN}

Update your code as shown in the upgrade steps above.