Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package evolution-ews for openSUSE:Factory checked in at 2022-08-10 17:12:55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/evolution-ews (Old) and /work/SRC/openSUSE:Factory/.evolution-ews.new.1521 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "evolution-ews" Wed Aug 10 17:12:55 2022 rev:127 rq:993943 version:3.44.4 Changes: -------- --- /work/SRC/openSUSE:Factory/evolution-ews/evolution-ews.changes 2022-07-05 12:27:18.097855273 +0200 +++ /work/SRC/openSUSE:Factory/.evolution-ews.new.1521/evolution-ews.changes 2022-08-10 17:13:16.877705062 +0200 @@ -1,0 +2,6 @@ +Fri Aug 5 09:05:11 UTC 2022 - Bj??rn Lie <bjorn....@gmail.com> + +- Update to version 3.44.4: + + Bugs fixed: Calendar: Fix occurrence index counter. + +------------------------------------------------------------------- Old: ---- evolution-ews-3.44.3.tar.xz New: ---- evolution-ews-3.44.4.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ evolution-ews.spec ++++++ --- /var/tmp/diff_new_pack.l74PUO/_old 2022-08-10 17:13:17.869707652 +0200 +++ /var/tmp/diff_new_pack.l74PUO/_new 2022-08-10 17:13:17.877707673 +0200 @@ -20,7 +20,7 @@ %define _version %(echo %{version} | grep -E -o '[0-9]+\.[0-9]+\.[0-9]+') Name: evolution-ews -Version: 3.44.3 +Version: 3.44.4 Release: 0 Summary: Exchange Connector for Evolution, compatible with Exchange 2007 and later License: LGPL-2.1-only ++++++ evolution-ews-3.44.3.tar.xz -> evolution-ews-3.44.4.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/evolution-ews-3.44.3/CMakeLists.txt new/evolution-ews-3.44.4/CMakeLists.txt --- old/evolution-ews-3.44.3/CMakeLists.txt 2022-07-01 11:39:45.000000000 +0200 +++ new/evolution-ews-3.44.4/CMakeLists.txt 2022-08-05 10:02:40.000000000 +0200 @@ -4,7 +4,7 @@ cmake_policy(VERSION 3.1) project(evolution-ews - VERSION 3.44.3 + VERSION 3.44.4 LANGUAGES C) set(PROJECT_BUGREPORT "https://gitlab.gnome.org/GNOME/evolution-ews/issues/") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/evolution-ews-3.44.3/NEWS new/evolution-ews-3.44.4/NEWS --- old/evolution-ews-3.44.3/NEWS 2022-07-01 11:39:45.000000000 +0200 +++ new/evolution-ews-3.44.4/NEWS 2022-08-05 10:02:40.000000000 +0200 @@ -1,3 +1,9 @@ +Evolution-EWS 3.44.4 2022-08-05 +------------------------------- + +Bug Fixes: + I#191 - Calendar: Fix occurrence index counter + Evolution-EWS 3.44.3 2022-07-01 ------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/evolution-ews-3.44.3/src/EWS/calendar/e-cal-backend-ews-utils.c new/evolution-ews-3.44.4/src/EWS/calendar/e-cal-backend-ews-utils.c --- old/evolution-ews-3.44.3/src/EWS/calendar/e-cal-backend-ews-utils.c 2022-07-01 11:39:45.000000000 +0200 +++ new/evolution-ews-3.44.4/src/EWS/calendar/e-cal-backend-ews-utils.c 2022-08-05 10:02:40.000000000 +0200 @@ -2093,7 +2093,8 @@ for (next = i_cal_recur_iterator_next (ritr); next && !i_cal_time_is_null_time (next); g_object_unref (next), next = i_cal_recur_iterator_next (ritr), index++) { - if (i_cal_time_compare_date_only (o_time, next) == 0) { + /* Make sure the date is compared with the expected timezone, not converted into UTC */ + if (i_cal_time_compare_date_only_tz (o_time, next, timezone) == 0) { break; } }