Release Notes
Stay up-to-date with the latest TW releases, features, improvements, and bug fixes.
Release Notes
Track all updates, new features, and improvements to the TW platform.
March 2024
Version 2.5.0 (March 15, 2024)
New Features
š Advanced Dataset Search
- Full-text search across datasets
- Filter by metadata and tags
- Saved search queries
- Export search results
const results = await api.datasets.search({
query: 'customer data',
filters: {
tags: ['production', 'analytics'],
created_after: '2024-01-01'
},
limit: 50
});
š Bulk Operations API
- Batch create, update, delete operations
- Transaction support
- Progress tracking
- Error handling improvements
š Custom Dashboard Templates
- Pre-built dashboard templates
- Customizable widgets
- Drag-and-drop builder
- Share templates with team
Improvements
⨠Reduced API response time by 30% ⨠Improved error messages with actionable suggestions ⨠Enhanced webhook retry logic ⨠Better documentation search relevance
Bug Fixes
š Fixed pagination issue in large datasets š Resolved webhook timeout errors š Fixed date formatting in exports š Corrected policy evaluation edge cases
Breaking Changes
ā ļø Deprecated dataset.rows.list() in favor of dataset.query()
ā ļø Minimum Node.js version increased to 16
Migration Guide:
// Old way (deprecated)
const rows = await dataset.rows.list({ limit: 100 });
// New way
const rows = await dataset.query({ limit: 100 });
Version 2.4.5 (March 8, 2024)
Improvements
⨠Added retry logic for failed integration syncs ⨠Improved SSO login performance ⨠Enhanced audit log filtering
Bug Fixes
š Fixed race condition in concurrent updates š Resolved CSV import encoding issues š Fixed timezone handling in scheduled tasks
February 2024
Version 2.4.0 (February 28, 2024)
New Features
š Policy Templates Library
- 20+ pre-built policy templates
- GDPR, HIPAA, SOC 2 compliance templates
- Customizable templates
- Template marketplace
š Advanced Filtering
- Complex query builder
- Visual filter editor
- Filter presets
- Filter sharing
š Export Enhancements
- Support for more formats (Parquet, Avro)
- Scheduled exports
- Compressed exports
- Custom export templates
Improvements
⨠40% faster dataset imports ⨠Improved mobile responsiveness ⨠Enhanced notification system ⨠Better error tracking
Bug Fixes
š Fixed memory leak in long-running queries š Resolved SSO redirect issues š Fixed duplicate webhook deliveries
Version 2.3.8 (February 20, 2024)
Improvements
⨠Added support for nested JSON in datasets ⨠Improved API documentation examples ⨠Enhanced team collaboration features
Bug Fixes
š Fixed API key generation edge case š Resolved email notification delays š Fixed dashboard widget refresh issues
Version 2.3.5 (February 10, 2024)
Improvements
⨠Added more integration providers ⨠Improved query performance for large datasets ⨠Enhanced security logging
Bug Fixes
š Fixed dataset deletion confirmation š Resolved billing calculation edge case š Fixed team member invitation emails
January 2024
Version 2.3.0 (January 25, 2024)
New Features
š Integration Marketplace
- Browse 100+ pre-built integrations
- One-click installation
- Community ratings and reviews
- Integration analytics
š Enhanced SDK
- TypeScript improvements
- Better error types
- Streaming support
- Connection pooling
// Streaming large datasets
const stream = api.datasets.createReadStream('dataset_id');
stream.on('data', (chunk) => processChunk(chunk));
stream.on('end', () => console.log('Complete'));
š Compliance Dashboard
- Real-time compliance status
- Automated compliance reports
- Policy violation alerts
- Audit trail visualization
Improvements
⨠Redesigned user interface ⨠Improved onboarding experience ⨠Faster search indexing ⨠Enhanced mobile app
Bug Fixes
š Fixed data type conversion issues š Resolved webhook signature validation š Fixed dashboard loading performance
Version 2.2.5 (January 15, 2024)
Improvements
⨠Added batch webhook delivery ⨠Improved error recovery ⨠Enhanced monitoring dashboards
Bug Fixes
š Fixed scheduled task timezone issues š Resolved API rate limit edge cases š Fixed export file encoding
December 2023
Version 2.2.0 (December 20, 2023)
New Features
š Real-time Collaboration
- See who's viewing datasets
- Live cursors and presence
- Real-time comments
- Activity feed
š Advanced Analytics
- Custom metrics builder
- Trend analysis
- Anomaly detection
- Predictive insights
š API v2 Beta
- GraphQL support
- Improved REST endpoints
- Better pagination
- Enhanced filtering
Improvements
⨠50% faster dashboard loading ⨠Improved cache efficiency ⨠Better error messages ⨠Enhanced documentation
Roadmap Preview
Coming soon in future releases:
Q2 2024
- AI-powered data insights
- Mobile apps (iOS & Android)
- Workflow automation builder
- Multi-cloud support
Q3 2024
- Advanced workflow builder
- Data marketplace
- Enhanced collaboration tools
- GraphQL API (GA)
See our complete Roadmap for more details.
Release Schedule
- Weekly: Bug fixes and minor improvements
- Monthly: New features and enhancements
- Quarterly: Major platform updates
Stay Informed
Subscribe to release notifications:
- Email updates
- RSS feed
- In-app notifications
- Webhook events
SDK Versions
| Language | Version | Release Date | |----------|---------|--------------| | JavaScript/TypeScript | 2.5.0 | March 15, 2024 | | Python | 2.5.0 | March 15, 2024 | | Ruby | 2.4.2 | February 28, 2024 | | Go | 2.4.2 | February 28, 2024 |
Upgrade Guide
See detailed upgrade guides for breaking changes:
Support Policy
- Latest version: Full support
- Previous major version: Security updates only
- Older versions: No longer supported
Feedback
Help us improve:
- Report bugs
- Request features
- Share feedback
- Rate releases
Learn More
- View Roadmap
- Read API Documentation
- Join Community Forum