Changelog
Track the latest updates, improvements, and new features released in ExpertBatch.
Recent Releases
Stay up to date with the latest improvements to ExpertBatch. Review release notes below to understand new features, enhancements, and fixes.
New Features
- Added AI-powered face detection in proctoring for enhanced exam security.
- Introduced real-time analytics dashboard with percentile rankings and topic breakdowns.
Improvements
- Optimized timed assessments with improved countdown timers and auto-submission.
- Enhanced user management dashboard with role-based access controls.
Bug Fixes
- Fixed performance tracking issues during high-load assessments.
- Resolved export errors in analytics reports.
Improvements
- Upgraded skill-based testing interface for better topic organization.
- Improved mobile responsiveness for candidate exam interfaces.
Bug Fixes
- Corrected proctoring screen capture failures on certain browsers.
- Fixed user management role assignment synchronization delays.
New Features
- Launched core platform with skill-based exams and secure proctoring.
- Added performance tracking and basic analytics reports.
Breaking Changes
- Updated API endpoints from
/v0/to/v1/prefix. Migrate your integrations.
Bug Fixes
- Initial stability improvements for timed assessments.
Upgrade Instructions
Follow these steps to upgrade ExpertBatch to the latest version.
Backup Data
Export your assessments and user data.
Use the admin dashboard export feature to avoid data loss.
Update SDK
Install the latest SDK version.
<CodeGroup tabs="npm,yarn">
```bash
npm install @expertbatch/sdk@latest
```
```bash
yarn add @expertbatch/sdk@latest
```
</CodeGroup>
Migrate API Calls
Update endpoints to /v1/ prefix.
// Old
fetch('https://api.example.com/v0/assessments');
// New
fetch('https://api.example.com/v1/assessments');
Test Proctoring
Run a test exam to verify proctoring and analytics.
Upcoming Features
Watch for these enhancements in future releases.
Advanced AI Proctoring
Multi-angle camera support and behavioral analysis.
Custom Question Builder
Drag-and-drop interface for creating skill-specific questions.
Team Collaboration
Shared assessment workspaces for hiring teams.
API Webhooks
Real-time notifications for exam completions.
If you encounter issues with breaking changes:
- Review all API calls using
/v0/paths. - Update
Authorizationheaders to use{YOUR_API_KEY}format. - Test endpoints at
https://api.example.com/v1/health.
const response = await fetch('https://api.example.com/v1/health', {
headers: {
'Authorization': `Bearer ${YOUR_API_KEY}`
}
});
Subscribe to our newsletter or follow updates on GitHub for release announcements.
Last updated Apr 14, 2026
Built with Documentation.AI