ChangelogRelease History

Changelog

Version history with recent updates, new features, and changes.

Recent Updates

Keep your CODE IN CO SOLUTIONS integration up to date with the latest improvements in AI processing, computer vision capabilities, and software development tools. Review changes below to understand new features, fixes, and required updates.

Subscribe to our RSS feed or join the community Discord for instant notifications on new releases.

2024-10-15v1.2.0
featurebugfiximprovement

New Features

  • Added support for real-time license plate recognition (ALPR) in the Vision API.
  • Introduced batch processing for analytics datasets exceeding >10,000 records.
  • New webhook events for AI model training completion.

Improvements

  • Optimized computer vision inference time by 30% for edge devices.
  • Enhanced error logging with structured JSON output.

Bug Fixes

  • Fixed intermittent failures in multi-threaded image processing.
  • Resolved authentication token refresh issues during long-running tasks.
2024-09-20v1.1.0
featureimprovement

New Features

  • Launched AI Analytics Dashboard with interactive visualizations.
  • Added Python SDK for seamless integration with existing data pipelines.

Improvements

  • Upgraded underlying ML models for 15% higher accuracy in object detection.
  • Streamlined API rate limiting with customizable tiers.

Breaking Changes

  • Deprecated legacy imageUrl parameter; use imageData instead.
2024-08-10v1.0.0
feature

Initial Release

  • Core ALPR System API with plate detection and OCR.
  • Basic computer vision endpoints for object recognition.
  • Software development toolkit for custom model deployment.

Improvements

  • Secure authentication via API keys and JWT tokens.

Migration Guide

Upgrading to the latest version? Follow these steps to ensure smooth transition.

Backup Configuration

Export your current settings:

codeinco-cli export-config > backup.json

Update SDK

npm install @codeinco/sdk@latest

Update API Calls

Replace deprecated parameters. See example:

// Before (v1.0)
fetch('https://api.example.com/vision/analyze', {
  body: JSON.stringify({ imageUrl: 'https://example.com/img.jpg' })
});

Test Integration

Run integration tests:

npm run test:vision

Always test in staging before production deployment. Check the release tags for full diffs.