Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package telegram-desktop for
openSUSE:Factory checked in at 2026-03-04 21:07:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/telegram-desktop (Old)
and /work/SRC/openSUSE:Factory/.telegram-desktop.new.561 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "telegram-desktop"
Wed Mar 4 21:07:22 2026 rev:146 rq:1336193 version:6.6.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/telegram-desktop/telegram-desktop.changes
2026-03-02 17:38:47.599515749 +0100
+++
/work/SRC/openSUSE:Factory/.telegram-desktop.new.561/telegram-desktop.changes
2026-03-04 21:08:11.315812302 +0100
@@ -1,0 +2,7 @@
+Tue Mar 3 19:41:10 UTC 2026 - Илья Индиго <[email protected]>
+
+- Updated td to git20260303.
+- Updated telegram-desktop to 6.6.2
+ * https://github.com/telegramdesktop/tdesktop/releases/tag/v6.6.2
+
+-------------------------------------------------------------------
Old:
----
td-git20260228.tar.xz
tdesktop-6.6.1-full.tar.gz
New:
----
td-git20260303.tar.xz
tdesktop-6.6.2-full.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ telegram-desktop.spec ++++++
--- /var/tmp/diff_new_pack.yPvclx/_old 2026-03-04 21:08:12.915878615 +0100
+++ /var/tmp/diff_new_pack.yPvclx/_new 2026-03-04 21:08:12.919878781 +0100
@@ -23,9 +23,9 @@
%define ada_ver 3.4.3
%define h264_ver 2.6.0
%define owt_ver git20251128
-%define td_ver git20260228
+%define td_ver git20260303
Name: telegram-desktop
-Version: 6.6.1
+Version: 6.6.2
Release: 0
Summary: Messaging application with a focus on speed and security
License: GPL-3.0-only
++++++ td-git20260228.tar.xz -> td-git20260303.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/td-git20260228/td/generate/scheme/td_api.tl
new/td-git20260303/td/generate/scheme/td_api.tl
--- old/td-git20260228/td/generate/scheme/td_api.tl 2026-03-01
21:04:14.175944202 +0100
+++ new/td-git20260303/td/generate/scheme/td_api.tl 2026-03-03
20:42:13.174586511 +0100
@@ -5268,7 +5268,7 @@
//@description A media timestamp @media_timestamp Timestamp from which a
video/audio/video note/voice note/story playing must start, in seconds. The
media can be in the content or the link preview of the current message, or in
the same places in the replied message
textEntityTypeMediaTimestamp media_timestamp:int32 = TextEntityType;
-//@description A data and time @unix_time Point in time (Unix timestamp)
representing the data and time @formatting_type Date and time formatting type;
may be null if none and the original text must not be changed
+//@description A date and time @unix_time Point in time (Unix timestamp)
representing the date and time @formatting_type Date and time formatting type;
may be null if none and the original text must not be changed
textEntityTypeDateTime unix_time:int32 formatting_type:DateTimeFormattingType
= TextEntityType;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/td-git20260228/td/telegram/MessageContent.cpp
new/td-git20260303/td/telegram/MessageContent.cpp
--- old/td-git20260228/td/telegram/MessageContent.cpp 2026-03-01
21:04:14.193943667 +0100
+++ new/td-git20260303/td/telegram/MessageContent.cpp 2026-03-03
20:42:13.191586006 +0100
@@ -8081,6 +8081,7 @@
}
return;
}
+ // don't forget to update reregister_message_content
default:
return;
}
@@ -8151,6 +8152,8 @@
return;
}
break;
+ case MessageContentType::SuggestProfilePhoto:
+ break;
case MessageContentType::Story:
if (static_cast<const MessageStory *>(old_content)->story_full_id ==
static_cast<const MessageStory *>(new_content)->story_full_id) {
@@ -8169,12 +8172,23 @@
return;
}
break;
+ case MessageContentType::StarGift:
+ break;
+ case MessageContentType::StarGiftUnique:
+ break;
+ case MessageContentType::ConferenceCall:
+ // no need to reregister
+ return;
case MessageContentType::GiftTon:
if (static_cast<const MessageGiftTon *>(old_content)->crypto_amount ==
static_cast<const MessageGiftTon *>(new_content)->crypto_amount) {
return;
}
break;
+ case MessageContentType::StarGiftPurchaseOffer:
+ break;
+ case MessageContentType::StarGiftPurchaseOfferDeclined:
+ break;
case MessageContentType::NoForwardsRequest:
// always need to reregister the message because it depends on the
current date
break;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/td-git20260228/td/telegram/PhotoSizeSource.cpp
new/td-git20260303/td/telegram/PhotoSizeSource.cpp
--- old/td-git20260228/td/telegram/PhotoSizeSource.cpp 2026-03-01
21:04:14.200943459 +0100
+++ new/td-git20260303/td/telegram/PhotoSizeSource.cpp 2026-03-03
20:42:13.198585798 +0100
@@ -89,7 +89,9 @@
break;
case Type::Thumbnail: {
auto type = thumbnail().thumbnail_type.type;
- CHECK(0 <= type && type <= 127);
+ if (!(0 <= type && type <= 127)) {
+ LOG(FATAL) << source << ' ' << *this;
+ }
if (type == 'a') {
return 0;
}
@@ -103,6 +105,7 @@
case Type::DialogPhotoBig:
return 1;
case Type::StickerSetThumbnail:
+ LOG(FATAL) << source << ' ' << *this;
break;
case Type::FullLegacy:
case Type::DialogPhotoSmallLegacy:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/td-git20260228/td/telegram/QuickReplyManager.cpp
new/td-git20260303/td/telegram/QuickReplyManager.cpp
--- old/td-git20260228/td/telegram/QuickReplyManager.cpp 2026-03-01
21:04:14.201943429 +0100
+++ new/td-git20260303/td/telegram/QuickReplyManager.cpp 2026-03-03
20:42:13.198585798 +0100
@@ -1683,7 +1683,7 @@
if (expect_no_message && m == nullptr) {
return;
}
- CHECK(m != nullptr);
+ LOG_CHECK(m != nullptr) << message_full_id << ' ' << source;
if (s->messages_[0]->message_id == message_id) {
send_update_quick_reply_shortcut(s, "on_external_update_message_content");
}
++++++ tdesktop-6.6.1-full.tar.gz -> tdesktop-6.6.2-full.tar.gz ++++++
/work/SRC/openSUSE:Factory/telegram-desktop/tdesktop-6.6.1-full.tar.gz
/work/SRC/openSUSE:Factory/.telegram-desktop.new.561/tdesktop-6.6.2-full.tar.gz
differ: char 5, line 1