ChangelogRelease History

Changelog

Track the latest updates, improvements, and new features released in Xinterview AI.

Recent Updates

Stay informed about the latest releases that enhance your video interviewing experience. Xinterview AI releases updates frequently to introduce new AI-powered features, improve performance, and fix issues.

2024-10-15v2.1.0
featureimprovement

New Features

  • Added real-time transcription for video interviews with 95% accuracy.
  • Introduced AI candidate sentiment analysis to gauge enthusiasm during responses.
  • New customizable interview templates for technical, sales, and executive roles.

Improvements

  • Reduced video processing time by 40% using optimized cloud rendering.
  • Enhanced dashboard analytics with exportable CSV reports.

Bug Fixes

  • Fixed intermittent sync issues between candidate responses and recruiter dashboards.
  • Resolved mobile browser compatibility problems for invite links.
2024-09-20v2.0.0
featurebreaking

New Features

  • Launched multi-language support for interviews in English, Spanish, and French.
  • Integrated calendar sync with Google Calendar and Outlook for seamless scheduling.
  • AI-powered question generation based on job descriptions.

Breaking Changes

  • Updated API authentication to use JWT tokens instead of API keys. Migrate by generating new tokens from your dashboard.

Bug Fixes

  • Corrected scoring algorithm discrepancies in edge cases.
  • Improved error handling for network interruptions during recordings.
2024-08-10v1.9.0
bugfixsecurity

Improvements

  • Upgraded video player with 4K support and adaptive bitrate streaming.
  • Added bulk candidate import from CSV files.

Bug Fixes

  • Patched security vulnerability in shared interview links (CVE-2024-XXXX).
  • Fixed dashboard refresh loops on large candidate lists.

Security Updates

  • Enforced HTTPS-only for all endpoints.

Upcoming Features

Preview what's coming next to help you plan your workflows.

These previews are subject to change. Check back for release announcements.

Update Your Integration

To ensure you receive the latest features and security patches, follow these steps.

Check Current Version

Visit your dashboard at https://app.xinterview.ai and navigate to Settings > Version.

Migrate API Changes

Update your integration code for v2.0.0 breaking changes.

// Old API key auth
const response = await fetch('https://api.xinterview.ai/interviews', {
  headers: { 'X-API-Key': 'YOUR_API_KEY' }
});

// New JWT auth
const token = await getJWTToken(); // From dashboard
const response = await fetch('https://api.xinterview.ai/interviews', {
  headers: { 'Authorization': `Bearer ${token}` }
});

Test in Staging

Use the staging environment https://staging.xinterview.ai to validate changes.

No downtime expected for minor releases. Restart webhooks after major versions.

Version Migration Notes

For detailed migration guides:

Review the JWT migration above. Update all X-API-Key headers.