
* Fix minor FD leak in journal code. Closes: #754608 * direct: Fix handling of case where a work tree subdirectory cannot be written to due to permissions. * migrate: Avoid re-checksumming when migrating from hashE to hash backend. * uninit: Avoid failing final removal in some direct mode repositories due to file modes. * S3: Deal with AWS ACL configurations that do not allow creating or checking the location of a bucket, but only reading and writing content to it. * resolvemerge: New plumbing command that runs the automatic merge conflict resolver. * Deal with change in git 2.0 that made indirect mode merge conflict resolution leave behind old files. * sync: Fix git sync with local git remotes even when they don't have an annex.uuid set. (The assistant already did so.) * Set gcrypt-publish-participants when setting up a gcrypt repository, to avoid unncessary passphrase prompts. This is a security/usability tradeoff. To avoid exposing the gpg key ids who can decrypt the repository, users can unset gcrypt-publish-participants. * Install nautilus hooks even when ~/.local/share/nautilus/ does not yet exist, since it is not automatically created for Gnome 3 users. * Windows: Move .vbs files out of git\bin, to avoid that being in the PATH, which caused some weird breakage. (Thanks, divB) * Windows: Fix locking issue that prevented the webapp starting (since 5.20140707). # imported from the archive
23 lines
973 B
Markdown
23 lines
973 B
Markdown
Turns out that in the last release I broke making box.com, Amazon S3 and
|
|
Glacier remotes from the webapp. Fixed that.
|
|
|
|
Also, dealt with changes in the haskell DAV library that broke support for
|
|
box.com, and worked around an exception handling bug in the library.
|
|
|
|
I think I should try to enhance the test suite so it can run live tests
|
|
on special remotes, which would at least have caught the some of these
|
|
recent problems...
|
|
|
|
----
|
|
|
|
Since metadata is tied to a particular key, editing an annexed file,
|
|
which causes the key to change, made the metadata seem to get lost.
|
|
|
|
I've now fixed this; it copies the metadata from the old version to the new
|
|
one. (Taking care to copy the log file identically, so git can reuse its
|
|
blob.)
|
|
|
|
That meant that `git annex add` has to check every file it adds to see if
|
|
there's an old version. Happily, that check is fairly fast; I benchmarked my
|
|
laptop running 2500 such checks a second. So it's not going to slow things
|
|
down appreciably.
|