Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion rpm/xrootd-s3-http.spec
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]> - 0.6.0-1
* Mon Jan 05 2026 Patrick Brophy <[email protected]> - 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 <[email protected]> - 0.5.3-1
- Fix directory listings for the POSC filtering plugin.
Expand Down
2 changes: 1 addition & 1 deletion src/CurlUtil.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
Loading