Releases: telepath-php/telepath
Bot API 6.7 (Version 0.14.2)
Since I had no chance of testing this release, I release the small fixes as beta.
What's Changed
- Bot API 6.7 by @github-actions in #32
Full Changelog: v0.14.1...v0.14.2-beta
Version 0.14.1
Changelog:
- Added missing return types to previously added API methods (@dodomedia)
Bot API 6.7 (Version 0.14.0)
See for API changes: https://core.telegram.org/bots/api-changelog#april-21-2023
Known issues:
- Some API methods may have no return type and may return an array instead of an object.
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
BeforeHandlingUpdateandAfterHandlingUpdateevents.
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
BotBuilderupdate
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
TelegramBotclass into newBotBuilderclass. -
Renamed
TelegramBotto simplyBot