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

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