Skip to content

Commit 4cc9043

Browse files
committedJun 26, 2019
Fix and update changelog with correct PR references, till version 0.50.0.
1 parent ac4c506 commit 4cc9043

File tree

1 file changed

+47
-45
lines changed

1 file changed

+47
-45
lines changed
 

‎CHANGELOG.md

+47-45
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,28 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
44
Exclamation symbols (:exclamation:) note something of importance e.g. breaking changes. Click them to learn more.
55

66
## [Unreleased]
7-
### Added
8-
- New funding and support details.
7+
:exclamation: After updating to this version, you will need to execute the [SQL migration script][unreleased-sql-migration] on your database.### Added
8+
- New funding and support details. (#971)
99
- Custom issue templates. (#972)
10-
- Bot API 4.3 (Seamless Telegram Login, `LoginUrl`)
11-
- `reply_markup` field to `Message` entity.
10+
- Bot API 4.3 (Seamless Telegram Login, `LoginUrl`) (#957)
11+
- `reply_markup` field to `Message` entity. (#957)
1212
### Changed
13-
- Use PSR-12 for code style.
13+
- Use PSR-12 for code style. (#966)
1414
- Some general housekeeping. (#972)
15-
- [:exclamation:][unreleased-bc] Return an empty array for Entity properties with no items, instead of `null`. (#969)
16-
- `TelegramLog` now adheres to [PSR-3] `LoggerInterface` and allows custom logger implementations.
15+
- [:exclamation:][unreleased-bc-return-value-of-empty-entity-properties] Return an empty array for Entity properties with no items, instead of `null`. (#969)
16+
- `TelegramLog` now adheres to [PSR-3] `LoggerInterface` and allows custom logger implementations. (#964)
1717
### Deprecated
18-
- Old logging that uses Monolog still works but will be removed in the near future. Use `TelegramLog::initialize($logger, $update_logger);` from now on.
19-
- [:exclamation:][unreleased-bc-startcommand-is-now-a-usercommand] `StartCommand` is now a `UserCommand` (not `SystemCommand` any more).
18+
- Old logging that uses Monolog still works but will be removed in the near future. Use `TelegramLog::initialize($logger, $update_logger);` from now on. (#964)
19+
- [:exclamation:][unreleased-bc-startcommand-is-now-a-usercommand] `StartCommand` is now a `UserCommand` (not `SystemCommand` any more). (#970)
2020
### Removed
21-
- Botan.io integration completely removed.
21+
- Botan.io integration completely removed. (#968)
2222
### Fixed
23-
- `forward_date` is now correctly saved to the DB.
24-
- Broken `StickerSet::getStickers()` method.
23+
- `forward_date` is now correctly saved to the DB. (#967)
24+
- Broken `StickerSet::getStickers()` method. (#969)
25+
- Smaller code and docblock fixes. (#973)
2526
### Security
26-
- Security disclosure managed by Tidelift.
27-
- Don't allow a user to call system commands directly.
27+
- Security disclosure managed by Tidelift. (#971)
28+
- Don't allow a user to call system commands directly. (#970)
2829

2930
## [0.57.0] - 2019-06-01
3031
:exclamation: After updating to this version, you will need to execute the [SQL migration script][0.57.0-sql-migration] on your database.
@@ -56,69 +57,73 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
5657

5758
## [0.55.1] - 2019-01-06
5859
### Added
59-
- Add missing `Request::editMessageMedia()` and `CallbackQuery::getChatInstance()` methods.
60+
- Add missing `Request::editMessageMedia()` and `CallbackQuery::getChatInstance()` methods. (#916)
6061
### Fixed
61-
- Return correct message type.
62+
- Return correct message type. (#913)
6263

6364
## [0.55.0] - 2018-12-20
6465
:exclamation: After updating to this version, you will need to execute the [SQL migration script][0.55.0-sql-migration] on your database.
6566
### Added
66-
- Bot API 4.0 and 4.1 (Telegram Passport)
67-
- Test PHP 7.3 with Travis.
67+
- Bot API 4.0 and 4.1 (Telegram Passport) (#870, #871)
68+
- Test PHP 7.3 with Travis. (#903)
6869
### Changed
6970
- [:exclamation:][0.55.0-bc-move-animation-out-of-games-namespace] Move Animation entity out of Games namespace.
7071
### Fixed
7172
- Added missing `video_note` to `Message` types.
7273

7374
## [0.54.1] - 2018-10-23
7475
### Fixed
75-
- `sendToActiveChats` now works correctly for any valid Request action.
76+
- `sendToActiveChats` now works correctly for any valid Request action. (#898)
7677

7778
## [0.54.0] - 2018-07-21
7879
:exclamation: After updating to this version, you will need to execute the [SQL migration script][0.54.0-sql-migration] on your database.
7980
### Added
80-
- `ChatAction` class to simplify chat action selection.
81-
- Telegram Games platform!
82-
- Ability to set custom MySQL port.
81+
- `ChatAction` class to simplify chat action selection. (#859)
82+
- Telegram Games platform! (#732)
83+
- Ability to set custom MySQL port. (#860)
84+
- New `InvalidBotTokenException` exception. (#855)
8385
### Changed
84-
- [:exclamation:][0.54.0-bc-rename-constants] Rename and ensure no redefinition of constants: `BASE_PATH` -> `TB_BASE_PATH`, `BASE_COMMANDS_PATH` -> `TB_BASE_COMMANDS_PATH`.
86+
- [:exclamation:][0.54.0-bc-rename-constants] Rename and ensure no redefinition of constants: `BASE_PATH` -> `TB_BASE_PATH`, `BASE_COMMANDS_PATH` -> `TB_BASE_COMMANDS_PATH`. (#813)
87+
- Improve readability of readme code snippets. (#861)
88+
### Fixed
89+
- Response from `getStickerSet`. (#838)
8590

8691
## [0.53.0] - 2018-04-01
8792
:exclamation: After updating to this version, you will need to execute the [SQL migration script][0.53.0-sql-migration] on your database.
8893
### Added
89-
- Implemented new changes for Bot API 3.6 (streamable InputMediaVideo, connected website).
90-
- `Telegram::getLastUpdateId()` method, returns ID of the last update that was processed.
91-
- `Telegram::useGetUpdatesWithoutDatabase()` method, enables `Telegram::handleGetUpdates()` to run without a database.
94+
- Implemented new changes for Bot API 3.6 (streamable InputMediaVideo, connected website). (#799)
95+
- `Telegram::getLastUpdateId()` method, returns ID of the last update that was processed. (#767)
96+
- `Telegram::useGetUpdatesWithoutDatabase()` method, enables `Telegram::handleGetUpdates()` to run without a database. (#767)
9297
### Changed
93-
- Updated Travis to use Trusty containers (for HHVM) and add PHP 7.2 to the tests.
94-
- Add debug log entry instead of throwing an exception for duplicate updates.
95-
- `Telegram::handleGetUpdates()` can now work without a database connection (not enabled by default).
96-
- Improved `/sendtochannel` and `/sendtoall` commands, using new message helpers.
98+
- Updated Travis to use Trusty containers (for HHVM) and add PHP 7.2 to the tests. (#739)
99+
- Add debug log entry instead of throwing an exception for duplicate updates. (#765)
100+
- `Telegram::handleGetUpdates()` can now work without a database connection (not enabled by default). (#767)
101+
- Improved `/sendtochannel` and `/sendtoall` commands, using new message helpers. (#810)
97102
### Fixed
98-
- PHPCS fixes for updated CodeSniffer dependency.
99-
- Send messages correctly via `/sendtochannel`.
103+
- PHPCS fixes for updated CodeSniffer dependency. (#739)
104+
- Send messages correctly via `/sendtochannel`. (#803)
100105

101106
## [0.52.0] - 2018-01-07
102107
### Fixed
103-
- Entity relations and wrong types for payments.
104-
- Allow empty string for `switch_inline_query` and `switch_inline_query_current_chat` (InlineKeyboardButton).
105-
- Fix empty date entry for User and Chat entities, using the current timestamp instead.
108+
- Entity relations and wrong types for payments. (#731)
109+
- Allow empty string for `switch_inline_query` and `switch_inline_query_current_chat` (InlineKeyboardButton). (#736)
110+
- Fix empty date entry for User and Chat entities, using the current timestamp instead. (#738)
106111

107112
## [0.51.0] - 2017-12-05
108113
:exclamation: After updating to this version, you will need to execute the [SQL migration script][0.51.0-sql-migration] on your database.
109114
### Added
110-
- Implemented new changes for Bot API 3.5 (InputMedia, MediaGroup).
115+
- Implemented new changes for Bot API 3.5 (InputMedia, MediaGroup). (#718)
111116

112117
## [0.50.0] - 2017-10-17
113118
### Added
114-
- Finish implementing payments, adding all missing type checks and docblock methods.
115-
- Implemented new changes for Bot API 3.4 (Live Locations).
119+
- Finish implementing payments, adding all missing type checks and docblock methods. (#647)
120+
- Implemented new changes for Bot API 3.4 (Live Locations). (#675)
116121
### Changed
117-
- [:exclamation:][0.50.0-bc-messagegetcommand-return-value] `Message::getCommand()` returns `null` if not a command, instead of `false`.
122+
- [:exclamation:][0.50.0-bc-messagegetcommand-return-value] `Message::getCommand()` returns `null` if not a command, instead of `false`. (#654)
118123
### Fixed
119124
- SQL update script for version 0.44.1-0.45.0.
120-
- Issues found by Scrutinizer (Type hints and return values).
121-
- Check inline keyboard button parameter value correctly.
125+
- Issues found by Scrutinizer (Type hints and return values). (#654)
126+
- Check inline keyboard button parameter value correctly. (#672)
122127

123128
## [0.49.0] - 2017-09-17
124129
### Added
@@ -277,11 +282,8 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
277282
- Move `hideKeyboard` to `removeKeyboard`.
278283

279284
[unreleased-sql-migration]: https://github.com/php-telegram-bot/core/tree/develop/utils/db-schema-update/unreleased.sql
280-
<<<<<<< HEAD
285+
[unreleased-bc-return-value-of-empty-entity-properties]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility##return-value-of-empty-entity-properties
281286
[unreleased-bc-startcommand-is-now-a-usercommand]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#startcommand-is-now-a-usercommand
282-
=======
283-
[unreleased-bc]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#unreleased
284-
>>>>>>> upstream/develop
285287
[0.57.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.56.0-0.57.0.sql
286288
[0.55.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.54.1-0.55.0.sql
287289
[0.55.0-bc-move-animation-out-of-games-namespace]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#move-animation-out-of-games-namespace

0 commit comments

Comments
 (0)