Hello community, here is the log from the commit of package orthanc for openSUSE:Factory checked in at 2020-11-12 22:37:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/orthanc (Old) and /work/SRC/openSUSE:Factory/.orthanc.new.24930 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "orthanc" Thu Nov 12 22:37:45 2020 rev:8 rq:846154 version:1.8.0 Changes: -------- --- /work/SRC/openSUSE:Factory/orthanc/orthanc.changes 2020-06-02 14:34:29.986735659 +0200 +++ /work/SRC/openSUSE:Factory/.orthanc.new.24930/orthanc.changes 2020-11-12 22:38:09.686064734 +0100 @@ -1,0 +2,50 @@ +Fri Oct 16 10:46:46 UTC 2020 - Axel Braun <[email protected]> + +- version 1.8.0 +* Serving the content of Orthanc as a WebDAV network share +* New config options: "WebDavEnabled", "WebDavDeleteAllowed" and "WebDavUploadAllowed" + +------------------------------------------------------------------- +Fri Sep 18 14:50:14 UTC 2020 - Axel Braun <[email protected]> + +- Version 1.7.4 +* New configuration options to enable HTTP peers identification through certificates: + "SslVerifyPeers" and "SslTrustedClientCertificates" +* New configuration option "SyncStorageArea" to immediately commit the files onto the disk + (through fsync()), so as to avoid discrepencies between DB and filesystem in case of hard + shutdown of the machine running Orthanc. This slows down adding new files into Orthanc. +* Underscores are now allowed in peers/modalities symbolic names +* Fix compatibility with C-MOVE SCU requests issued by Ambra +* Fix transcoding in C-MOVE SCP, in the case where "SynchronousCMove" is "true" +* When checking DICOM allowed methods, if there are multiple modalities with the same AET, + differentiate them from the calling IP +* Enable the access to raw frames in Philips ELSCINT1 proprietary compression +* Support empty key passwords when using HTTP client certificates +* Fix handling of "ModalitiesInStudy" (0008,0061) in C-FIND and "/tools/find" + +------------------------------------------------------------------- +Tue Aug 25 09:02:07 UTC 2020 - Axel Braun <[email protected]> + +- Version 1.7.3 + +* API version upgraded to 8 +* "/peers/{id}/store": New option "Compress" to compress DICOM data using gzip +* "OrthancPeerStore" jobs now report the transmitted size in their public content +* New config option "Worklist.LimitAnswers" for the sample modality worklist plugin +* Add missing tag "Retrieve AE Title (0008,0054)" in C-FIND SCP responses +* Fix DICOM SCP filters if some query tag has > 256 characters (list of UIDs matching) +* "/series/.../ordered-slices" supports spaces in Image Position/Orientation Patient tags +* Fix possible crash in HttpClient if sending multipart body (can occur in STOW-RS) +* Support receiving multipart messages larger than 2GB in the embedded HTTP server + +------------------------------------------------------------------- +Sun Aug 2 15:19:18 UTC 2020 - Axel Braun <[email protected]> + +- Version 1.7.2 + * C-FIND SCP now returns private tags (cf. option "DefaultPrivateCreator") + * Packaging of the Orthanc framework as a shared library + * New change types in the SDK: JobSubmitted, JobSuccess, JobFailure + * Issue #182: Better reporting of errors in plugins reading chunked HTTP body + * Fix issue #183 (C-ECHO always fails in Orthanc Explorer, regression from 1.6.1 to 1.7.0) + +------------------------------------------------------------------- Old: ---- Orthanc-1.7.1.tar.gz VersionsTests.cpp New: ---- Orthanc-1.8.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ orthanc.spec ++++++ --- /var/tmp/diff_new_pack.bUNIL7/_old 2020-11-12 22:38:11.294066412 +0100 +++ /var/tmp/diff_new_pack.bUNIL7/_new 2020-11-12 22:38:11.298066417 +0100 @@ -18,7 +18,7 @@ Name: orthanc -Version: 1.7.1 +Version: 1.8.0 Release: 0 Summary: RESTful DICOM server for healthcare and medical research License: GPL-3.0-or-later @@ -30,7 +30,6 @@ Source3: serve-folders.json Source4: worklists.json Source5: index.html -Source6: VersionsTests.cpp Source7: orthanc-rpmlintrc Source8: Configuration.json # Sources for plugin - need a defined version, so taking them from orthanc-server @@ -51,6 +50,7 @@ BuildRequires: jsoncpp-devel BuildRequires: libboost_date_time-devel >= 1.66 BuildRequires: libboost_filesystem-devel >= 1.66 +BuildRequires: libboost_iostreams-devel >= 1.66 BuildRequires: libboost_locale-devel >= 1.66 BuildRequires: libboost_regex-devel >= 1.66 BuildRequires: libboost_system-devel >= 1.66 @@ -121,21 +121,22 @@ cp %{S:1} %{S:2} . -cp %{S:6} UnitTestsSources/. +##cp %{S:6} UnitTestsSources/. #slight change in standard configuration for OrthancStorage -cp %{S:8} Resources/. +cp %{S:8} OrthancServer/Resources/. #OrthanPlugins may ask for additional files to be loaded #Putting them into this folder prevents download of sources from the web -mkdir -p Plugins/Samples/ConnectivityChecks/ThirdPartyDownloads -cp %{S:10} %{S:11} %{S:12} %{S:13} Plugins/Samples/ConnectivityChecks/ThirdPartyDownloads/. +mkdir -p OrthancServer/Plugins/Samples/ConnectivityChecks/ThirdPartyDownloads +cp %{S:10} %{S:11} %{S:12} %{S:13} OrthancServer/Plugins/Samples/ConnectivityChecks/ThirdPartyDownloads/. %build -%cmake .. \ +%cmake ../OrthancServer \ -DSTANDALONE_BUILD:BOOL=ON \ -DSTATIC_BUILD:BOOL=OFF \ -DENABLE_CIVETWEB=ON \ + -DORTHANC_UNIT_TESTS_LINK_FRAMEWORK=OFF \ -DUSE_SYSTEM_MONGOOSE=OFF \ -DSYSTEM_MONGOOSE_USE_CALLBACKS=OFF \ -DUNIT_TESTS_WITH_HTTP_CONNEXIONS=OFF \ @@ -151,7 +152,7 @@ %ifarch != ix86 build/UnitTests %else -build/UnitTests --gtest_filter=-ImageProcessing.Convolution +build/UnitTests --gtest_filter=-ImageProcessing.Convolution --gtest_filter=-Version.CivetwebCompression %endif %install @@ -217,8 +218,8 @@ # Prepare documentation: "index.html", Doxygen of plugin SDK, and sample codes cp -r %{S:5} %{buildroot}%{_docdir}/%{name}/ -cp -r Resources/Samples/ %{buildroot}%{_docdir}/%{name}/Samples -cp -r Plugins/Samples/ %{buildroot}%{_docdir}/%{name}/OrthancPluginSamples +cp -r OrthancServer/Resources/Samples/ %{buildroot}%{_docdir}/%{name}/Samples +cp -r OrthancServer/Plugins/Samples/ %{buildroot}%{_docdir}/%{name}/OrthancPluginSamples %pre getent group orthanc >/dev/null || groupadd -r orthanc ++++++ Orthanc-1.7.1.tar.gz -> Orthanc-1.8.0.tar.gz ++++++ ++++ 376960 lines of diff (skipped) _______________________________________________ openSUSE Commits mailing list -- [email protected] To unsubscribe, email [email protected] List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette List Archives: https://lists.opensuse.org/archives/list/[email protected]
