Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package akregator for openSUSE:Factory 
checked in at 2022-03-04 20:14:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/akregator (Old)
 and      /work/SRC/openSUSE:Factory/.akregator.new.1958 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "akregator"

Fri Mar  4 20:14:33 2022 rev:72 rq:958768 version:21.12.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/akregator/akregator.changes      2022-02-04 
21:46:46.429459614 +0100
+++ /work/SRC/openSUSE:Factory/.akregator.new.1958/akregator.changes    
2022-03-04 20:14:40.896804166 +0100
@@ -1,0 +2,11 @@
+Tue Mar  1 09:56:32 UTC 2022 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 21.12.3
+  * New bugfix release
+  * For more details please see:
+  * https://kde.org/announcements/gear/21.12.3/
+- Changes since 21.12.2:
+  * Fix bug 450650: URL encoded chars in feed-entry-link-href become
+    invalid (kde#450650)
+
+-------------------------------------------------------------------

Old:
----
  akregator-21.12.2.tar.xz
  akregator-21.12.2.tar.xz.sig

New:
----
  akregator-21.12.3.tar.xz
  akregator-21.12.3.tar.xz.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ akregator.spec ++++++
--- /var/tmp/diff_new_pack.oNWJia/_old  2022-03-04 20:14:42.584804488 +0100
+++ /var/tmp/diff_new_pack.oNWJia/_new  2022-03-04 20:14:42.588804488 +0100
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:           akregator
-Version:        21.12.2
+Version:        21.12.3
 Release:        0
 Summary:        RSS Feed Reader
 License:        GPL-2.0-or-later

++++++ akregator-21.12.2.tar.xz -> akregator-21.12.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akregator-21.12.2/CMakeLists.txt 
new/akregator-21.12.3/CMakeLists.txt
--- old/akregator-21.12.2/CMakeLists.txt        2022-01-29 00:26:56.000000000 
+0100
+++ new/akregator-21.12.3/CMakeLists.txt        2022-02-27 19:37:35.000000000 
+0100
@@ -1,9 +1,9 @@
 cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
-set(PIM_VERSION "5.19.2")
+set(PIM_VERSION "5.19.3")
 project(akregator VERSION ${PIM_VERSION})
 
 set(KF5_MIN_VERSION "5.87.0")
-set(RELEASE_SERVICE_VERSION "21.12.2")
+set(RELEASE_SERVICE_VERSION "21.12.3")
 
 find_package(ECM ${KF5_MIN_VERSION} CONFIG REQUIRED)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
@@ -44,13 +44,13 @@
 
 set(QT_REQUIRED_VERSION "5.15.2")
 
-set(KONTACTINTERFACE_LIB_VERSION "5.19.2")
-set(KPIMTEXTEDIT_LIB_VERSION "5.19.2")
-set(LIBGRANTLEETHEME_LIB_VERSION "5.19.2")
-set(LIBKDEPIM_LIB_VERSION "5.19.2")
-set(LIBKLEO_LIB_VERSION "5.19.2")
-set(MESSAGELIB_LIB_VERSION "5.19.2")
-set(PIMCOMMON_LIB_VERSION "5.19.2")
+set(KONTACTINTERFACE_LIB_VERSION "5.19.3")
+set(KPIMTEXTEDIT_LIB_VERSION "5.19.3")
+set(LIBGRANTLEETHEME_LIB_VERSION "5.19.3")
+set(LIBKDEPIM_LIB_VERSION "5.19.3")
+set(LIBKLEO_LIB_VERSION "5.19.3")
+set(MESSAGELIB_LIB_VERSION "5.19.3")
+set(PIMCOMMON_LIB_VERSION "5.19.3")
 
 option(KDEPIM_KUSERFEEDBACK "Enable user feedback support (experimental)" 
FALSE)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/akregator-21.12.2/plugins/mk4storage/feedstoragemk4impl.cpp 
new/akregator-21.12.3/plugins/mk4storage/feedstoragemk4impl.cpp
--- old/akregator-21.12.2/plugins/mk4storage/feedstoragemk4impl.cpp     
2022-01-29 00:26:56.000000000 +0100
+++ new/akregator-21.12.3/plugins/mk4storage/feedstoragemk4impl.cpp     
2022-02-27 19:37:35.000000000 +0100
@@ -256,7 +256,7 @@
 QString FeedStorageMK4Impl::link(const QString &guid) const
 {
     int findidx = findArticle(guid);
-    return findidx != -1 ? 
QString::fromLatin1(d->plink(d->archiveView.GetAt(findidx))) : 
QLatin1String("");
+    return findidx != -1 ? 
QString::fromUtf8(d->plink(d->archiveView.GetAt(findidx))) : QLatin1String("");
 }
 
 QDateTime FeedStorageMK4Impl::pubDate(const QString &guid) const
@@ -348,7 +348,7 @@
     }
     c4_Row row;
     row = d->archiveView.GetAt(findidx);
