Changelog
Version history and updates for Fresa Technologies, highlighting new features and improvements.
Recent Releases
Fresa Technologies releases updates regularly to enhance your freight management experience. Review the latest changes below to understand new capabilities, fixes, and required actions.
New Features
- Added AI-assisted compliance checks for international shipments, automatically flagging regulatory issues during documentation.
- Introduced real-time tracking integration with major carriers like Maersk and FedEx.
Improvements
- Optimized quoting engine for
<50msresponse times on high-volume requests. - Enhanced dashboard with customizable widgets for shipment metrics.
Bug Fixes
- Fixed intermittent failures in document generation for multi-leg shipments.
- Resolved authentication issues with
{API_KEY}rotation.
New Features
- Launched unified dashboard for end-to-end freight operations, combining quoting, booking, and tracking.
- Integrated AI quoting with dynamic pricing based on market rates and fuel surcharges.
Breaking Changes
- Updated API endpoints:
/v1/quotesnow requiresshipmentTypeparameter. - Deprecated legacy
/legacy/docsendpoint in favor of/v2/documents.
Bug Fixes
- Corrected rate calculation errors for air freight under 100kg.
Improvements
- Improved mobile responsiveness for field agents accessing shipment status.
- Added bulk import for shipment data via CSV with validation.
Bug Fixes
- Patched security vulnerability in file upload for shipping documents (CVE-2024-5678).
- Fixed sync issues between web and mobile apps.
Migration Guides
Upgrade smoothly by following these version-specific steps. Test changes in staging before production.
Update SDK
Install the latest SDK:
npm install @fresa/freight-sdk@2.1.0
yarn add @fresa/freight-sdk@2.1.0
Refactor Quotes Endpoint
Update your quoting calls:
// Old
const quote = await fetch('/v1/quotes', {
body: JSON.stringify({ origin: 'NYC', dest: 'LAX' })
});
// New
const quote = await fetch('/v2/quotes', {
body: JSON.stringify({
origin: 'NYC',
dest: 'LAX',
shipmentType: 'air' // Required now
})
});
Test Compliance Features
Run compliance checks:
const compliance = await fresaSDK.checkCompliance({
shipmentId: 'SHIP123',
docs: documentData
});
Backup your current configuration before migrating. Use the staging API at https://staging.fresa.tech/api.
Review deprecated endpoints and enable bulk imports.
Upcoming Features
Stay ahead with previews of what's next.
AI Predictive Delays
Proactively reroute shipments based on weather and port congestion forecasts.
Blockchain Document Trail
Immutable audit logs for compliance reporting.
Subscribe to release notifications via your account settings to get email alerts on new versions.
Last updated today