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.5KB

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