diff --git a/rpm/xrootd-s3-http.spec b/rpm/xrootd-s3-http.spec index d654a4d..eb1d764 100644 --- a/rpm/xrootd-s3-http.spec +++ b/rpm/xrootd-s3-http.spec @@ -48,13 +48,16 @@ cmake --build redhat-linux-build --verbose %{_libdir}/libXrdOssS3-5.so %{_libdir}/libXrdOssFilter-5.so %{_libdir}/libXrdOssPosc-5.so +%{_libdir}/libXrdN2NPrefix-5.so %doc README.md %license LICENSE %changelog -* Fri Dec 12 2025 William Jiang - 0.6.0-1 +* Mon Jan 05 2026 Patrick Brophy - 0.6.0-1 - Fix some race conditions with the Globus plugin. - Package the new libXrdPelicanHttpCore shared object which addresses the above. +- Add file size verification to POSC plugin to prevent incomplete uploads +- New XRootD Name2Name plugin to perform path prefix substitution * Fri Oct 24 2025 Brian Bockelman - 0.5.3-1 - Fix directory listings for the POSC filtering plugin. diff --git a/src/CurlUtil.cc b/src/CurlUtil.cc index e657a1e..de6f031 100644 --- a/src/CurlUtil.cc +++ b/src/CurlUtil.cc @@ -58,7 +58,7 @@ CURL *HandlerQueue::GetHandle() { return result; } - curl_easy_setopt(result, CURLOPT_USERAGENT, "xrootd-s3/0.5.3"); + curl_easy_setopt(result, CURLOPT_USERAGENT, "xrootd-s3/0.6.0"); curl_easy_setopt(result, CURLOPT_BUFFERSIZE, 32 * 1024); curl_easy_setopt(result, CURLOPT_NOSIGNAL, 1L);