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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. vNEXT (in development)
  2. v0.10.1
  3. * Added NickChangeFailed event for when nicknames are in use, banned, etc
  4. * Added sendPart method
  5. * Fix occasional ConcurrentModificationException when adding state
  6. * (Internal) Moved message processors into their own package
  7. * (Internal) Added ExperimentalIrcClient interface for features not yet ready for release
  8. v0.10.0
  9. * Batch start and end events are no longer included in BatchReceived events
  10. * Batches now expose complete metadata from their start event
  11. * Added support for labelled-replies capability and label message tags
  12. * Added support for message-tags capability after it moved from draft
  13. * Added new methods for sending raw lines to the IRC server
  14. * send(tagMap(...), command, arguments) replaces send(line)
  15. * send(command, arguments) is available if no tags are to be sent
  16. * the line is built automatically (with spaces/' :' added appropriately)
  17. * send(line) is deprecated and will be removed after v1.0.0
  18. * Add 'alwaysEchoMessages' behaviour that makes it easier to deal with servers
  19. that don't support the echo message capability
  20. * Added TargetedEvent, a subclass of IrcEvent, for all events that are
  21. targeted to a user or channel
  22. * (Internal) Added annotation to track removal of deprecated methods
  23. * (Internal) Migrate unit tests to use Mockk instead of Mockito
  24. v0.9.0
  25. * Improve DSL for creating an IrcClient to allow parameters to be passed to server and profile
  26. e.g. IrcClient { server("irc.example.com", 6667) }
  27. * Add behaviour options
  28. * requestModesOnJoin - automatically sends a MODE request when joining a channel
  29. * Events now have a `metadata` property instead of a `time` (and time is available in metadata)
  30. * IrcEvent.time is now deprecated but will remain until after v1.0.0.
  31. * Metadata now contains the message ID, if any.
  32. * ActionReceived.messageId and MessageReceived.messageId are now deprecated, to be removed after v1.0.0.
  33. * Metadata now contains the event's batch ID, if any.
  34. * Added support for batches
  35. * All events in a batch are buffered until the batch is finished
  36. * The events are then published together in a single `BatchReceived` event
  37. * Added support for CHGHOST messages
  38. * (Internal) Improve performance when the MessageHandler is finding a processor for a message
  39. * (Internal) Introduced event mutators
  40. * Event mutators are now responsible for handling changing events in response to state
  41. e.g. ChannelFanOutMutator creates Channel* events for global quits/nick changes/etc
  42. * Event handlers now just handle events, and don't return anything
  43. v0.8.0
  44. * Added support for SCRAM-SHA-1 and SCRAM-SHA-256 SASL mechanisms
  45. * Added MotdLineReceived event
  46. * Added topic events and state
  47. * Add utility method IrcClient.isChannel(String) to identify if a target is a channel or not
  48. * (Internal) Move event handlers into their own package
  49. v0.7.0
  50. * Fixed experimental API warnings when using IrcClient
  51. * IrcClients are now constructed using a DSL
  52. * Users of the library no longer need to care about the implementing class
  53. * Facilitates adding more options in the future without breaking existing implementations
  54. * SASL improvements
  55. * The enabled mechanisms can now be configured (in the SASL DSL)
  56. * Added support for EXTERNAL mechanism, disabled by default
  57. * Now attempts to renegotiate if the server doesn't recognise the SASL mechanism that was tried
  58. * Added UserNickChanged and corresponding ChannelNickChanged events
  59. * Added ServerConnectionError, raised when connecting to the server fails
  60. * (Internal) Minor version updates for Gradle, Kotlin and JUnit
  61. v0.6.0
  62. * Changed USER command to not send the server name, per modern standards
  63. * Added support for SASL authentication (with PLAIN mechanism)
  64. * Removed some unused test code
  65. * Fixed handling of user mode changes on channels (op/deop/etc)
  66. * Message extensions:
  67. * Added support for IRCv3 message tags v3.3
  68. * Exposed message IDs in MessageReceived and ActionReceived events
  69. * When sending a message you can now indicate what it is in reply to
  70. * Added sendTagMessage() to send message tags without any content
  71. * The reply() utility automatically marks messages as a reply
  72. * Added react() utility to send a reaction client tag
  73. * State is now reset when the client is disconnected, so you can immediately reconnect
  74. * (Internal) improved how coroutines and channels are used in LineBufferedSocket
  75. v0.5.0
  76. * Server state:
  77. * Added ServerConnecting and ServerDisconnected events
  78. * Server status now starts as Disconnected rather than Connecting
  79. * Improved error message when features are of an unexpected type
  80. * Channel modes:
  81. * CHANMODES feature is now stored as an array, not a single comma-separated string
  82. * Added ChanModeType enum, and method in ServerState to get the type of a mode
  83. * Added ModeChanged event, for user and channel mode changes and discovery
  84. * Added modes and modesDiscovered to ChannelState
  85. * Other new events:
  86. * Added MotdFinished event
  87. * Added UserAccountChanged event
  88. * Added ChannelUserKicked event
  89. * Added NoticeReceived event
  90. * Added CtcpReplyReceived event
  91. * Improved some documentation
  92. v0.4.0
  93. * Added CtcpReceived and ActionReceived events
  94. * Added sendCtcp and sendAction message builders
  95. * Fix issue with messages being sent out of order, which sometimes caused problems connecting to passworded servers
  96. * Added 'network' server feature
  97. * Added serverName field to ServerState
  98. v0.3.1
  99. * Added more documentation to public methods/classes
  100. * Fixed exception when sending multiple lines at once (e.g. when connecting!)
  101. v0.3.0
  102. * Simplified how messages are constructed.
  103. Instead of: client.send(joinMessage("#channel"))
  104. Now use: client.sendJoin("#channel")
  105. * Added reply utility to easily send replies to message events
  106. * Server state improvements:
  107. * Added status field to ServerState
  108. * ServerConnected event is emitted as soon as the socket is connected
  109. * ServerReady event is emitted after logging in, negotiating, etc
  110. * Added extra debugging to show what type of events are being dispatched
  111. * Added ChannelQuit event, raised for each channel a user is in when they quit
  112. * (Internal) Event handlers can now return more events to emit
  113. v0.2.1
  114. * Added documentation and reduced visibility of some internal methods/classes
  115. * (Internal) Enabled Travis, Codacy and Coveralls
  116. v0.2.0
  117. * Added support for connecting over TLS
  118. * Simplified how event handlers are registered
  119. * Improved use of coroutines so users don't have to worry about them
  120. * (Internal) Upgraded to Gradle 5.1.1