All Versions
39
Latest Version
Avg Release Cycle
88 days
Latest Release
1295 days ago

Changelog History
Page 4

  • v1.4.0 Changes

    ➕ Added

    • ➕ Added methods to set typing indicators $botman->types() and $botman->typesAndWaits(2);.
    • ➕ Added api.ai middleware.
    • ➕ Added additional parameters to $botman->say method.
    • ➕ Added ability to load command-specific middleware: php $bot->hears('foo', function($bot){})->middleware(new TestMiddleware());
    • ➕ Added ability to listen only on specific drivers or channels.
    • ➕ Added repeat() method to conversation objects to repeat the last asked question.
    • 📄 [SlackDriver, SlackRTMDriver] added replyInThread method for Slacks new threaded messaging feature.
    • ➕ Added video message to Facebook, BotFramework and Telegram drivers.
    • ➕ Added Facebook template support.
    • ➕ Added $botman->getUser() method to retrieve general user information.

    🔄 Changed

    • 🛠 Fixed an error that occured when responding to the Facebook driver with thumbs up.
    • 🛠 Fixed SlackRTM driver to respond using the RTM API (Fixes issues #99 and #67).
    • 🚚 Moved listening to Facebook Postback payloads into a separate driver (FacebookPostbackDriver) so it does not interfere with normal user text
    • Correctly handle Skype group chats #128
    • 🛰 Telegram - Fixed empty button callback payload #138
    • 🛠 Telegram - Fixed questions not working when the message type is an entity (url, email, etc) #139
    • The MiddlewareInterface now uses the DriverInterface instead of the abstract Driver class

    ✂ Removed

    • ✂ Removed ability to only listen to direct messages / public channels as this was a relic of the old slackbot package.
  • v1.3.0 Changes

    ➕ Added

    • ➕ Added WeChat messaging driver.
    • ➕ Added BotMan state methods to store user, channel or driver related data.
      • $botman->userStorage()
      • $botman->channelStorage()
      • $botman->driverStorage()

    🔄 Changed

    • 👮 Forced opis/closure $this scope serialization.
  • v1.2.2 Changes

    ➕ Added

    • ➕ Added support for Slack slash commands. Just hear for the complete slash command $bot->hears('/command foo', ....

    🔄 Changed

    • 🛠 Fixed an error when trying to originate a message using a specific driver name (Issue #70).
  • v1.2.1 Changes

    ➕ Added

    • ➕ Added support for Microsoft Bot Framework Web Chat
  • v1.2.0 Changes

    ➕ Added

    • ➕ Added the SlackRTMDriver to make use of the Slack Realtime API.
    • ➕ Added a new Message class to compose messages with images.
    • 👍 Image support is available for these drivers:
      • Facebook
      • Telegram
      • Slack
      • Microsoft Bot Framework

    🔄 Changed

    • Middleware classes now receive a third parameter $regexMatched inside the isMessageMatching method. You can use this method to determine if the regular expression was also matched, in case you do not want to replace the complete hears logic, but only add custom logic to it. Note: This will require you to modify your custom middleware classes.
  • v1.1.1 Changes

    🔄 Changed

    • 🛠 Fixed a bug where middleware isMessageMatching of false would still match the message.
  • v1.1.0 Changes

    ➕ Added

    • The hears method can now handle ClassName@method syntax.

    🔄 Changed

    • 🛠 Fixed a bug in combination with middleware classes and regular expression matches
  • v1.0.1 Changes

    ➕ Added

    • ➕ Added send method to BotMan, to allow originating messages

    🔄 Changed

    🔄 Changed

  • v1.0.0 Changes

    December 08, 2016
    • 🎉 Initial release