Skip to content

Commit fb0f340

Browse files
committed
Version 0.63.0
1 parent f895e74 commit fb0f340

File tree

3 files changed

+23
-15
lines changed

3 files changed

+23
-15
lines changed

CHANGELOG.md

Lines changed: 22 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,32 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
55

66
## [Unreleased]
77
### Notes
8-
- [:ledger: View file changes][Unreleased]
98
### Added
10-
- New method `setUpdateFilter($callback)` used to filter `processUpdate(Update $update)` calls. If `$callback` returns `false` the update isn't processed and an empty falsey `ServerResponse` is returned. (@VRciF)
11-
- Replaced 'generic' and 'genericmessage' strings with Telegram::GENERIC_COMMAND and Telegram::GENERIC_MESSAGE_COMMAND constants (@1int)
12-
- Bot API 4.8 (Extra Poll and Dice features).
13-
- Allow custom MySQL port to be defined for tests.
14-
- New static method `Entity::escapeMarkdownV2` for MarkdownV2.
15-
- Remove bot token from debug http logs, this can be disabled by setting `TelegramLog::$remove_bot_token` parameter to `false`
16-
- `TelegramLog::$always_log_request_and_response` parameter to force output of the request and response data to the debug log, also for successful requests
17-
- Bot API 4.9 (New `via_bot` field).
189
### Changed
19-
- [:exclamation:][unreleased-bc-static-method-entityescapemarkdown] Made `Entity::escapeMarkdown` static, to not require an `Entity` object.
20-
- Allow custom namespacing for commands. (@Jonybang)
2110
### Deprecated
2211
### Removed
2312
### Fixed
24-
- Primary key for `poll_answer` also requires the `user_id`.
25-
- Small SQL foreign key fixes.
2613
### Security
2714

15+
## [0.63.0] - 2020-06-17
16+
### Notes
17+
- [:ledger: View file changes][0.63.0][:page_with_curl: DB migration script][0.63.0-sql-migration]
18+
### Added
19+
- New method `setUpdateFilter($callback)` used to filter `processUpdate(Update $update)` calls. If `$callback` returns `false` the update isn't processed and an empty falsey `ServerResponse` is returned. (@VRciF) (#1045)
20+
- Replaced 'generic' and 'genericmessage' strings with Telegram::GENERIC_COMMAND and Telegram::GENERIC_MESSAGE_COMMAND constants. (@1int) (#1074)
21+
- Bot API 4.8 (Extra Poll and Dice features). (#1082)
22+
- Allow custom MySQL port to be defined for tests. (#1090)
23+
- New static method `Entity::escapeMarkdownV2` for MarkdownV2. (#1094)
24+
- Remove bot token from debug http logs, this can be disabled by setting `TelegramLog::$remove_bot_token` parameter to `false`. (@jacklul) (#1095)
25+
- `TelegramLog::$always_log_request_and_response` parameter to force output of the request and response data to the debug log, also for successful requests. (#1089)
26+
- Bot API 4.9 (New `via_bot` field). (#1112)
27+
### Changed
28+
- [:exclamation:][0.63.0-bc-static-method-entityescapemarkdown] Made `Entity::escapeMarkdown` static, to not require an `Entity` object. (#1094)
29+
- Allow custom namespacing for commands. (@Jonybang) (#689)
30+
### Fixed
31+
- Primary key for `poll_answer` also requires the `user_id`. (#1087)
32+
- Small SQL foreign key fixes. (#1105)
33+
2834
## [0.62.0] - 2020-04-08
2935
### Notes
3036
- [:ledger: View file changes][0.62.0][:page_with_curl: DB migration script][0.62.0-sql-migration]
@@ -443,7 +449,8 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
443449
### Deprecated
444450
- Move `hideKeyboard` to `removeKeyboard`.
445451

446-
[unreleased-bc-static-method-entityescapemarkdown]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#static-method-entityescapemarkdown
452+
[0.63.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.62.0-0.63.0.sql
453+
[0.63.0-bc-static-method-entityescapemarkdown]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#static-method-entityescapemarkdown
447454
[0.62.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.61.1-0.62.0.sql
448455
[0.61.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.60.0-0.61.0.sql
449456
[0.61.0-bc-remove-monolog-from-core]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#remove-monolog-from-core
@@ -472,6 +479,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
472479
[Tidelift]: https://tidelift.com/subscription/pkg/packagist-longman-telegram-bot?utm_source=packagist-longman-telegram-bot&utm_medium=referral&utm_campaign=changelog
473480

474481
[Unreleased]: https://github.com/php-telegram-bot/core/compare/master...develop
482+
[0.63.0]: https://github.com/php-telegram-bot/core/compare/0.62.0...0.63.0
475483
[0.62.0]: https://github.com/php-telegram-bot/core/compare/0.61.1...0.62.0
476484
[0.61.1]: https://github.com/php-telegram-bot/core/compare/0.61.0...0.61.1
477485
[0.61.0]: https://github.com/php-telegram-bot/core/compare/0.60.0...0.61.0

src/Telegram.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class Telegram
3434
*
3535
* @var string
3636
*/
37-
protected $version = '0.62.0';
37+
protected $version = '0.63.0';
3838

3939
/**
4040
* Telegram API key

0 commit comments

Comments
 (0)