Skip to content

Commit 6979139

Browse files
committed
Bump version and changelog for 0.5.1.
1 parent 5176639 commit 6979139

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

rpm/xrootd-s3-http.spec

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: xrootd-s3-http
2-
Version: 0.5.0
2+
Version: 0.5.1
33
Release: 1%{?dist}
44
Summary: S3/HTTP filesystem plugins for xrootd
55

@@ -50,9 +50,17 @@ cmake --build redhat-linux-build --verbose
5050
%license LICENSE
5151

5252
%changelog
53+
* Wed Aug 27 2025 Brian Bockelman <bbockelman@morgridge.org> - 0.5.1-1
54+
- Minor build fixes for a wider set of platforms.
55+
- Ensure unit tests can succeed even when running without network connectivity
56+
- Bump user agent version (forgotten in 0.5.0).
57+
5358
* Wed Jul 30 2025 William Jiang <whjiang@wisc.edu> - 0.5.0-1
5459
- Add support for Globus endpoints (reads, writes, listings)
55-
- Add support for HTTP writes
60+
- Add support for HTTP writes
61+
- Add new "Persist on Successful Close" (POSC) plugin to prevent files being
62+
uploaded from being visible in the namespace.
63+
- The HTTP OSS plugin can do file listings based on generated directories.
5664

5765
* Fri May 30 2025 Brian Bockelman <bbockelman@morgridge.org> - 0.4.1-1
5866
- Fix stall timeouts which would never fire.

src/CurlUtil.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ CURL *HandlerQueue::GetHandle() {
5858
return result;
5959
}
6060

61-
curl_easy_setopt(result, CURLOPT_USERAGENT, "xrootd-s3/0.4.1");
61+
curl_easy_setopt(result, CURLOPT_USERAGENT, "xrootd-s3/0.5.1");
6262
curl_easy_setopt(result, CURLOPT_BUFFERSIZE, 32 * 1024);
6363
curl_easy_setopt(result, CURLOPT_NOSIGNAL, 1L);
6464

0 commit comments

Comments
 (0)