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.
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.
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.
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.
AI Resume Screening
Automatically score resumes against job criteria before interviews.
Team Collaboration
Real-time feedback and annotations during live reviews.
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.
Ensure webhook URLs use HTTPS. Regenerate any compromised shared links.
Access older changelogs via the API:
// Fetch changelog
const changelog = await fetch('https://api.xinterview.ai/changelog', {
headers: { 'Authorization': `Bearer ${YOUR_TOKEN}` }
}).then(res => res.json());
Last updated 2 days ago
Built with Documentation.AI