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 3.9KB

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