All Versions
39
Latest Version
Avg Release Cycle
88 days
Latest Release
2095 days ago
Changelog History
Page 4
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->saymethod. - ➕ 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
replyInThreadmethod 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
slackbotpackage.
- ➕ Added methods to set typing indicators
-
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
$thisscope 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).
- ➕ Added support for Slack slash commands. Just hear for the complete slash command
-
v1.2.1 Changes
➕ Added
- ➕ Added support for Microsoft Bot Framework Web Chat
-
v1.2.0 Changes
➕ Added
- ➕ Added the
SlackRTMDriverto make use of the Slack Realtime API. - ➕ Added a new
Messageclass to compose messages with images. - 👍 Image support is available for these drivers:
- Telegram
- Slack
- Microsoft Bot Framework
🔄 Changed
- Middleware classes now receive a third parameter
$regexMatchedinside theisMessageMatchingmethod. You can use this method to determine if the regular expression was also matched, in case you do not want to replace the completehearslogic, but only add custom logic to it. Note: This will require you to modify your custom middleware classes.
- ➕ Added the
-
v1.1.1 Changes
🔄 Changed
- 🛠 Fixed a bug where middleware
isMessageMatchingoffalsewould still match the message.
- 🛠 Fixed a bug where middleware
-
v1.1.0 Changes
➕ Added
- The
hearsmethod can now handleClassName@methodsyntax.
🔄 Changed
- 🛠 Fixed a bug in combination with middleware classes and regular expression matches
- The
-
v1.0.1 Changes
➕ Added
- ➕ Added
sendmethod to BotMan, to allow originating messages
🔄 Changed
- The
hearsregular expression now checks for the start of the string https://github.com/mpociot/botman/issues/52
🔄 Changed
- ➕ Added
-
v1.0.0 Changes
December 08, 2016- 🎉 Initial release