Skip to content

Commit

Permalink
Version 0.83.0
Browse files Browse the repository at this point in the history
  • Loading branch information
noplanman committed May 25, 2024
1 parent 6804631 commit 596cc9c
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 10 deletions.
26 changes: 19 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,24 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c

## [Unreleased]
### Notes
- [:ledger: View file changes][Unreleased][:page_with_curl: DB migration script][unreleased-sql-migration]
- [:exclamation:][unreleased-bc-minimum-php-81] PHP 8.1+ required!
- [:ledger: View file changes][Unreleased]
### Added
### Changed
### Deprecated
### Removed
### Fixed
### Security

## [0.83.0] - 2024-05-25
### Notes
- [:ledger: View file changes][0.83.0][:page_with_curl: DB migration script][0.83.0-sql-migration]
- [:exclamation:][0.83.0-bc-minimum-php-81] PHP 8.1+ required!
- Last version with database support built in to the core.
### Added
- Bot API 7.0 (@noplanman, @TiiFuchs) (#1459)
- Bot API 7.1 (@noplanman)
- Bot API 7.1 (@noplanman) (#1465)
### Changed
- [:exclamation:][unreleased-bc-user-to-users] Various fields have been pluralised from "user" to "users".
- [:exclamation:][0.83.0-bc-user-to-users] Various fields have been pluralised from "user" to "users".
### Deprecated
### Removed
### Fixed
Expand Down Expand Up @@ -638,9 +649,9 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
### Deprecated
- Move `hideKeyboard` to `removeKeyboard`.

[unreleased-sql-migration]: https://github.com/php-telegram-bot/core/tree/develop/utils/db-schema-update/0.82.0-unreleased.sql
[unreleased-bc-unreleased-bc-minimum-php-81]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#minimum-php-81
[unreleased-bc-unreleased-bc-user-to-users]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#user-to-users
[0.83.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.82.0-0.83.0.sql
[0.83.0-bc-minimum-php-81]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#minimum-php-81
[0.83.0-bc-user-to-users]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#user-to-users
[0.82.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.81.0-0.82.0.sql
[0.81.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.80.0-0.81.0.sql
[0.80.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.79.0-0.80.0.sql
Expand Down Expand Up @@ -684,6 +695,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
[Tidelift]: https://tidelift.com/subscription/pkg/packagist-longman-telegram-bot?utm_source=packagist-longman-telegram-bot&utm_medium=referral&utm_campaign=changelog

[Unreleased]: https://github.com/php-telegram-bot/core/compare/master...develop
[0.83.0]: https://github.com/php-telegram-bot/core/compare/0.82.0...0.83.0
[0.82.0]: https://github.com/php-telegram-bot/core/compare/0.81.0...0.82.0
[0.81.0]: https://github.com/php-telegram-bot/core/compare/0.80.0...0.81.0
[0.80.0]: https://github.com/php-telegram-bot/core/compare/0.79.0...0.80.0
Expand Down
3 changes: 1 addition & 2 deletions src/Entities/Message.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@
* @link https://core.telegram.org/bots/api#message
*
* @method int getMessageId() Unique message identifier
* @method int getMessageThreadId() Optional. Unique identifier of a message thread to which the message belongs;
for supergroups only
* @method int getMessageThreadId() Optional. Unique identifier of a message thread to which the message belongs; for supergroups only
* @method User getFrom() Optional. Sender, can be empty for messages sent to channels
* @method Chat getSenderChat() Optional. Sender of the message, sent on behalf of a chat. The channel itself for channel messages. The supergroup itself for messages from anonymous group administrators. The linked channel for messages automatically forwarded to the discussion group
* @method int getSenderBoostCount() Optional. If the sender of the message boosted the chat, the number of boosts added by the user
Expand Down
2 changes: 1 addition & 1 deletion src/Telegram.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class Telegram
*
* @var string
*/
protected $version = '0.82.0';
protected $version = '0.83.0';

/**
* Telegram API key
Expand Down
File renamed without changes.

0 comments on commit 596cc9c

Please sign in to comment.