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

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