Php Telegram Bot Core Versions Save

PHP Telegram Bot based on the official Telegram Bot API

0.82.0

5 months ago

Notes

Added

Fixed

  • Missing thumbnail_url renaming.
  • Fix broken exception handling (@mlocati) (#1425)

0.81.0

10 months ago

Notes

Added

Removed

Fixed

  • Fixed a bug where new incoming updates are not correctly passed to the Command object after the first time when getUpdates is used. (@uspilot) (#1384)

0.80.0

1 year ago

Notes

Added

Changed

  • :exclamation: Commands can now contain underscores (FooBarCommand is handled by /foo_bar). (@mlocati) (#1365)

0.79.0

1 year ago

Notes

Added

Removed

  • VoiceChatX entities, use VideoChatX entities instead.
  • all_members_are_administrators property from Message entity. Database column still exists, but may be removed in the future.
  • Request::getChatMembersCount(), use Request::getChatMemberCount() instead.
  • Request::kickChatMember(), use Request::banChatMember() instead.

0.78.0

1 year ago

Notes

Added

0.77.1

1 year ago

Notes

Fixed

  • PHP8+ mixed type hint removed

0.77.0

1 year ago

Notes

Added

Deprecated

  • Telegram changed voice_chat_X to video_chat_X. VoiceChatX event classes are deprecated, use new VideoChatX event classes instead.

Fixed

  • Return correct data in Entity::jsonSerialize (@TiiFuchs)

0.76.1

2 years ago

Notes

Fixed

  • Fix Entity serialising for Keyboards (@TiiFuchs) (#1304)

0.76.0

2 years ago

Notes

Added

  • Bot API 5.6 (@TiiFuchs) (#1275)
  • Bot API 5.7 (@TiiFuchs) (#1284)
  • PSR3 (psr/log) version 2 and 3 compatible (@noplanman) (#1287)
  • Entity implements and uses JsonSerializable now (@TiiFuchs)
  • Test with PHP 8.1 on Travis CI (@osavchenko) (#1291)

Changed

  • Bugfix: Fixed condition in \Longman\TelegramBot\Entities\Chat::isGroupChat() that previously also counted super groups and channels. (@TiiFuchs)

0.75.0

2 years ago

Notes

Added

Removed

  • :exclamation: Removed deprecated ChatAction:: RECORD_AUDIO and UPLOAD_AUDIO. Use RECORD_VOICE and UPLOAD_VOICE instead. (@TiiFuchs) (#1267)

Fixed