Skip to content
This repository has been archived by the owner on Mar 12, 2020. It is now read-only.

Releases: phergie/phergie-irc-bot-react

2.1.2

19 Dec 15:50
17745ef
Compare
Choose a tag to compare

2.1.1

15 Jan 16:41
4608377
Compare
Choose a tag to compare

2.1.0

07 Mar 18:47
Compare
Choose a tag to compare
  • Add Autorun argument

Thanks to @WyriHaximus for the Autorun PR!

2.0.0

21 Dec 22:17
Compare
Choose a tag to compare
  • Drop Support for PHP 5.4
  • Minimum Supported PHP Version 5.5
  • Updated to use new development package instead of individual dev dependencies.
  • Updated to use version 3 of phergie/phergie-irc-client-react
  • Added .php_cs file for coding standards
  • Added .editorconfig to reinforce code standards / styles.
  • Added .gitattributes to slim down what users pull down (no tests, misc files)

1.3.0

16 Jul 17:22
Compare
Choose a tag to compare
  • Made the $mode parameter of EventQueue->ircMode() optional to support mode queries per RFC 2812 (@rpasing)

1.2.0

10 Jun 13:20
Compare
Choose a tag to compare

1.1.0

04 Apr 15:14
Compare
Choose a tag to compare
  • Issues with iteration of the event queue causing it to be emptied and use of multiple connections causing incorrect routing of events were fixed; see upgrade notes below for more details (@Renegade334, @PSchwisow, @elazar, h/t @weierophinney)
  • The Composer configuration now allows for the latest available version of Monolog between 1.6 and 2.0 to be used (@hason)
  • The Travis CI configuraton now include PHP 7 nightly builds (@PSchwisow)
  • The default plugin processors for Bot now include ClientInjector, which injects the ClientInterface instance used by the bot into any plugins implementing ClientAwareInterface to support things like re-connecting when a connection is terminated (@hashworks)
  • AbstractPlugin now has an escapeParam() method for handling newline and null bytes that may be contained in values intended to be used as IRC command parameters (@sitedyno)
  • Legacy @license docblock tags inconsistent with the actual license were updated (@Renegade334)
  • The non-standard PROTOCTL command, which is supported by several major servers, is now supported (@Renegade334)

Upgrade Notes

This release introduces a few minor BC breaks that may affect a small number of users.

If you are using a custom EventQueueInterface implementation:

  • EventQueueInterface now implements \IteratorAggregate instead of \Iterator
  • Note that your implementation can no longer be directly injected into Bot using configuration. Instead, you must create an implementation of EventQueueFactoryInterface that returns instances of your EventQueueInterface implementation and inject the former using the new 'eventQueueFactory' configuration setting. This change was made to facilitate use of a separate event queue per connection in order to correctly route outgoing events when multiple connections are in use.

Also, note that the default EventQueueInterface implementation, EventQueue, no longer extends \SplPriorityQueue directly. This change was made to fix an issue with iteration of the event queue causing it to be emptied.

1.0.0

13 Dec 16:24
Compare
Choose a tag to compare