ChangelogRelease History
Changelog

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.

2024-10-15v2.1.0
featureimprovement

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%.
2024-09-20v2.0.0
featurebreaking

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.
2024-08-10v1.9.0
bugfiximprovement

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

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') 
};

Verify Deployment

Test core endpoints:

curl -H "Authorization: Bearer YOUR_JWT_TOKEN" https://api.pilotpulse.ai/v2/chat

Subscribe to our release announcements or watch the GitHub repo for the latest updates. Check this changelog before upgrading production deployments.