Releases: telepath-php/telepath
Releases · telepath-php/telepath
Version 0.13.0
Changelog:
- Added auto-wiring on Handler methods so there is no need to fetch the bot instance via the constructor anymore
- Added support for PSR-14 Event Dispatcher so you can listen to the new
BeforeHandlingUpdate
andAfterHandlingUpdate
events.
The BeforeHandlingUpdate
event contains the incoming Update
. If you manipulate the Update
here it gets send to the responsible Handler
.
The AfterHandlingUpdate
event contains the handled Update
(with all its modifications) and the return value (if any) of your Handler
. (
Version 0.12.1
Changelog:
- On webhooks: Don't crash on
TelegramException
. Write to log, if available instead.
Version 0.12.0 beta 3
Changelog:
- Fixes telepathy binary
Version 0.12.0
Changelog:
- The usual typos in comments from the API documentation
- Added missing MessageTypes from previous API updates
- Fixed a bug in the new Type filter
- Fixed telepathy binary, that was unusable since the
BotBuilder
update
Version 0.12.0 Beta 2
Changelog:
- Fixed a bug in the new type filter
Version 0.12.0 Beta
Changelog:
Apart from the usual typos in descriptions from the API documentation:
- ➕ We added the MessageTypes that were missing from previous API updates
Version 0.11.0
Changelog:
-
Pulled out configuration methods from
TelegramBot
class into newBotBuilder
class. -
Renamed
TelegramBot
to simplyBot
Bot API 6.6 (March 9, 2023) / Version 0.10.0
See https://core.telegram.org/bots/api#march-9-2023 for changes of the Telegram API.
Version 0.9.3
Changelog:
- Added parameter to constructor for quicker configuration of Cache or Logger
Version 0.9.2
Changelog:
- Added Logging abilities