Released: Apr 8, 2026
April 2026 での更新項目
機能
Keyzy C++ updated to v1.7.0
- Enhanced connection handling and error recovery .
- Refined the HTTP networking layer across all platforms.
- Platform-Native TLS (Zero OpenSSL Dependency on Linux)
- Reworked the networking layer to use each platform's native TLS implementation:
- macOS: Secure Transport.
- Windows: Schannel.
- Linux: mbedTLS.
- Simplified License Upgrade API
- Upgrading a license used to require passing both the source and target serial numbers. To help you write cleaner code with less boilerplate, the library now automatically uses the stored serial as the source.
- Before (v1.6.0): activator->upgradeLicense(sourceSerial, targetSerial);
- Now (v1.7.0): activator->upgradeLicense(targetSerial);
- Security Hardening
- Alongside the networking upgrades, multiple security hardening improvements have been applied throughout the core library to keep your integrations secure.