Skip to content

Tuoni Plugin SDK version changelog

Tuoni Plugin SDK is available from Maven Central. It is recommended to always use the latest version of the SDK and to keep an eye on the changes reported on this page.

Plugin SDK versions will follow Tuoni versions, but SDK release may be skipped when there are no changes on the SDK side. Most of the time, the Plugin SDK version will be release ahead of the Tuoni release.

SDK Versions

0.4.2

Released only for internal use.

0.5.0 (2024-06-14)

🎉 First public release of Tuoni Plugin SDK 🎉

0.6.0 (2024-10-02)

The following methods are now marked as deprecated and replaced with renamed methods. Deprecated methods will be removed in future versions.

  • AgentMetadata#os_major() - use osMajor() instead
  • AgentMetadata#os_minor() - use osMinor() instead
  • AgentMetadata.Builder#os_major(Byte) - use osMajor(Byte) instead
  • AgentMetadata.Builder#os_minor(Byte) - use osMinor(Byte) instead

The following interfaces have moved to new location (previous location is still present, but deprecated):

  • AgentInfo - moved to com.shelldot.tuoni.plugin.sdk.common package
  • ListenerInfo - moved to com.shelldot.tuoni.plugin.sdk.common package
  • AgentType - moved to com.shelldot.tuoni.plugin.sdk.common package

The following new methods are added:

  • AgentMetadata#ansiCodePage()
  • AgentMetadata.Builder#ansiCodePage(Integer)
  • AgentInfo#getType()