Skip to content

Releases: telepath-php/telepath

Bot API 6.7 (Version 0.14.2)

18 Jul 08:32

Choose a tag to compare

Pre-release

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

21 Apr 13:13

Choose a tag to compare

Changelog:

  • Added missing return types to previously added API methods (@dodomedia)

Bot API 6.7 (Version 0.14.0)

21 Apr 11:45

Choose a tag to compare

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

24 Mar 19:49

Choose a tag to compare

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 and AfterHandlingUpdate 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. (⚠️ This only works if any middleware passes the return value through.)

Version 0.12.1

23 Mar 21:36

Choose a tag to compare

Changelog:

  • On webhooks: Don't crash on TelegramException. Write to log, if available instead.

Version 0.12.0 beta 3

23 Mar 20:36

Choose a tag to compare

Changelog:

  • Fixes telepathy binary

Version 0.12.0

23 Mar 20:40

Choose a tag to compare

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

22 Mar 20:16

Choose a tag to compare

Changelog:

  • Fixed a bug in the new type filter

Version 0.12.0 Beta

22 Mar 20:02

Choose a tag to compare

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

11 Mar 20:08

Choose a tag to compare

Changelog:

  • Pulled out configuration methods from TelegramBot class into new BotBuilder class.

  • Renamed TelegramBot to simply Bot