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

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