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

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