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
@@ -1,5 +1,5 @@
Name: xrootd-s3-http
Version: 0.6.7
Version: 0.6.8
Release: 1%{?dist}
Summary: S3/HTTP/Globus filesystem plugins for xrootd

Expand Down Expand Up @@ -59,6 +59,9 @@ rm %{buildroot}%{_libdir}/libXrdPelicanHttpCore.so
%license LICENSE

%changelog
* Tue May 26 2026 Mátyás Selmeci <mselmeci@wisc.edu> - 0.6.8-1
- Drop noisy s3_Statistics log messages

* Fri Apr 24 2026 Justin Hiemstra <jhiemstra@wisc.edu> - 0.6.7-1
- Fix S3 listing bug that broke object paths in downstream XML consumers

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.6.7");
curl_easy_setopt(result, CURLOPT_USERAGENT, "xrootd-s3/0.6.8");
curl_easy_setopt(result, CURLOPT_BUFFERSIZE, 32 * 1024);
curl_easy_setopt(result, CURLOPT_NOSIGNAL, 1L);

Expand Down
Loading