ChangelogRelease History
Changelog

Changelog

Track the latest updates, new features, and improvements in credential.studio to stay current with platform changes.

Recent Updates

Stay informed about new features, bug fixes, and improvements in credential.studio. We release updates regularly to enhance attendee management, credential printing, and security.

Check your current version in the dashboard under Settings > About. Subscribe to our RSS feed or email notifications for instant alerts on new releases.

2024-10-15v1.3.0
featureimprovement

New Features

  • Added bulk photo upload with automatic resizing and cropping for faster attendee setup.
  • Introduced custom credential templates with drag-and-drop designer for events.
  • New activity export feature allows downloading logs as CSV or PDF.

Improvements

  • Enhanced real-time collaboration for team members editing attendee records.
  • Optimized PDF generation speed by 40% for large events (>500 attendees).

Bug Fixes

  • Fixed intermittent photo upload failures on mobile browsers.
  • Resolved credential preview glitches when using custom fonts.
2024-09-25v1.2.1
bugfixsecurity

Bug Fixes

  • Patched security vulnerability in user role permissions (CVE-2024-XXXX).
  • Corrected attendee search filtering when using custom fields.
  • Fixed print layout issues on A4 paper sizes.

Improvements

  • Updated UI for better mobile responsiveness in credential editor.
2024-09-10v1.2.0
featurebreaking

New Features

  • Integrated QR code generation on credentials for scan-based access control.
  • Added webhook support for external systems (e.g., ticketing integrations).

Breaking Changes

  • Updated API endpoints: Use /v2/attendees instead of /v1/attendees. See migration guide below.

Improvements

  • Increased photo upload limit to 10MB per image.

Upgrading Your Instance

Follow these steps to upgrade credential.studio smoothly.

Backup Data

Export all attendee records and activity logs from the dashboard.

# Via dashboard UI
Settings > Export > All Data (CSV/PDF)

Check Compatibility

Review release notes for breaking changes, especially API updates.

Update Application

If self-hosted, pull latest Docker image:

docker pull credentialstudio/app:v1.3.0
docker-compose up -d

Verify

Test credential printing and photo uploads post-upgrade.

If using the API, update your integration:

// Old (v1)
const response = await fetch('https://api.credential.studio/v1/attendees');

// New (v2)
const response = await fetch('https://api.credential.studio/v2/attendees');

Set header X-API-Version: 2 for backward compatibility during transition.

Next Steps

Explore these resources after updating.

Found an issue? Report it via the in-app feedback form or GitHub issues.