-    d->plink(row) = !link.isEmpty() ? link.toLatin1().constData() : "";
+    d->plink(row) = !link.isEmpty() ? link.toUtf8().constData() : "";
     d->archiveView.SetAt(findidx, row);
     markDirty();
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akregator-21.12.2/po/de/akregator.po 
new/akregator-21.12.3/po/de/akregator.po
--- old/akregator-21.12.2/po/de/akregator.po    2022-02-01 01:14:33.000000000 
+0100
+++ new/akregator-21.12.3/po/de/akregator.po    2022-03-01 01:16:43.000000000 
+0100
@@ -4,22 +4,22 @@
 # Thomas Reitelbach <t...@erdfunkstelle.de>, 2005, 2006, 2007, 2008, 2009.
 # Burkhard L??ck <lu...@hube-lueck.de>, 2008, 2009, 2011, 2012, 2013, 2014, 
2015, 2016, 2017, 2018, 2019, 2020, 2021.
 # Markus Slopianka <marku...@kdemail.net>, 2009, 2010.
-# Frederik Schwarzer <schwar...@kde.org>, 2010, 2011, 2012, 2013, 2016, 2018, 
2020.
+# Frederik Schwarzer <schwar...@kde.org>, 2010, 2011, 2012, 2013, 2016, 2018, 
2020, 2022.
 # Panagiotis Papadopoulos <pano...@gmx.net>, 2010.
 msgid ""
 msgstr ""
 "Project-Id-Version: akregator\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-11-06 00:17+0000\n"
-"PO-Revision-Date: 2021-08-25 15:55+0200\n"
-"Last-Translator: Burkhard L??ck <lu...@hube-lueck.de>\n"
-"Language-Team: German <kde-i18n...@kde.org>\n"
+"PO-Revision-Date: 2022-02-20 10:34+0100\n"
+"Last-Translator: Frederik Schwarzer <schwar...@kde.org>\n"
+"Language-Team: German <kde-i18n-...@kde.org>\n"
 "Language: de\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 19.12.3\n"
+"X-Generator: Lokalize 21.08.0\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
@@ -2191,38 +2191,38 @@
 msgstr "??ber"
 
 #: src/mainwidget.cpp:773
-#, fuzzy, kde-format
-#| msgid "<qt>Are you sure you want to delete feed <b>%1</b>?</qt>"
+#, kde-format
 msgid ""
 "<qt>Are you sure you want to mark <b>all articles in the feed</b> as read?</"
 "qt>"
-msgstr "<qt>M??chten Sie die Nachrichtenquelle <b>%1</b> wirklich 
l??schen?</qt>"
+msgstr ""
+"<qt>M??chten Sie <b>alle Artikel in der Nachrichtenquelle</b> als gelesen "
+"markieren?</qt>"
 
 #: src/mainwidget.cpp:774
-#, fuzzy, kde-format
-#| msgid "&Mark Feed as Read"
+#, kde-format
 msgid "Mark Feed as Read"
-msgstr "Nachrichtenquelle als &gelesen markieren"
+msgstr "Nachrichtenquelle als gelesen markieren"
 
 #: src/mainwidget.cpp:777
-#, fuzzy, kde-format
-#| msgid "<qt>Are you sure you want to delete feed <b>%1</b>?</qt>"
+#, kde-format
 msgid "<qt>Are you sure you want to mark <b>all feeds</b> as read?</qt>"
-msgstr "<qt>M??chten Sie die Nachrichtenquelle <b>%1</b> wirklich 
l??schen?</qt>"
+msgstr ""
+"<qt>M??chten Sie <b>alle Nachrichtenquellen</b> als gelesen markieren?</qt>"
 
 #: src/mainwidget.cpp:779
-#, fuzzy, kde-format
-#| msgid "<qt>Are you sure you want to delete this feed?</qt>"
+#, kde-format
 msgid ""
 "<qt>Are you sure you want to mark <b>all feeds in the folder</b> as read?</"
 "qt>"
-msgstr "<qt>M??chten Sie diese Nachrichtenquelle wirklich l??schen?</qt>"
+msgstr ""
+"<qt>M??chten Sie <b>alle Nachrichtenquellen in diesem Ordner</b> als gelesen "
+"markieren?</qt>"
 
 #: src/mainwidget.cpp:781
