Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
544d376
build(deps): pin opendal to work around audit failure (#572)
Copilot Apr 20, 2026
3648d00
build(deps): bump lxml from 5.3.1 to 6.1.0 (#573)
dependabot[bot] Apr 22, 2026
f08efa0
build(deps): bump rustls-webpki from 0.103.12 to 0.103.13 (#576)
dependabot[bot] Apr 26, 2026
dca52ae
build(deps): bump openssl from 0.10.76 to 0.10.78 (#574)
dependabot[bot] Apr 26, 2026
12028c8
feat(s3s-fs): support conditional copy in copy_object (#577)
Nugine Apr 26, 2026
7f861fd
ci(e2e-s3tests): Pin s3-tests revision for deterministic CI (#581)
Copilot May 5, 2026
82f60cc
build(deps): bump the dependencies group with 10 updates (#578)
dependabot[bot] May 5, 2026
4095af3
build(deps): bump actions/upload-pages-artifact (#579)
dependabot[bot] May 5, 2026
1fa26d7
build(s3s-aws): make `s3s-aws` opt out of `aws-sdk-s3` default featur…
Copilot May 5, 2026
62cb4a7
build(deps): bump openssl from 0.10.78 to 0.10.79 (#582)
dependabot[bot] May 10, 2026
1b3408c
build(deps): bump urllib3 from 2.6.3 to 2.7.0 (#587)
dependabot[bot] May 17, 2026
928550a
fix(s3s): allow raw URI path SigV4 fallback (#589)
Nugine May 17, 2026
2f3c973
fix(s3s-fs): honor MetadataDirective::Replace in copy_object (#586)
ffedoroff May 17, 2026
cf9e3b9
feat(s3s-fs): support If-Match conditional on PutObject (#588)
tneely May 17, 2026
437ccc2
fix(s3s-fs): preserve content on CopyObject self-replace (#585)
ffedoroff May 17, 2026
e727c40
chore(deps): unlock opendal, update to 0.56.0 (#590)
Copilot May 18, 2026
1e080fc
build(deps): bump idna from 3.10 to 3.15 (#591)
dependabot[bot] May 20, 2026
c693f39
build(deps): bump workspace dependencies
houseme May 20, 2026
9db44a2
fix: resolve merge conflicts with origin/main
Copilot May 20, 2026
05bba65
style: format presigned canonical request calls
houseme May 20, 2026
83707bc
test: remove unused auth import in signature tests
houseme May 20, 2026
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
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,12 @@ jobs:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup
- name: Clone s3-tests
run: git clone --depth 1 https://github.com/ceph/s3-tests.git /tmp/s3-tests
run: |
. scripts/source-s3tests-ref.sh
git init /tmp/s3-tests
git -C /tmp/s3-tests remote add origin https://github.com/ceph/s3-tests.git
git -C /tmp/s3-tests fetch --depth 1 origin "$S3TESTS_REF"
git -C /tmp/s3-tests reset --hard FETCH_HEAD
- name: Get s3-tests requirements hash
id: s3tests-hash
run: echo "hash=$(sha256sum /tmp/s3-tests/requirements.txt | cut -d' ' -f1)" >> "$GITHUB_OUTPUT"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Add .nojekyll file
run: touch target/doc/.nojekyll
- name: Upload artifact
uses: actions/upload-pages-artifact@v4
uses: actions/upload-pages-artifact@v5
with:
path: ./target/doc

Expand Down
Loading
Loading