Hello community, here is the log from the commit of package otrs for openSUSE:Factory checked in at 2014-12-30 00:50:22 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/otrs (Old) and /work/SRC/openSUSE:Factory/.otrs.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "otrs" Changes: -------- --- /work/SRC/openSUSE:Factory/otrs/otrs.changes 2014-10-01 11:23:51.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.otrs.new/otrs.changes 2014-12-30 00:50:56.000000000 +0100 @@ -1,0 +2,69 @@ +Mon Dec 29 11:06:45 UTC 2014 - [email protected] + +- fix for boo#910988 (CVE-2014-9324) +- update to 3.3.11 + fix for OSA-2014-06 (CVE-2014-9324) + * Updated translations, thanks to all translators. + * Bug#10904 – Upon entering CIC, search only returns hits during + the first search. + * Bug#10944 – Multiple selection in Tree Selection also affects + filtered elements. + * Follow-up fix for Bug#6284 – Problem with unicode characters + when using FastCGI. + * Bug#10830 – Textarea Limitation in Generic Agent. + * Bug#10920 – ProcessManagement: Deleting Activities from canvas + does not update process layout. + * Bug#10801 – Editor is extremely slow with large articles. + * Enhanced Permission Checks in GenericInterface Ticket Connector. + * Bug#10634 – ProcessManagement: Can not use an arbitrary email + address as a CustomerUser. + * Bug#10839 – ACL cannot set possible TicketType in + AgentTicketPhone and AgentTicketEmail. + * Bug#10776 – Medium and Large view don’t indicate active + filters. + * Bug#10808 – Set of pending time is not working at all in + Frontend::Agent::Ticket::ViewNote. + * Bug#10892 – TicketActionsPerTicket open multiple popups at + TicketOverview. + * Bug#10857 – JS added too often in AgentTicketOverviewSmall. + * Bug#10639 – Set of pending time/state not working properly + (process management). + * Bug#10893 – Missing log name partitions in Service Center. + * Bug#10879 – GenericInterfae: TicketSearch operation does not + take escalation parameters. + * Bug#10812 – SOAP Response is always in version SOAP 1.2. + * Bug#10083 – SMIME and Email address detection is case sensitive + (for the right part).. + * Bug#10826 – German – Translation Problem. + * Bug#10678 – Dates off by one on area diagram in dashboard widget. + * Bug#7369 – LinkQoute fails for some characters in hash or + parameter. + * Bug#8404 – Wrong sorting of responses dropdown in TicketZoom. + * Bug#8781 – 508 Compliance: In Ticket Overviews the title + attribute of large view link is incorrect. + * Bug#10669 – Maxlength validation of textarea dynamic fields does + not work correctly in IE. + * Bug#10471 – Missing translations for tooltips of + TicketOverviewSmall columns. + * Bug#10850 – Double-quoted special characters in title of dynamic + field sidebar output in TicketZoom. + * Bug#10805 – Open tickets in 3 days show right function but wrong + number. + * Bug#10845 – No date search if TimeInputFormat is Input. + * Bug#10706 – dashboard settings are lost by different user login. + * Bug#10577 – Service Center does not show MOD_PERL version on + Ubuntu 14.04. + * Bug#10679 – Texts in notification tags loose their empty lines + and spaces. + +------------------------------------------------------------------- +Thu Nov 27 11:41:00 UTC 2014 - Led <[email protected]> + +- One more fix after fix bashisms in previous commit + +------------------------------------------------------------------- +Sat Nov 08 06:04:00 UTC 2014 - Led <[email protected]> + +- fix bashisms in post script + +------------------------------------------------------------------- Old: ---- itsm-3.3.9.tar.bz2 otrs-3.3.9.tar.bz2 New: ---- itsm-3.3.11.tar.bz2 otrs-3.3.11.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ otrs.spec ++++++ --- /var/tmp/diff_new_pack.icDGjz/_old 2014-12-30 00:51:00.000000000 +0100 +++ /var/tmp/diff_new_pack.icDGjz/_new 2014-12-30 00:51:00.000000000 +0100 @@ -16,8 +16,8 @@ # -%define otrs_ver 3.3.9 -%define itsm_ver 3.3.9 +%define otrs_ver 3.3.11 +%define itsm_ver 3.3.11 %define itsm_min 3.3 %define otrs_root /srv %define otrsdoc_dir_files AUTHORS* CHANGES* COPYING* CREDITS README* UPGRADING.SuSE doc @@ -306,11 +306,17 @@ # if rpm is not in update mode if ! [ ${FIRST_ARG:-0} -gt 1 ]; then if [ -z "${YAST_IS_RUNNING}" ]; then - for lang in LC_ALL LC_MESSAGE LANG; do - test "${!lang}" && break - done + if [ -n "$LC_ALL" ]; then + lang="$LC_ALL" + elif [ -n "$LC_MESSAGE" ]; then + lang="$LC_MESSAGE" + elif [ -n "$LANG" ]; then + lang="$LANG" + else + lang= + fi echo - case "${!lang}" in + case "$lang" in de_*) echo "Hinweise zur Erstkonfiguration von OTRS finden Sie in" echo "/usr/share/doc/packages/otrs/README.%{VENDOR}.de" ++++++ itsm-3.3.9.tar.bz2 -> itsm-3.3.11.tar.bz2 ++++++ /work/SRC/openSUSE:Factory/otrs/itsm-3.3.9.tar.bz2 /work/SRC/openSUSE:Factory/.otrs.new/itsm-3.3.11.tar.bz2 differ: char 11, line 1 ++++++ otrs-3.3.9.tar.bz2 -> otrs-3.3.11.tar.bz2 ++++++ /work/SRC/openSUSE:Factory/otrs/otrs-3.3.9.tar.bz2 /work/SRC/openSUSE:Factory/.otrs.new/otrs-3.3.11.tar.bz2 differ: char 11, line 1 ++++++ otrs-perm.patch ++++++ --- /var/tmp/diff_new_pack.icDGjz/_old 2014-12-30 00:51:00.000000000 +0100 +++ /var/tmp/diff_new_pack.icDGjz/_new 2014-12-30 00:51:00.000000000 +0100 @@ -2,7 +2,7 @@ =================================================================== --- Kernel/System/Package.pm.orig +++ Kernel/System/Package.pm -@@ -3137,7 +3137,7 @@ sub _FileSystemCheck { +@@ -3252,7 +3252,7 @@ sub _FileSystemCheck { } # create test files in following directories -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
