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.
New Features
- Added support for real-time license plate recognition (ALPR) in the Vision API.
- Introduced batch processing for analytics datasets exceeding
>10,000records. - 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.
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
imageUrlparameter; useimageDatainstead.
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
pip install codeinco-sdk --upgrade
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' })
});
// After (v1.2)
fetch('https://api.example.com/vision/analyze', {
body: JSON.stringify({ imageData: base64Image })
});
Test Integration
Run integration tests:
npm run test:vision
Detailed v1.2.0 Notes
Full breakdown of changes and examples.
API Reference
Updated endpoints and parameters.
Always test in staging before production deployment. Check the release tags for full diffs.