Go SDK Changelog
v1.2.0 - 2023-10-27
🚀 New Features
Added
New `CreateUser` method to the `AuthClient` for streamlined user creation.
Added
Support for asynchronous operations in the `DataClient` via new `GetDataAsync` function.
✨ Enhancements
Changed
Improved error handling and reporting for network issues.
Changed
Updated internal HTTP client to use the latest stable version for better performance.
🐛 Bug Fixes
Fixed
Resolved an issue where pagination parameters were not correctly applied in `ListResources`.
Fixed
Corrected a memory leak in the connection pooling mechanism.
v1.1.1 - 2023-09-15
🐛 Bug Fixes
Fixed
Addressed a critical vulnerability in the token validation logic.
Fixed
Fixed a panic when handling empty responses from certain API endpoints.
v1.1.0 - 2023-08-01
🚀 New Features
Added
Initial support for real-time data streams with the `StreamClient`.
Added
Enhanced logging capabilities with configurable verbosity levels.
✨ Enhancements
Changed
Refactored the API request building logic for increased clarity and maintainability.
🗑️ Removals
Removed
Deprecated `LegacyAuth` module, use `AuthClient` instead.
v1.0.0 - 2023-06-20
Initial stable release of the Go SDK.
🚀 New Features
Added
Core functionalities for interacting with the API, including Auth, Data, and Resource management.
Added
Comprehensive unit and integration tests.
Back to Top