summaryrefslogtreecommitdiff
path: root/CHANGELOG
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2017-08-17 16:08:35 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2017-08-17 16:18:34 -0400
commite50372f632de988bbe48173081ba0367d7790193 (patch)
treeefb793295959a8a82fe5b3d600dc17d795b85971 /CHANGELOG
parent186832323027f71ebf4a2691b4ace0f182585474 (diff)
external: nice error message for keys with spaces in their name
External special remotes will refuse to operate on keys with spaces in their names. That has never worked correctly due to the design of the external special remote protocol. Display an error message suggesting migration. Not super happy with this, but it's a pragmatic solution. Better than complicating the external special remote interface and all external special remotes. Note that I only made it use SafeKey in Request, not Response. git-annex does not construct a Response, so that would not add any safety. And presumably, if git-annex avoids feeding any such keys to an external special remote, it will never have a reason to make a Response using such a key. If it did, it would result in a protocol error anyway. There's still a Serializeable instance for Key; it's used by P2P.Protocol. There, the Key is always in the final position, so it's ok if it contains spaces. Note that the protocol documentation has been fixed to say that the File may contain spaces. One way that can happen, even though the Key can't, is when using direct mode, and the work tree filename contains spaces. When sending such a file to the external special remote the worktree filename is used. This commit was sponsored by Thom May on Patreon.
Diffstat (limited to 'CHANGELOG')
-rw-r--r--CHANGELOG8
1 files changed, 8 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 91a1e3488..bb3a73a1c 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -23,6 +23,14 @@ git-annex (6.20170521) UNRELEASED; urgency=medium
external special remote protocol.
* migrate: WORM keys containing spaces will be migrated to not contain
spaces anymore.
+ * External special remotes will refuse to operate on keys with spaces in
+ their names. That has never worked correctly due to the design of the
+ external special remote protocol. Display an error message suggesting
+ migration.
+ * Fix incorrect external special remote documentation, which said that
+ the filename parameter to the TRANSFER command could not contain
+ spaces. It can in fact contain spaces. Special remotes implementors
+ that relied on that may need to fix bugs in their special remotes.
-- Joey Hess <id@joeyh.name> Sat, 17 Jun 2017 13:02:24 -0400