Hello community, here is the log from the commit of package wbxml2 for openSUSE:Factory checked in at 2019-05-22 10:57:57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/wbxml2 (Old) and /work/SRC/openSUSE:Factory/.wbxml2.new.5148 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "wbxml2" Wed May 22 10:57:57 2019 rev:30 rq:693916 version:0.11.6 Changes: -------- --- /work/SRC/openSUSE:Factory/wbxml2/wbxml2.changes 2017-03-16 09:51:57.562186242 +0100 +++ /work/SRC/openSUSE:Factory/.wbxml2.new.5148/wbxml2.changes 2019-05-22 10:57:58.642907401 +0200 @@ -1,0 +2,18 @@ +Sat Apr 13 13:55:16 UTC 2019 - [email protected] + +- updated to version 0.11.6 + * Fixed/changed the encoding of element Content in CodePage + AirSyncBase (0x11) to WBXML_BINARY_OPTION for Microsoft + ActiveSync. + This element is used when the clients send a request to save a + draft email. + An example can be found in: + http://interoperability.blob.core.windows.net/files/MS-ASEMAIL/[MS-ASEMAIL].pdf + (4.4 Adding a Draft Email with Attachments). + Reference: + https://msdn.microsoft.com/en-us/library/mt563406%28v=exchg.80%29.aspx + (issue #58 from Thomas Führer) + * Added a testcase for Microsoft ActiveSync EAS Provisioning + (clarifies issue #56). + +------------------------------------------------------------------- Old: ---- libwbxml-0.11.5.tar.bz2 New: ---- libwbxml-0.11.6.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ wbxml2.spec ++++++ --- /var/tmp/diff_new_pack.ORkA8J/_old 2019-05-22 10:57:59.278906850 +0200 +++ /var/tmp/diff_new_pack.ORkA8J/_new 2019-05-22 10:57:59.282906846 +0200 @@ -1,7 +1,7 @@ # # spec file for package wbxml2 # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -28,9 +28,9 @@ BuildRequires: zlib-devel Url: http://libwbxml.opensync.org/ Summary: WBXML parser and compiler library -License: LGPL-2.1+ +License: LGPL-2.1-or-later Group: Development/Libraries/C and C++ -Version: 0.11.5 +Version: 0.11.6 Release: 0 Source: libwbxml-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -43,7 +43,7 @@ %package -n %{libname} Summary: WBXML parser and compiler library -License: LGPL-2.1+ +License: LGPL-2.1-or-later Group: System/Libraries %description -n %{libname} @@ -55,7 +55,7 @@ %package -n wbxml2-tools Summary: Tools for libwbxml2 -License: GPL-2.0+ +License: GPL-2.0-or-later Group: Productivity/Other Requires: %{libname} = %{version} # package was called wbxml2 in openSUSE < 11.2 @@ -70,7 +70,7 @@ %package -n libwbxml2-devel Summary: WBXML parser and compiler library -License: LGPL-2.1+ +License: LGPL-2.1-or-later Group: Development/Libraries/C and C++ Requires: %{libname} = %{version} glibc-devel libexpat-devel ++++++ libwbxml-0.11.5.tar.bz2 -> libwbxml-0.11.6.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libwbxml-0.11.5/CMakeLists.txt new/libwbxml-0.11.6/CMakeLists.txt --- old/libwbxml-0.11.5/CMakeLists.txt 2017-02-12 16:35:08.000000000 +0100 +++ new/libwbxml-0.11.6/CMakeLists.txt 2017-08-15 20:17:08.000000000 +0200 @@ -2,7 +2,7 @@ SET( LIBWBXML_VERSION_MAJOR "0" ) SET( LIBWBXML_VERSION_MINOR "11" ) -SET( LIBWBXML_VERSION_PATCH "5" ) +SET( LIBWBXML_VERSION_PATCH "6" ) IF( LIBWBXML_VERSION_BETA ) IF( LIBWBXML_VERSION_BETA VERSION_GREATER 90 ) MATH( EXPR LIBWBXML_VERSION_MINOR "${LIBWBXML_VERSION_MINOR} - 1" ) @@ -23,7 +23,7 @@ # UPDATE: last release. # UPDATE: Set REVISION to 0 if any interface have been added, removed or # UPDATE: changed since the last update. -SET( LIBWBXML_LIBVERSION_REVISION 5 ) +SET( LIBWBXML_LIBVERSION_REVISION 6 ) # The difference between the newest and the oldest interfaces. # UPDATE: If any interface have been added since the last public diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libwbxml-0.11.5/ChangeLog new/libwbxml-0.11.6/ChangeLog --- old/libwbxml-0.11.5/ChangeLog 2017-02-12 16:47:36.000000000 +0100 +++ new/libwbxml-0.11.6/ChangeLog 2017-08-15 20:19:40.000000000 +0200 @@ -1,3 +1,17 @@ +2017-08-15 Michael Bell <[email protected]> + * Released 0.11.6 + * Fixed/changed the encoding of element Content in CodePage + AirSyncBase (0x11) to WBXML_BINARY_OPTION for Microsoft ActiveSync. + This element is used when the clients send a request to save a draft + email. An example can be found in: + http://interoperability.blob.core.windows.net/files/MS-ASEMAIL/[MS-ASEMAIL].pdf + (4.4 Adding a Draft Email with Attachments). + Reference: + https://msdn.microsoft.com/en-us/library/mt563406%28v=exchg.80%29.aspx + (issue #58 from Thomas Führer) + * Added a testcase for Microsoft ActiveSync EAS Provisioning + (clarifies issue #56). + 2017-02-12 Michael Bell <[email protected]> * Released 0.11.5 * Fixed ActiveSync element data of code pages ResolveRecipients and diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libwbxml-0.11.5/RELEASE new/libwbxml-0.11.6/RELEASE --- old/libwbxml-0.11.5/RELEASE 2017-02-12 12:52:29.000000000 +0100 +++ new/libwbxml-0.11.6/RELEASE 2017-08-15 20:21:11.000000000 +0200 @@ -24,7 +24,6 @@ * Reset to 0 if any interface has been removed since last release. If any interface has been added then increment. - - Run "make test" again several times to try to see race conditions. "cd trunk" "cmake . -B/tmp/build/libwbxml" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libwbxml-0.11.5/src/wbxml_tables.c new/libwbxml-0.11.6/src/wbxml_tables.c --- old/libwbxml-0.11.5/src/wbxml_tables.c 2017-02-12 13:11:40.000000000 +0100 +++ new/libwbxml-0.11.6/src/wbxml_tables.c 2017-08-15 14:44:43.000000000 +0200 @@ -3088,7 +3088,7 @@ { "Add", 0x11, 0x1c }, /* since 16.0 */ { "Delete", 0x11, 0x1d }, /* since 16.0 */ { "ClientId", 0x11, 0x1e }, /* since 16.0 */ - { "Content", 0x11, 0x1f }, /* since 16.0 */ + { "Content", 0x11, 0x1f, WBXML_TAG_OPTION_BINARY }, /* since 16.0 */ { "Location", 0x11, 0x20 }, /* since 16.0 */ { "Annotation", 0x11, 0x21 }, /* since 16.0 */ { "Street", 0x11, 0x22 }, /* since 16.0 */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libwbxml-0.11.5/test/tools/CMakeLists.txt new/libwbxml-0.11.6/test/tools/CMakeLists.txt --- old/libwbxml-0.11.5/test/tools/CMakeLists.txt 2017-02-12 13:08:10.000000000 +0100 +++ new/libwbxml-0.11.6/test/tools/CMakeLists.txt 2017-04-23 14:14:14.000000000 +0200 @@ -2,7 +2,7 @@ ENABLE_TESTING() CONFIGURE_FILE( "launchTests.sh" "${CMAKE_CURRENT_BINARY_DIR}/launchTests.sh") CONFIGURE_FILE( "normalize_xml.pl" "${CMAKE_CURRENT_BINARY_DIR}/normalize_xml.pl" @ONLY) -SET( activesync_tests 13 ) +SET( activesync_tests 14 ) SET( airsync_tests 4 ) SET( ddf_tests 2 ) # 2009-Jan-19 bellmich diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libwbxml-0.11.5/test/tools/activesync/activesync-012-provision-eas.xml new/libwbxml-0.11.6/test/tools/activesync/activesync-012-provision-eas.xml --- old/libwbxml-0.11.5/test/tools/activesync/activesync-012-provision-eas.xml 1970-01-01 01:00:00.000000000 +0100 +++ new/libwbxml-0.11.6/test/tools/activesync/activesync-012-provision-eas.xml 2017-04-23 15:33:14.000000000 +0200 @@ -0,0 +1,63 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE ActiveSync PUBLIC "-//MICROSOFT//DTD ActiveSync//EN" "http://www.microsoft.com/"> +<Provision xmlns="Provision:"> + <DeviceInformation xmlns="Settings:"> + <Status>1</Status> + </DeviceInformation> + <Status>1</Status> + <Policies> + <Policy> + <PolicyType>MS-EAS-Provisioning-WBXML</PolicyType> + <Status>1</Status> + <PolicyKey>1686474474</PolicyKey> + <Data> + <EASProvisionDoc> + <DevicePasswordEnabled>0</DevicePasswordEnabled> + <AlphanumericDevicePasswordRequired>0</AlphanumericDevicePasswordRequired> + <PasswordRecoveryEnabled>0</PasswordRecoveryEnabled> + <!-- <RequireStorageCardEncryption>0</RequireStorageCardEncryption> --> + <!-- Microsoft renamed this element --> + <DeviceEncryptionEnabled>0</DeviceEncryptionEnabled> + <AttachmentsEnabled>1</AttachmentsEnabled> + <MinDevicePasswordLength/> + <MaxInactivityTimeDeviceLock/> + <MaxDevicePasswordFailedAttempts/> + <MaxAttachmentSize/> + <AllowSimpleDevicePassword>1</AllowSimpleDevicePassword> + <DevicePasswordExpiration/> + <DevicePasswordHistory>0</DevicePasswordHistory> + <AllowStorageCard>1</AllowStorageCard> + <AllowCamera>1</AllowCamera> + <RequireDeviceEncryption>0</RequireDeviceEncryption> + <AllowUnsignedApplications>1</AllowUnsignedApplications> + <AllowUnsignedInstallationPackages>1</AllowUnsignedInstallationPackages> + <MinDevicePasswordComplexCharacters>1</MinDevicePasswordComplexCharacters> + <AllowWiFi>1</AllowWiFi> + <AllowTextMessaging>1</AllowTextMessaging> + <AllowPOPIMAPEmail>1</AllowPOPIMAPEmail> + <AllowBluetooth>2</AllowBluetooth> + <AllowIrDA>1</AllowIrDA> + <RequireManualSyncWhenRoaming>0</RequireManualSyncWhenRoaming> + <AllowDesktopSync>1</AllowDesktopSync> + <MaxCalendarAgeFilter>0</MaxCalendarAgeFilter> + <AllowHTMLEmail>1</AllowHTMLEmail> + <MaxEmailAgeFilter>0</MaxEmailAgeFilter> + <MaxEmailBodyTruncationSize>-1</MaxEmailBodyTruncationSize> + <MaxEmailHTMLBodyTruncationSize>-1</MaxEmailHTMLBodyTruncationSize> + <RequireSignedSMIMEMessages>0</RequireSignedSMIMEMessages> + <RequireEncryptedSMIMEMessages>0</RequireEncryptedSMIMEMessages> + <RequireSignedSMIMEAlgorithm>0</RequireSignedSMIMEAlgorithm> + <RequireEncryptionSMIMEAlgorithm>0</RequireEncryptionSMIMEAlgorithm> + <AllowSMIMEEncryptionAlgorithmNegotiation>2</AllowSMIMEEncryptionAlgorithmNegotiation> + <AllowSMIMESoftCerts>1</AllowSMIMESoftCerts> + <AllowBrowser>1</AllowBrowser> + <AllowConsumerEmail>1</AllowConsumerEmail> + <AllowRemoteDesktop>1</AllowRemoteDesktop> + <AllowInternetSharing>1</AllowInternetSharing> + <UnapprovedInROMApplicationList/> + <ApprovedApplicationList/> + </EASProvisionDoc> + </Data> + </Policy> + </Policies> +</Provision>
