Changelog
Review the version history of PilotPulse, including new features, improvements, and important updates.
Recent Releases
Stay informed about the latest enhancements to PilotPulse. We release updates regularly to introduce new AI capabilities, improve performance, and fix issues. Check the tags below for quick categorization.
New Features
- Added WhatsApp integration for customer engagement chatbots, enabling seamless conversational AI across channels.
- Introduced omnichannel support for staff AI assistants handling ops, HR, and IT queries.
- New quotation generation AI module that automates responses based on natural language inputs.
Improvements
- Enhanced data analytics AI chat with better natural language understanding for complex queries.
- Optimized performance for customer reviews AI analytics, reducing processing time by 40%.
New Features
- Launched HR recruitment AI for automated candidate screening and interview scheduling.
- Added support for custom AI training datasets directly in the dashboard.
Breaking Changes
- Updated authentication flow to use JWT tokens instead of API keys. See migration guide below.
- Removed legacy webhook endpoints; migrate to the new unified webhook system.
Bug Fixes
- Fixed intermittent failures in multi-turn conversations for omnichannel bots.
Improvements
- Boosted inference speed for all AI models by 25% through optimized tensor processing.
- Improved error handling in staff AI assistants for better fallback responses.
Bug Fixes
- Resolved dashboard crashes when handling large analytics datasets.
- Fixed token leakage in quotation generation for sensitive data fields.
Upgrading to the Latest Version
Follow these steps to upgrade PilotPulse safely. Always back up your configuration before proceeding.
Backup Configuration
Export your current settings:
pilotpulse config export --output backup.json
Update Package
npm install pilotpulse@latest
docker pull pilotpulse/ai:latest
docker-compose up -d
Migrate Breaking Changes
For v2.0.0 users, update authentication:
// Old: API key
const config = { apiKey: 'YOUR_API_KEY' };
// New: JWT
const config = {
jwtToken: await getJwtToken('https://auth.pilotpulse.ai')
};
# Old
config = {"api_key": "YOUR_API_KEY"}
# New
config = {"jwt_token": get_jwt_token("https://auth.pilotpulse.ai")}
Verify Deployment
Test core endpoints:
curl -H "Authorization: Bearer YOUR_JWT_TOKEN" https://api.pilotpulse.ai/v2/chat
Quick Links
Quickstart
Get started with PilotPulse in minutes.
Authentication
Secure your API access.
API Reference
Explore endpoints and examples.
Subscribe to our release announcements or watch the GitHub repo for the latest updates. Check this changelog before upgrading production deployments.
Last updated today
Built with Documentation.AI