Skip to content

Commit 596cc9c

Browse files
committed
Version 0.83.0
1 parent 6804631 commit 596cc9c

File tree

4 files changed

+21
-10
lines changed

4 files changed

+21
-10
lines changed

CHANGELOG.md

+19-7
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,24 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
55

66
## [Unreleased]
77
### Notes
8-
- [:ledger: View file changes][Unreleased][:page_with_curl: DB migration script][unreleased-sql-migration]
9-
- [:exclamation:][unreleased-bc-minimum-php-81] PHP 8.1+ required!
8+
- [:ledger: View file changes][Unreleased]
9+
### Added
10+
### Changed
11+
### Deprecated
12+
### Removed
13+
### Fixed
14+
### Security
15+
16+
## [0.83.0] - 2024-05-25
17+
### Notes
18+
- [:ledger: View file changes][0.83.0][:page_with_curl: DB migration script][0.83.0-sql-migration]
19+
- [:exclamation:][0.83.0-bc-minimum-php-81] PHP 8.1+ required!
20+
- Last version with database support built in to the core.
1021
### Added
1122
- Bot API 7.0 (@noplanman, @TiiFuchs) (#1459)
12-
- Bot API 7.1 (@noplanman)
23+
- Bot API 7.1 (@noplanman) (#1465)
1324
### Changed
14-
- [:exclamation:][unreleased-bc-user-to-users] Various fields have been pluralised from "user" to "users".
25+
- [:exclamation:][0.83.0-bc-user-to-users] Various fields have been pluralised from "user" to "users".
1526
### Deprecated
1627
### Removed
1728
### Fixed
@@ -638,9 +649,9 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
638649
### Deprecated
639650
- Move `hideKeyboard` to `removeKeyboard`.
640651

641-
[unreleased-sql-migration]: https://github.com/php-telegram-bot/core/tree/develop/utils/db-schema-update/0.82.0-unreleased.sql
642-
[unreleased-bc-unreleased-bc-minimum-php-81]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#minimum-php-81
643-
[unreleased-bc-unreleased-bc-user-to-users]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#user-to-users
652+
[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
653+
[0.83.0-bc-minimum-php-81]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#minimum-php-81
654+
[0.83.0-bc-user-to-users]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#user-to-users
644655
[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
645656
[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
646657
[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
@@ -684,6 +695,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
684695
[Tidelift]: https://tidelift.com/subscription/pkg/packagist-longman-telegram-bot?utm_source=packagist-longman-telegram-bot&utm_medium=referral&utm_campaign=changelog
685696

686697
[Unreleased]: https://github.com/php-telegram-bot/core/compare/master...develop
698+
[0.83.0]: https://github.com/php-telegram-bot/core/compare/0.82.0...0.83.0
687699
[0.82.0]: https://github.com/php-telegram-bot/core/compare/0.81.0...0.82.0
688700
[0.81.0]: https://github.com/php-telegram-bot/core/compare/0.80.0...0.81.0
689701
[0.80.0]: https://github.com/php-telegram-bot/core/compare/0.79.0...0.80.0

src/Entities/Message.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@
3838
* @link https://core.telegram.org/bots/api#message
3939
*
4040
* @method int getMessageId() Unique message identifier
41-
* @method int getMessageThreadId() Optional. Unique identifier of a message thread to which the message belongs;
42-
for supergroups only
41+
* @method int getMessageThreadId() Optional. Unique identifier of a message thread to which the message belongs; for supergroups only
4342
* @method User getFrom() Optional. Sender, can be empty for messages sent to channels
4443
* @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
4544
* @method int getSenderBoostCount() Optional. If the sender of the message boosted the chat, the number of boosts added by the user

src/Telegram.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class Telegram
3737
*
3838
* @var string
3939
*/
40-
protected $version = '0.82.0';
40+
protected $version = '0.83.0';
4141

4242
/**
4343
* Telegram API key

0 commit comments

Comments
 (0)