# HG changeset patch # User Sebastien Jodogne # Date 1620382188 -7200 # Node ID 38f5fb0885c41bd5cc37e7880c2b8a5a86eb813d # Parent e8967149d87a9eb941918abddc173f6b6cf06f05# Parent 66f6fd77deaf93067ebc79e88eec1ac7f4a2e421 back to mainline diff -r e8967149d87a -r 38f5fb0885c4 NEWS --- a/NEWS Fri May 07 06:35:13 2021 +0200 +++ b/NEWS Fri May 07 12:09:48 2021 +0200 @@ -1,19 +1,34 @@ Pending changes in the mainline =============================== + +Version 1.9.3 (2021-05-07) +========================== + +General +------- + * New configuration option: "DicomTlsRemoteCertificateRequired" to allow secure DICOM TLS connections without certificate + +REST API +-------- + * "ETag" headers for metadata and attachments now allow strong comparison (MD5 is included) -* Fixed the lifetime of temporary files associated with jobs that create ZIP archive/media: + +Maintenance +----------- + +* New CMake option: "ORTHANC_LUA_VERSION" to use a specific version of system-wide Lua +* Fix the lifetime of temporary files associated with jobs that create ZIP archive/media: - In synchronous mode, their number could grow up to "JobsHistorySize" in Orthanc <= 1.9.2 - In asynchronous mode, the temporary files are removed as soon as their job gets canceled * Fix regression in the handling of "DicomCheckModalityHost" configuration option introduced by changeset 4182 in Orthanc 1.7.4 -* New CMake option: "ORTHANC_LUA_VERSION" to use a specific version of system-wide Lua * Reduced memory consumption of "OrthancPluginHttpClient()", "OrthancPluginHttpClient2()" and "OrthancPluginCallPeerApi()" on POST/PUT if chunked transfer is disabled * Fix issue #195 (No need for BulkDataURI when Data Element is empty) - + Version 1.9.2 (2021-04-22) ========================== diff -r e8967149d87a -r 38f5fb0885c4 OrthancFramework/Resources/CMake/DownloadOrthancFramework.cmake --- a/OrthancFramework/Resources/CMake/DownloadOrthancFramework.cmake Fri May 07 06:35:13 2021 +0200 +++ b/OrthancFramework/Resources/CMake/DownloadOrthancFramework.cmake Fri May 07 12:09:48 2021 +0200 @@ -128,6 +128,8 @@ set(ORTHANC_FRAMEWORK_MD5 "08eebc66ef93c3b40115c38501db5fbd") elseif (ORTHANC_FRAMEWORK_VERSION STREQUAL "1.9.2") set(ORTHANC_FRAMEWORK_MD5 "3ea66c09f64aca990016683b6375734e") + elseif (ORTHANC_FRAMEWORK_VERSION STREQUAL "1.9.3") + set(ORTHANC_FRAMEWORK_MD5 "9b86e6f00e03278293cd15643cc0233f") # Below this point are development snapshots that were used to # release some plugin, before an official release of the Orthanc diff -r e8967149d87a -r 38f5fb0885c4 OrthancFramework/Resources/CMake/OrthancFrameworkParameters.cmake