Accepting request 1224250 from mozilla:Factory
- Mozilla Thunderbird 128.4.3 Fixes: * Folder corruption could cause Thunderbird to freeze and become unusable * Message corruption could be propagated when reading mbox * Folder compaction was not abandoned on shutdown * Folder compaction did not clean up on failure * Collapsed NNTP thread incorrectly indicated there were unread messages * Navigating to next unread message did not wait for all messages to be loaded * Applying column view to folder and children could break if folder error occurred * Remote content notifications were broken with encrypted messages * Updating criteria of a saved search resulted in poor search performance * Drop-downs may not work in some places MFSA 2024-61 * CVE-2024-11159 (bmo#1925929) Potential disclosure of plaintext in OpenPGP encrypted message - remove kmozillahelper support (boo#1226112) * removed mozilla-kde.patch * requires xdg-desktop-portal instead OBS-URL: https://build.opensuse.org/request/show/1224250 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/MozillaThunderbird?expand=0&rev=347
This commit is contained in:
commit
3d8cfe7559
@ -1,3 +1,27 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Nov 9 16:26:41 UTC 2024 - Wolfgang Rosenauer <wr@rosenauer.org>
|
||||
|
||||
- Mozilla Thunderbird 128.4.3
|
||||
Fixes:
|
||||
* Folder corruption could cause Thunderbird to freeze and become unusable
|
||||
* Message corruption could be propagated when reading mbox
|
||||
* Folder compaction was not abandoned on shutdown
|
||||
* Folder compaction did not clean up on failure
|
||||
* Collapsed NNTP thread incorrectly indicated there were unread messages
|
||||
* Navigating to next unread message did not wait for all messages
|
||||
to be loaded
|
||||
* Applying column view to folder and children could break if folder
|
||||
error occurred
|
||||
* Remote content notifications were broken with encrypted messages
|
||||
* Updating criteria of a saved search resulted in poor search performance
|
||||
* Drop-downs may not work in some places
|
||||
MFSA 2024-61
|
||||
* CVE-2024-11159 (bmo#1925929)
|
||||
Potential disclosure of plaintext in OpenPGP encrypted message
|
||||
- remove kmozillahelper support (boo#1226112)
|
||||
* removed mozilla-kde.patch
|
||||
* requires xdg-desktop-portal instead
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 6 19:54:16 UTC 2024 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||
|
||||
|
@ -29,8 +29,8 @@
|
||||
# major 69
|
||||
# mainver %%major.99
|
||||
%define major 128
|
||||
%define mainver %major.4.2
|
||||
%define orig_version 128.4.2
|
||||
%define mainver %major.4.3
|
||||
%define orig_version 128.4.3
|
||||
%define orig_suffix esr
|
||||
%define update_channel esr
|
||||
%define source_prefix thunderbird-%{orig_version}
|
||||
@ -43,7 +43,6 @@
|
||||
|
||||
%bcond_with only_print_mozconfig
|
||||
|
||||
%bcond_without mozilla_tb_kde4
|
||||
%bcond_with mozilla_tb_valgrind
|
||||
%bcond_without mozilla_tb_optimize_for_size
|
||||
|
||||
@ -174,12 +173,6 @@ Provides: thunderbird = %{version}
|
||||
Obsoletes: MozillaThunderbird-devel < %{version}
|
||||
Provides: appdata()
|
||||
Provides: appdata(thunderbird.appdata.xml)
|
||||
%if %{with mozilla_tb_kde4}
|
||||
# this is needed to match this package with the kde4 helper package without the main package
|
||||
# having a hard requirement on the kde4 package
|
||||
%define kde_helper_version 6
|
||||
Provides: mozilla-kde4-version = %{kde_helper_version}
|
||||
%endif
|
||||
Summary: An integrated email, news feeds, chat, and newsgroups client
|
||||
License: MPL-2.0
|
||||
Group: Productivity/Networking/Email/Clients
|
||||
@ -201,9 +194,6 @@ Source20: https://ftp.mozilla.org/pub/%{srcname}/releases/%{version}%{orig
|
||||
Source21: https://ftp.mozilla.org/pub/%{srcname}/releases/%{version}%{orig_suffix}/KEY#/mozilla.keyring
|
||||
# Gecko/Toolkit
|
||||
Patch1: mozilla-nongnome-proxies.patch
|
||||
%if %{with mozilla_tb_kde4}
|
||||
Patch2: mozilla-kde.patch
|
||||
%endif
|
||||
Patch3: mozilla-ntlm-full-path.patch
|
||||
Patch4: mozilla-aarch64-startup-crash.patch
|
||||
Patch5: mozilla-bmo531915.patch
|
||||
@ -238,6 +228,7 @@ Recommends: libpulse0
|
||||
Recommends: libfido2-udev
|
||||
%endif
|
||||
Requires: %{name}-openpgp
|
||||
Requires: xdg-desktop-portal
|
||||
Suggests: %{name}-openpgp-librnp
|
||||
Requires(post): desktop-file-utils
|
||||
Requires(postun): desktop-file-utils
|
||||
@ -312,14 +303,6 @@ DATE="\"$(date -d "${modified}" "+%%b %%e %%Y")\""
|
||||
TIME="\"$(date -d "${modified}" "+%%R")\""
|
||||
find . -regex ".*\.c\|.*\.cpp\|.*\.h" -exec sed -i "s/__DATE__/${DATE}/g;s/__TIME__/${TIME}/g" {} +
|
||||
|
||||
%if %{with mozilla_tb_kde4}
|
||||
kdehelperversion=$(cat toolkit/xre/nsKDEUtils.cpp | grep '#define KMOZILLAHELPER_VERSION' | cut -d ' ' -f 3)
|
||||
if test "$kdehelperversion" != %{kde_helper_version}; then
|
||||
echo fix kde helper version in the .spec file
|
||||
exit 1
|
||||
fi
|
||||
%endif
|
||||
|
||||
# When doing only_print_mozconfig, this file isn't necessarily available, so skip it
|
||||
cp %{SOURCE4} .obsenv.sh
|
||||
%else
|
||||
|
1774
mozilla-kde.patch
1774
mozilla-kde.patch
File diff suppressed because it is too large
Load Diff
@ -18,3 +18,7 @@ pref("extensions.shownSelectionUI", true);
|
||||
|
||||
// spellcheck
|
||||
pref("spellchecker.dictionary_path", "/usr/share/myspell");
|
||||
|
||||
// (KDE) desktop support
|
||||
pref("widget.use-xdg-desktop-portal.file-picker", 1);
|
||||
|
||||
|
10
tar_stamps
10
tar_stamps
@ -1,10 +1,10 @@
|
||||
PRODUCT="thunderbird"
|
||||
CHANNEL="esr128"
|
||||
VERSION="128.4.2"
|
||||
VERSION="128.4.3"
|
||||
VERSION_SUFFIX="esr"
|
||||
PREV_VERSION="128.4.1"
|
||||
PREV_VERSION_SUFFIX=""
|
||||
PREV_VERSION="128.4.2"
|
||||
PREV_VERSION_SUFFIX="esr"
|
||||
#SKIP_LOCALES="" # Uncomment to skip l10n and compare-locales-generation
|
||||
RELEASE_REPO="https://hg.mozilla.org/releases/comm-esr128"
|
||||
RELEASE_TAG="ffdb226764722cd45544f945ef51e1786e1bdbbe"
|
||||
RELEASE_TIMESTAMP="20241105224936"
|
||||
RELEASE_TAG="145fdfb21d2ef4ad466f67bd4a410b633592ed72"
|
||||
RELEASE_TIMESTAMP="20241108210256"
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6fa81eeabb89f02792738718168586bd75c07dc9256e79b26438da70e80dd0d8
|
||||
size 676111384
|
@ -1,16 +0,0 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQIzBAABCgAdFiEErdcHlHlwDcrf3VM34207E/PZMnQFAmcqwJcACgkQ4207E/PZ
|
||||
MnTD5xAAgc9k3sduB8s0xkx6DAq5H1Ry54W8zBy/nalqqwnCH4Txv5YJB1hIs42e
|
||||
VlJoSE1jlg++xgtf0bZWhN1u9RcvHDj6YMoT+/fVE5639AN2ZZFr57DoVGvYKQUy
|
||||
dEcQtJo7EpOb2eU+c/SlOECVnqQaBSH46NPgKdOYB8Kw6N3AVKH51P8xVgDqXO7b
|
||||
eW+EcKu4qTNf8vqJMNPA4/H9tFFHR9k1Tw992V2FCafb6ymslkq9+p7rSGQP4m9l
|
||||
s+TRghvElDW0ot3pb0IxUlt6RJ/kmIrZXis9Wiev7gSf2Ofqfb2JHxDdM7qNNR/J
|
||||
4KrQV0Azpg6UgF71IYXANGIMF9cWele47uLLhMfFxkro8sX1eTEN+u03IzuW91BC
|
||||
GuN0lNwKHskk94F0M1z2Lsq68eiSN+36l3IpBsb6FFP0RCyCGzI5NeuhtY1OUxxa
|
||||
nEHUvyUyVjF5x+ce/q0oxfbPP7/HMvaBuoiasw40ookOV1eNBNam4RpyMb2TAavu
|
||||
YtrpLhQxqbJeP9JGi3IJm5ZIgnQB1X+j1Cy8OJTUzdKHxuLxjb+Y+RuznVGqJYEF
|
||||
J+JuUkE97ZG3/lXek+eVUCWNYql3wlpm04y2MxLXDlZjxWKRKTcut3BVkQs3l+6P
|
||||
fFQP0njuTEqU5cPRCf+DVDOdbRbfkJIzGSM/f7EE7vLcXppDOvs=
|
||||
=QEVU
|
||||
-----END PGP SIGNATURE-----
|
3
thunderbird-128.4.3esr.source.tar.xz
Normal file
3
thunderbird-128.4.3esr.source.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:146edcfee47ebaa3fb6cf877a0747140dd011a3f6b674c98cdc61b9e98bbd61c
|
||||
size 673965268
|
16
thunderbird-128.4.3esr.source.tar.xz.asc
Normal file
16
thunderbird-128.4.3esr.source.tar.xz.asc
Normal file
@ -0,0 +1,16 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQIzBAABCgAdFiEErdcHlHlwDcrf3VM34207E/PZMnQFAmcu5GkACgkQ4207E/PZ
|
||||
MnRj5RAAj7dKSmOsVy+HBFm7I5GSZJauNe4AsFqTODFxp7imh6MwCjz+vcToKn3v
|
||||
+u8UV+RGxihmcvQ4bzmnV4YP0ZUAAFWueONv7b4n3Mc/hp38Ej+s2QSfxsFcptnX
|
||||
LYZ1LkAuxld+ixVtgx+/rLAZjt85MLU0+QgviTuuNCl6Antlro6KBRfO8hK64O8m
|
||||
zHHewJRQGPdrBqbaIGpIyeWhDAJ3iV2FN0cIqD7O2prWMpeHhWlKcopMAtBUem83
|
||||
g2QM1FqsuthRKb4yWt9hJEEM1g6MDsiU15gIlcIZEkgO2sD48QxPVPshXvAQCNCp
|
||||
MD+SwZt0Rg6fWDcvYQWJo3tCrO7M+8+ccX05Qm3y88yCLpt17DGBZ4Lpr/DpmSMH
|
||||
vbpFe7gUusJm6Jh8UGQXF43otWzsCgRQwCcpbpMggw+1YbHrREuLSQd1iSeNxu9l
|
||||
NQDjtN8SxkBZINlFPXpjdGkSApN2vgvkly3QNJ6yC85IijkWdOm9vaA405adYVff
|
||||
CfXJlSUxLC709E+owMOPvhtnbaC/0WAiXuTmSDUzhU6ZFtBAv3SMjxWqI9pg1E7d
|
||||
EdeFxrRi3RXvJigaqVAB0ax+b4Qrr2sk5xwPzwOTJyfL0new93Wp/y2ZgN/BuLrD
|
||||
p/uXKkmMzbMu0ZvLIKxVhiMZNzeoc1l7qUnVZwlDRaC66ynetkA=
|
||||
=Mwsw
|
||||
-----END PGP SIGNATURE-----
|
Loading…
Reference in New Issue
Block a user