All Versions
39
Latest Version
Avg Release Cycle
88 days
Latest Release
1513 days ago
Changelog History
Page 3
Changelog History
Page 3
-
v2.0.2 Changes
➕ Added
- Drivers can have a method called
additionalDrivers
to simplify manual driver loading, when not using BotMan studio.
🛠 Fixed
- 🛠 Fixed matching middleware inside of conversations not receiving the manipulated
$message
object.
- Drivers can have a method called
-
v2.0.0 Changes
➕ Added
- ➕ Added ability to originate inline conversations.
- 🚚 Moved each driver into their own repository.
- 👍 Facebook - Added support to send file and audio attachments.
- 👍 Telegram - Added support to send file, audio and location attachments.
- ➕ Added Kik driver.
- ➕ Added custom Attachment classes.
- ➕ Added support to listen for message service events.
- 🔄 Changed the way middleware works in BotMan.
- ➕ Added support for Slack interactive menu messages.
- ➕ Added Facebook Referral driver.
- 👍 Allow replying to an existing thread for Slack drivers (#327).
- ➕ Added
loadDriver
method to BotMan. - ➕ Added ability to use BotMan with a local socket.
🔄 Changed
- Switched from plain text to JSON responses for Slack slash commands, to allow richer message formatting.
- 🚚 Moved message matching into a separate
Matcher
class.
✂ Removed
- ✂ Removed
FacebookPostbackDriver
,FacebookOptinDriver
andFacebookReferralDriver
in favor of the new event API.
-
v1.5.6 Changes
🛠 Fixed
Custom drivers now get loaded first.
-
v1.5.5 Changes
🛠 Fixed
🛠 Fix botframework not using shorthand closing tags (#345)
-
v1.5.4 Changes
🛠 Fixed
🛠 Fix error when originating MS Bot Framework messages - fixes (#324)
-
v1.5.3 Changes
🛠 Fixed
🛠 Fixed an issue with the SlackRTM driver in combination with regular file uploads (#323)
-
v1.5.2 Changes
🔄 Changed
- ➕ Added unicode support
- ➕ Added support for Telegram voice messages
-
v1.5.1 Changes
🔄 Changed
- ➕ Additional parameters for
say
,reply
andask
methods now recursively merge the parameters.
- ➕ Additional parameters for
-
v1.5.0 Changes
➕ Added
- ➕ Added
askForImages
,askForVideos
,askForAudio
,askForLocation
. - ➕ Added support for receiving images, videos, audio files and locations.
- ➕ Added
sendRequest
method to perform low-level driver API requests. - 👍 Allow regular expressions in API.ai middleware
- ➕ Added fake driver for testing
- 👍 Allow typing indicators for Slack RTM driver
🔄 Changed
- Cache API.ai calls
- Cache Wit.AI calls
- ➕ Added
-
v1.4.1 Changes
➕ Added
- ➕ Added on-the-fly mini-conversations using
$botman->ask($question, Closure $next, $additionalParameters = [])
. - ➕ Added ability to either temporarily skip conversations or completely stop them using the
skipConversation
andstopConversation
methods on the conversation object. - ➕ Added a
ShouldQueue
interface that your Conversation classes should use if you want to store / serialize them in queues. - ➕ Added
filePath()
method to the Message class. (SlackRTM support only)
🔄 Changed
- FacebookDriver now returns user first + lastname
- 🛠 Fixed a bug with Windows + cash file names (#200)
- 🛠 Fixed a bug with fluent middleware syntax (#203)
- 🛠 Fixed a bug with multiple middlewares (#209)
- ➕ Added on-the-fly mini-conversations using