-#, fuzzy, kde-format
-#| msgid "&Mark Feeds as Read"
+#, kde-format
 msgid "Mark Feeds as Read"
-msgstr "Nachrichtenquelle als &gelesen markieren"
+msgstr "Nachrichtenquellen als gelesen markieren"
 
 #: src/mainwidget.cpp:845 src/mainwidget.cpp:854 src/mainwidget.cpp:1256
 #, kde-format
@@ -2258,11 +2258,13 @@
 "<qt>This will hide the menu bar completely. You can show it again by typing "
 "%1.</qt>"
 msgstr ""
+"<qt>Dies blendet die Men??leiste vollst??ndig aus. Sie k??nnen sie mit %1 "
+"wieder anzeigen.</qt>"
 
 #: src/mainwindow.cpp:98
 #, kde-format
 msgid "Hide menu bar"
-msgstr ""
+msgstr "Men??leiste ausblenden"
 
 #: src/mainwindow.cpp:127
 #, kde-format
@@ -2623,12 +2625,10 @@
 msgstr "Neu"
 
 #: src/widgets/statussearchline.cpp:46
-#, fuzzy, kde-format
-#| msgctxt "as in: mark as read"
-#| msgid "&Read"
+#, kde-format
 msgctxt "Read articles filter"
 msgid "Read"
-msgstr "&Gelesen"
+msgstr "Gelesen"
 
 #: src/widgets/statussearchline.cpp:47
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akregator-21.12.2/po/fi/akregator.po 
new/akregator-21.12.3/po/fi/akregator.po
--- old/akregator-21.12.2/po/fi/akregator.po    2022-02-01 01:14:33.000000000 
+0100
+++ new/akregator-21.12.3/po/fi/akregator.po    2022-03-01 01:16:43.000000000 
+0100
@@ -10,14 +10,14 @@
 # Teemu Rytilahti <t...@d5k.net>, 2005.
 # Ilpo Kantonen <i...@iki.fi>, 2006.
 # Mikko Piippo <pii...@cc.helsinki.fi>, 2007.
-# Tommi Nieminen <transla...@legisign.org>, 2009, 2010, 2011, 2013, 2016, 
2017, 2018, 2019, 2020, 2021.
+# Tommi Nieminen <transla...@legisign.org>, 2009, 2010, 2011, 2013, 2016, 
2017, 2018, 2019, 2020, 2021, 2022.
 # Lasse Liehu <lasse.li...@gmail.com>, 2010, 2011, 2012, 2013, 2014, 2015, 
2016.
 msgid ""
 msgstr ""
 "Project-Id-Version: akregator\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-11-06 00:17+0000\n"
-"PO-Revision-Date: 2021-07-05 13:45+0300\n"
+"PO-Revision-Date: 2022-02-04 22:24+0200\n"
 "Last-Translator: Tommi Nieminen <transla...@legisign.org>\n"
 "Language-Team: Finnish <kde-i18n-...@kde.org>\n"
 "Language: fi\n"
@@ -815,8 +815,8 @@
 "Use the KDE-wide HTML cache settings when downloading feeds, to avoid "
 "unnecessary traffic. Disable only when necessary."
 msgstr ""
-"K??yt?? KDE:n HTML-v??limuistiasetuksia sy??tteit?? ladattaessa 
v??ltt????ksesi "
-"tarpeettoman liikenteen. Poista k??yt??st?? vain, jos v??ltt??m??t??nt??."
+"V??lt?? tarpeetonta verkkoliikennett?? k??ytt??m??ll?? j??rjestelm??n HTML-"
+"v??limuistiasetuksia. Poista t??m?? k??yt??st?? vain, jos on pakko."
 
 #. i18n: ectx: whatsthis, entry, group (Network)
 #: interfaces/akregator.kcfg:149
@@ -977,7 +977,7 @@
 #: interfaces/akregator.kcfg:228
 #, kde-format
 msgid "What the click with left mouse button should do."
-msgstr "Mit?? hiiren vasemman painikkeen painalluksen tulisi tehd??."
+msgstr "Mit?? hiiren vasemman painikkeen napsautuksen tulisi tehd??."
 
 #. i18n: ectx: whatsthis, entry, group (Browser)
 #: interfaces/akregator.kcfg:237
@@ -1713,11 +1713,11 @@
 "To view the web page of the article, you can open the article internally in "
 "a tab or in an external browser window."
 msgstr ""
