This commit is contained in:
Joey Hess 2018-08-30 15:52:44 -04:00
parent 3a5d0402ba
commit 69d4c8dce6
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38
2 changed files with 13 additions and 0 deletions

View file

@ -25,6 +25,9 @@ git-annex (6.20180808) UNRELEASED; urgency=medium
locales too.
* Stop using external hash programs, since cryptonite is faster.
* Fix build on FreeBSD.
* S3: Support buckets with versioning enabled. When a remote
is configured with exporttree=yes versioning=yes, git-annex can
download past versions of exported files from it.
-- Joey Hess <id@joeyh.name> Wed, 08 Aug 2018 11:24:08 -0400

View file

@ -0,0 +1,10 @@
Most of the way done with implementing support for export to S3 buckets
with versioning enabled. This will make the files from the most recent
`git annex export` be visible to users browsing the bucket, while letting
git-annex download any of the content from previous exports too.
Still need to test it. And, deletion of old content from such a bucket is
not supported, and my initial thoughts are that it might not be possible
in a multi-writer situation. I need to think about it more.
This work is supported by the NSF-funded DataLad project.