You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,14 +7,16 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
7
7
### Notes
8
8
-[:ledger: View file changes][Unreleased] ∙ [:page_with_curl: DB migration script][unreleased-sql-migration]
9
9
### Added
10
+
- Ability to directly set commands paths. (@wright-tw, @noplanman) (#1252)
10
11
- Bot API 5.4. (@TiiFuchs, @noplanman) (#1266)
11
12
- Bot API 5.5. (@TiiFuchs, @noplanman) (#1267)
12
13
- The field `message_auto_delete_time` was added to the Chat Entity (@TiiFuchs) (#1265)
13
14
### Changed
14
15
### Deprecated
15
16
### Removed
16
-
-[:exclamation:][unreleased-bc-removed-chatactions] Removed ChatAction::RECORD_AUDIO and ChatAction::UPLOAD_AUDIO since it is deprecated for a while now. Use RECORD_VOICE and UPLOAD_VOICE instead.
17
+
-[:exclamation:][unreleased-bc-removed-chatactions] Removed deprecated `ChatAction::``RECORD_AUDIO` and `UPLOAD_AUDIO`. Use `RECORD_VOICE` and `UPLOAD_VOICE` instead.
17
18
### Fixed
19
+
- PHP 8.1 deprecations. (@maxgorovenko) (#1260)
18
20
### Security
19
21
20
22
## [0.74.0] - 2021-06-26
@@ -541,7 +543,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
[](https://telegram.me/PHP_Telegram_Bot_Support)
Copy file name to clipboardExpand all lines: structure.sql
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -80,10 +80,12 @@ CREATE TABLE IF NOT EXISTS `message` (
80
80
`forward_signature`TEXTNULL DEFAULT NULL COMMENT 'For messages forwarded from channels, signature of the post author if present',
81
81
`forward_sender_name`TEXTNULL DEFAULT NULL COMMENT 'Sender''s name for messages forwarded from users who disallow adding a link to their account in forwarded messages',
82
82
`forward_date`timestampNULL DEFAULT NULL COMMENT 'date the original message was sent in timestamp format',
83
+
`is_automatic_forward`tinyint(1) DEFAULT 0 COMMENT 'True, if the message is a channel post that was automatically forwarded to the connected discussion group',
ALTERTABLE`message` ADD COLUMN `is_automatic_forward`tinyint(1) DEFAULT 0 COMMENT 'True, if the message is a channel post that was automatically forwarded to the connected discussion group' AFTER `forward_date`;
20
+
ALTERTABLE`message` ADD COLUMN `has_protected_content`tinyint(1) DEFAULT 0 COMMENT 'True, if the message can''t be forwarded' AFTER `edit_date`;
0 commit comments