ChangelogRelease History
Changelog

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.

2024-10-15v2.1.0
featureimprovement

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 <50ms response 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.
2024-09-20v2.0.0
featurebreaking

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/quotes now requires shipmentType parameter.
  • Deprecated legacy /legacy/docs endpoint in favor of /v2/documents.

Bug Fixes

  • Corrected rate calculation errors for air freight under 100kg.
2024-08-10v1.5.0
bugfiximprovement

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

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.

Upcoming Features

Stay ahead with previews of what's next.

Subscribe to release notifications via your account settings to get email alerts on new versions.

Was this page helpful?
Built with Documentation.AI

Last updated today