-"<h2>Artikkeliluettelo</h2>T??ss?? voit selata artikkeleja valitusta "
-"sy??tteest??. Voit yll??pit???? artikkeleja merkitsem??ll?? ne pysyviksi "
-"(persistent) (???Merkitse t??rke??ksi???) tai poistaa ne k??ytt??m??ll?? 
hiiren "
-"oikella painikkeella avautuvaa valikkoa. Katsoaksesi artikkelin verkkosivua, "
-"voit avata sen sis??isesti v??lilehteen tai ulkoiseen selaimen ikkunaan."
+"<h2>Artikkeliluettelo</h2>T??ss?? voit selata valitun sy??tteen artikkeleja. "
+"Artikkeleja voit yll??pit???? merkitsem??ll?? ne pysyviksi (???Merkitse 
t??rke??ksi???) "
+"tai poistaa ne k??ytt??m??ll?? hiiren oikealla painikkeella avautuvaa 
valikkoa. "
+"Artikkelin verkkosivua voi katsoa avaamalla sen sis??isesti v??lilehteen tai "
+"ulkoisesti selainikkunaan."
 
 #: src/articlemodel.cpp:77
 #, kde-format
@@ -1761,8 +1761,7 @@
 msgstr "Akregator on KDE:n sy??tteenlukija."
 
 #: src/articleviewer-ng/webengine/articleviewerwebengine.cpp:190
-#, fuzzy, kde-format
-#| msgid "Save As"
+#, kde-format
 msgctxt "@title:window"
 msgid "Save As"
 msgstr "Tallenna nimell??"
@@ -2070,8 +2069,7 @@
 msgstr[1] " artikkelia"
 
 #: src/feed/feedpropertiesdialog.cpp:116
-#, fuzzy, kde-format
-#| msgid "Properties of %1"
+#, kde-format
 msgctxt "@title:window"
 msgid "Properties of %1"
 msgstr "Sy??tteen %1 asetukset"
@@ -2176,38 +2174,36 @@
 msgstr "Tietoa ohjelmasta"
 
 #: src/mainwidget.cpp:773
-#, fuzzy, kde-format
-#| msgid "<qt>Are you sure you want to delete feed <b>%1</b>?</qt>"
+#, kde-format
 msgid ""
 "<qt>Are you sure you want to mark <b>all articles in the feed</b> as read?</"
 "qt>"
-msgstr "<qt>Haluatko varmasti poistaa sy??tteen <b>%1</b>?</qt>"
+msgstr ""
+"<qt>Haluatko varmasti merkit?? <b>sy??tteen kaikki artikkelit</b> 
luetuiksi?</"
+"qt>"
 
 #: src/mainwidget.cpp:774
-#, fuzzy, kde-format
-#| msgid "&Mark Feed as Read"
+#, kde-format
 msgid "Mark Feed as Read"
-msgstr "Merkitse &sy??te luetuksi"
+msgstr "Merkitse sy??te luetuksi"
 
 #: src/mainwidget.cpp:777
-#, fuzzy, kde-format
-#| msgid "<qt>Are you sure you want to delete feed <b>%1</b>?</qt>"
+#, kde-format
 msgid "<qt>Are you sure you want to mark <b>all feeds</b> as read?</qt>"
-msgstr "<qt>Haluatko varmasti poistaa sy??tteen <b>%1</b>?</qt>"
+msgstr "<qt>Haluatko varmasti merkit?? <b>kaikki sy??tteet</b> luetuiksi?</qt>"
 
 #: src/mainwidget.cpp:779
-#, fuzzy, kde-format
-#| msgid "<qt>Are you sure you want to delete this feed?</qt>"
+#, kde-format
 msgid ""
 "<qt>Are you sure you want to mark <b>all feeds in the folder</b> as read?</"
 "qt>"
-msgstr "<qt>Haluatko varmasti poistaa t??m??n sy??tteen?</qt>"
+msgstr ""
+"<qt>Haluatko varmasti merkit?? <b>kansion kaikki sy??tteet</b> 
luetuiksi?</qt>"
 
 #: src/mainwidget.cpp:781
-#, fuzzy, kde-format
-#| msgid "&Mark Feeds as Read"
+#, kde-format
 msgid "Mark Feeds as Read"
-msgstr "&Merkitse sy??tteet luetuksi"
+msgstr "Merkitse sy??tteet luetuiksi"
 
 #: src/mainwidget.cpp:845 src/mainwidget.cpp:854 src/mainwidget.cpp:1256
 #, kde-format
@@ -2243,11 +2239,13 @@
 "<qt>This will hide the menu bar completely. You can show it again by typing "
 "%1.</qt>"
 msgstr ""
