You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG 4.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. vNEXT (in development)
  2. v0.8.0
  3. * Added support for SCRAM-SHA-1 and SCRAM-SHA-256 SASL mechanisms
  4. * Added MotdLineReceived event
  5. * Added topic events and state
  6. * Add utility method IrcClient.isChannel(String) to identify if a target is a channel or not
  7. * (Internal) Move event handlers into their own package
  8. v0.7.0
  9. * Fixed experimental API warnings when using IrcClient
  10. * IrcClients are now constructed using a DSL
  11. * Users of the library no longer need to care about the implementing class
  12. * Facilitates adding more options in the future without breaking existing implementations
  13. * SASL improvements
  14. * The enabled mechanisms can now be configured (in the SASL DSL)
  15. * Added support for EXTERNAL mechanism, disabled by default
  16. * Now attempts to renegotiate if the server doesn't recognise the SASL mechanism that was tried
  17. * Added UserNickChanged and corresponding ChannelNickChanged events
  18. * Added ServerConnectionError, raised when connecting to the server fails
  19. * (Internal) Minor version updates for Gradle, Kotlin and JUnit
  20. v0.6.0
  21. * Changed USER command to not send the server name, per modern standards
  22. * Added support for SASL authentication (with PLAIN mechanism)
  23. * Removed some unused test code
  24. * Fixed handling of user mode changes on channels (op/deop/etc)
  25. * Message extensions:
  26. * Added support for IRCv3 message tags v3.3
  27. * Exposed message IDs in MessageReceived and ActionReceived events
  28. * When sending a message you can now indicate what it is in reply to
  29. * Added sendTagMessage() to send message tags without any content
  30. * The reply() utility automatically marks messages as a reply
  31. * Added react() utility to send a reaction client tag
  32. * State is now reset when the client is disconnected, so you can immediately reconnect
  33. * (Internal) improved how coroutines and channels are used in LineBufferedSocket
  34. v0.5.0
  35. * Server state:
  36. * Added ServerConnecting and ServerDisconnected events
  37. * Server status now starts as Disconnected rather than Connecting
  38. * Improved error message when features are of an unexpected type
  39. * Channel modes:
  40. * CHANMODES feature is now stored as an array, not a single comma-separated string
  41. * Added ChanModeType enum, and method in ServerState to get the type of a mode
  42. * Added ModeChanged event, for user and channel mode changes and discovery
  43. * Added modes and modesDiscovered to ChannelState
  44. * Other new events:
  45. * Added MotdFinished event
  46. * Added UserAccountChanged event
  47. * Added ChannelUserKicked event
  48. * Added NoticeReceived event
  49. * Added CtcpReplyReceived event
  50. * Improved some documentation
  51. v0.4.0
  52. * Added CtcpReceived and ActionReceived events
  53. * Added sendCtcp and sendAction message builders
  54. * Fix issue with messages being sent out of order, which sometimes caused problems connecting to passworded servers
  55. * Added 'network' server feature
  56. * Added serverName field to ServerState
  57. v0.3.1
  58. * Added more documentation to public methods/classes
  59. * Fixed exception when sending multiple lines at once (e.g. when connecting!)
  60. v0.3.0
  61. * Simplified how messages are constructed.
  62. Instead of: client.send(joinMessage("#channel"))
  63. Now use: client.sendJoin("#channel")
  64. * Added reply utility to easily send replies to message events
  65. * Server state improvements:
  66. * Added status field to ServerState
  67. * ServerConnected event is emitted as soon as the socket is connected
  68. * ServerReady event is emitted after logging in, negotiating, etc
  69. * Added extra debugging to show what type of events are being dispatched
  70. * Added ChannelQuit event, raised for each channel a user is in when they quit
  71. * (Internal) Event handlers can now return more events to emit
  72. v0.2.1
  73. * Added documentation and reduced visibility of some internal methods/classes
  74. * (Internal) Enabled Travis, Codacy and Coveralls
  75. v0.2.0
  76. * Added support for connecting over TLS
  77. * Simplified how event handlers are registered
  78. * Improved use of coroutines so users don't have to worry about them
  79. * (Internal) Upgraded to Gradle 5.1.1