Changelog¶
This page keeps a detailed human friendly rendering of what’s new and changed in specific versions.
v2.0.2¶
Bug Fixes¶
Fix a bug with retrieving the private ip.
v2.0.1¶
Bug Fixes¶
Fix failing to get private IP address on macos.
v2.0.0¶
Breaking Changes¶
Remove the
AsyncSonyflakeclass. All functionality is now consolidated into theSonyflakeclass.Remove the
idattribute from theDecomposedSonyflakeclass, as it was unnecessary — the structure is intended to represent only the individual components of the ID.
New Features¶
Add
Sonyflake.next_id_async()method to theSonyflakeclass for asynchronous ID generation.Add new exception
MachineIDCheckFailurefor explicit machine ID validation failure handling.
Miscellaneous¶
Update documentation to reflect the new API.
Improve error messages throughout the library for better clarity and debugging.
Expand and improve examples to cover all supported methods of the
Sonyflakeclass.
v1.1.0¶
New Features¶
Add support for multithreaded async environments in
AsyncSonyflake.
Miscellaneous¶
Fix documentation for correctness and remove unnecessary content.
v1.0.0¶
Initial Release