+"<qt>T??m?? piilottaa valikkorivin kokonaan. Saat sen uudelleen n??kyviin "
+"painamalla %1.</qt>"
 
 #: src/mainwindow.cpp:98
 #, kde-format
 msgid "Hide menu bar"
-msgstr ""
+msgstr "Piilota valikkorivi"
 
 #: src/mainwindow.cpp:127
 #, kde-format
@@ -2255,7 +2253,7 @@
 "Could not find the Akregator part; please check your installation.\n"
 "%1"
 msgstr ""
-"Akregatorin osaa ei l??ydetty: tarkista asennuksesi.\n"
+"Akregatorin osaa ei l??ydetty: tarkista asennus.\n"
 "%1"
 
 #: src/notificationmanager.cpp:49
@@ -2605,12 +2603,10 @@
 msgstr "Uudet"
 
 #: src/widgets/statussearchline.cpp:46
-#, fuzzy, kde-format
-#| msgctxt "as in: mark as read"
-#| msgid "&Read"
+#, kde-format
 msgctxt "Read articles filter"
 msgid "Read"
-msgstr "&Luetuksi"
+msgstr "Luetut"
 
 #: src/widgets/statussearchline.cpp:47
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akregator-21.12.2/po/ko/akregator.po 
new/akregator-21.12.3/po/ko/akregator.po
--- old/akregator-21.12.2/po/ko/akregator.po    2022-02-01 01:14:33.000000000 
+0100
+++ new/akregator-21.12.3/po/ko/akregator.po    2022-03-01 01:16:43.000000000 
+0100
@@ -1,7 +1,7 @@
 # Korean translation for kdepim
 # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006
 # This file is distributed under the same license as the kdepim package.
-# Shinjo Park <k...@peremen.name>, 2006, 2007, 2009, 2010, 2011, 2013, 2014, 
2015, 2016, 2017, 2018, 2019, 2020, 2021.
+# Shinjo Park <k...@peremen.name>, 2006, 2007, 2009, 2010, 2011, 2013, 2014, 
2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022.
 #
 msgid ""
 msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akregator-21.12.2/po/nn/akregator.po 
new/akregator-21.12.3/po/nn/akregator.po
--- old/akregator-21.12.2/po/nn/akregator.po    2022-02-01 01:14:33.000000000 
+0100
+++ new/akregator-21.12.3/po/nn/akregator.po    2022-03-01 01:16:43.000000000 
+0100
@@ -3,7 +3,7 @@
 # Karl Ove Hufthammer <k...@huftis.org>, 2005, 2008, 2009, 2010, 2016, 2018, 
2019, 2020, 2021.
 # Eirik U. Birkeland <eir...@gmail.com>, 2008, 2009, 2010.
 # Olav Selseng Vestreim <o.v...@operamail.com>, 2015.
-# ??ystein Steffensen-Alv??rvik <yst...@posteo.net>, 2018, 2020.
+# ??ystein Steffensen-Alv??rvik <oysteins.omsett...@protonmail.com>, 2018, 
2020.
 msgid ""
 msgstr ""
 "Project-Id-Version: akregator\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/akregator-21.12.2/po/zh_CN/akregator.po 
new/akregator-21.12.3/po/zh_CN/akregator.po
--- old/akregator-21.12.2/po/zh_CN/akregator.po 2022-02-01 01:14:33.000000000 
+0100
+++ new/akregator-21.12.3/po/zh_CN/akregator.po 2022-03-01 01:16:43.000000000 
+0100
@@ -11,7 +11,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-11-06 00:17+0000\n"
-"PO-Revision-Date: 2022-01-08 15:25\n"
+"PO-Revision-Date: 2022-02-26 05:18\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/akregator-21.12.2/src/data/org.kde.akregator.appdata.xml 
new/akregator-21.12.3/src/data/org.kde.akregator.appdata.xml
--- old/akregator-21.12.2/src/data/org.kde.akregator.appdata.xml        
2022-01-29 00:26:56.000000000 +0100
+++ new/akregator-21.12.3/src/data/org.kde.akregator.appdata.xml        
2022-02-27 19:37:35.000000000 +0100
@@ -206,9 +206,9 @@
     <binary>akregator</binary>
   </provides>
   <releases>
+    <release version="5.19.3" date="2022-03-03"/>
     <release version="5.19.2" date="2022-02-03"/>
     <release version="5.19.1" date="2022-01-06"/>
     <release version="5.19.0" date="2021-12-09"/>
-    <release version="5.18.3" date="2021-11-04"/>
   </releases>
 </component>

Reply via email to