1git-annex (8.20210903) upstream; urgency=medium
2
3  * Deal with clock skew, both forwards and backwards, when logging
4    information to the git-annex branch.
5  * GIT_ANNEX_VECTOR_CLOCK can now be set to a fixed value (eg 1)
6    rather than needing to be advanced each time a new change is made.
7  * Misuse of GIT_ANNEX_VECTOR_CLOCK will no longer confuse git-annex.
8  * add: When adding a dotfile, avoid treating its name as an extension.
9  * rsync special remote: Stop displaying rsync progress, and use
10    git-annex's own progress display.
11  * Many special remotes now checksum content while it is being retrieved,
12    instead of in a separate pass at the end. This is supported for all
13    special remotes on Linux (except for bittorrent), and for many
14    on other OS's (except for adb, external, gcrypt, hook, and rsync).
15  * unused: Skip the refs/annex/last-index ref that git-annex recently
16    started creating.
17  * Fix test suite failure on Windows.
18  * New --batch-keys option added to these commands:
19    get, drop, move, copy, whereis
20  * Added annex.youtube-dl-command config. This can be used to run some
21    forks of youtube-dl.
22  * Run cp -a with --no-preserve=xattr, to avoid problems with copied
23    xattrs, including them breaking permissions setting on some NFS
24    servers.
25  * add, import: Detect when xattrs or perhaps ACLs prevent removing
26    write permissions from an annexed file, and fail with an informative
27    message.
28  * Fix support for readonly git remotes.
29    (Reversion in version 8.20210621)
30  * When downloading urls fail, explain which urls failed for which
31    reasons.
32  * web: Avoid displaying a warning when downloading one url failed
33    but another url later succeeded.
34
35 -- Joey Hess <id@joeyh.name>  Fri, 03 Sep 2021 12:00:46 -0400
36
37git-annex (8.20210803) upstream; urgency=medium
38
39  * whereused: New command, finds what files use a key, or where a key
40    was used historically.
41  * Fix a bug that prevented getting content from a repository that
42    started out as a bare repository, or had annex.crippledfilesystem
43    set, and was converted to a non-bare repository.
44  * Fix retrieval of content from borg repos accessed over ssh.
45  * sync: When --quiet is used, run git commit, push, and pull without
46    their ususual output.
47  * merge: When --quiet is used, run git merge without its usual output.
48  * sync, merge, post-receive: Avoid merging unrelated histories,
49    which used to be allowed only to support direct mode repositories.
50    (However, sync does still merge unrelated histories when importing
51    trees from special remotes, and the assistant still merges unrelated
52    histories.)
53  * sync, merge: Added --allow-unrelated-histories option, which
54    is the same as the git merge option.
55  * Fix bug that caused some transfers to incorrectly fail with
56    "content changed while it was being sent", when the content was not
57    changed.
58  * Fix bug that could prevent pointer files from being populated,
59    in a repository that was upgraded from v7.
60  * fsck: Detect and correct stale or missing inode caches.
61  * Fix a rounding bug in display of data sizes.
62  * git-annex get when run as the first git-annex command in a new repo
63    did not populate unlocked files.
64    (Reversion in version 8.20210621)
65
66 -- Joey Hess <id@joeyh.name>  Tue, 03 Aug 2021 12:20:09 -0400
67
68git-annex (8.20210714) upstream; urgency=medium
69
70  * assistant: Avoid unncessary git repository repair in a situation where
71    git fsck gets confused about a commit that is made while it's running.
72  * addurl: Avoid crashing when used on beegfs.
73  * --debug output goes to stderr again, not stdout.
74    (Reversion in version 8.20210428)
75  * init: Fix misbehavior when core.sharedRepository = group that
76    caused it to enter an adjusted branch and set annex.crippledfilesystem
77    (Reversion in version 8.20210630)
78  * assistant: When adding non-large files to git, honor annex.delayadd
79    configuration. Also, don't add non-large files to git when they
80    are still being written to.
81
82 -- Joey Hess <id@joeyh.name>  Wed, 14 Jul 2021 12:22:55 -0400
83
84git-annex (8.20210630) upstream; urgency=medium
85
86  * Fixed bug that interrupting git-annex repair (or assistant) while
87    it was fixing repository corruption would lose objects that were
88    contained in pack files. Also the assistant might sometimes have
89    crashed with the same result.
90  * repair: Fix reversion in version 8.20200522 that prevented fetching
91    missing objects from remotes.
92  * sync: Partly work around github behavior that first branch to be pushed
93    to a new repository is assumed to be the head branch, by not pushing
94    synced/git-annex first.
95  * Added annex.freezecontent-command and annex.thawcontent-command
96    configs.
97  * Improve display of errors when transfers fail.
98  * Dropping an unused object with drop --unused or dropunused will
99    mark it as dead, preventing fsck --all from complaining about it
100    after it's been dropped from all repositories.
101  * addurl, importfeed: Added --no-raw option that forces download
102    with youtube-dl or a special remote. In particular this can avoid
103    falling back to raw download when youtube-dl is blocked for some
104    reason.
105
106 -- Joey Hess <id@joeyh.name>  Wed, 30 Jun 2021 11:48:16 -0400
107
108git-annex (8.20210621) upstream; urgency=medium
109
110  * New matching options --excludesamecontent and --includesamecontent
111  * When two files have the same content, and a required content expression
112    matches one but not the other, dropping the latter file will fail as it
113    would also remove the content of the required file.
114  * drop, move, mirror: When two files have the same content, and
115    different numcopies or requiredcopies values, use the higher value.
116  * drop --auto: When two files have the same content, and a preferred content
117    expression matches one but not the other, do not drop the content.
118  * sync --content, assistant: When two unlocked files have the same
119    content, and a preferred content expression matches one but not the
120    other, do not drop the content. (This was already the case for locked
121    files.)
122  * sync --content, assistant: Fix an edge case where a file that is not
123    preferred content did not get dropped.
124  * filter-branch: New command, useful to produce a filtered version of the
125    git-annex branch, eg when splitting a repository.
126  * fromkey: Create an unlocked file when used in an adjusted branch
127    where the file should be unlocked, or when configured by annex.addunlocked.
128  * Fix behavior of several commands, including reinject, addurl, and rmurl
129    when given an absolute path to an unlocked file, or a relative path
130    that leaves and re-enters the repository.
131  * smudge: Fix a case where an unlocked annexed file that annex.largefiles
132    does not match could get its unchanged content checked into git,
133    due to git running the smudge filter unecessarily.
134  * reinject: Error out when run on a file that is not annexed, rather
135    than silently skipping it.
136  * assistant: Fix a crash on startup by avoiding using forkProcess.
137  * init: When annex.commitmessage is set, use that message for the commit
138    that creates the git-annex branch.
139  * Added annex.adviceNoSshCaching config.
140  * Added --size-limit option.
141  * Future proof activity log parsing.
142  * Fix an exponential slowdown when large numbers of duplicate files are
143    being added in unlocked form.
144
145 -- Joey Hess <id@joeyh.name>  Mon, 21 Jun 2021 12:17:24 -0400
146
147git-annex (8.20210428) upstream; urgency=medium
148
149  * New annex.private and remote.name.annex-private configs that can
150    prevent storing information about a repository and remotes in the
151    git-annex branch.
152  * initremote: Added --private option to set up a private special remote.
153  * importfeed: Made "checking known urls" phase run 12 times faster.
154  * Added --debugfilter (and annex.debugfilter)
155  * diffdriver: Support unlocked files.
156  * forget: Preserve currently exported trees, avoiding problems with
157    exporttree remotes in some unusual circumstances.
158  * fsck: When downloading content from a remote, if the content is able
159    to be verified during the transfer, skip checksumming it a second time.
160  * directory: When cp supports reflinks, use it.
161  * Avoid excess commits to the git-annex branch when stall detection is
162    enabled.
163  * git-annex-config: Allow setting annex.securehashesonly, which has
164    otherwise been supported since 2019, but was missing from the list of
165    allowed repo-global configs.
166  * init: Fix a crash when the repo's was cloned from a repo that had an
167    adjusted branch checked out, and the origin remote is not named "origin".
168  * Fix some bugs that made git-annex not see recently recorded status
169    information when configured with annex.alwayscommit=false.
170  * When mincopies is set to a larger value than numcopies, make sure that
171    mincopies is satisfied. Before, it assumed a sane configuration would
172    have numcopies larger or equal to mincopies. It's still a good idea
173    not to configure git-annex this way.
174  * Avoid more than 1 gpg password prompt at the same time, which
175    could happen occasionally before when concurrency is enabled.
176  * Fix build with persistent-2.12.0.1
177
178 -- Joey Hess <id@joeyh.name>  Wed, 28 Apr 2021 12:13:24 -0400
179
180git-annex (8.20210330) upstream; urgency=medium
181
182  * Behavior change: When autoenabling special remotes of type S3, weddav,
183    or glacier, do not take login credentials from environment variables,
184    as the user may not be expecting the autoenable to happen, or may
185    have those set for other purposes and not intend git-annex to use them.
186  * New annex.supportunlocked config that can be set to false to avoid
187    some expensive things needed to support unlocked files, if you do not
188    use them.
189  * Fix bug importing from a special remote into a subdirectory more than
190    one level deep, which generated unusual git trees that could confuse
191    git merge.
192  * borg: Fix a bug that prevented importing keys of type URL and WORM.
193  * borg: Support importing files that are hard linked in the borg backup.
194  * export: When a submodule is in the tree to be exported, skip it.
195  * import: When the previously exported tree contained a submodule,
196    preserve it in the imported tree so it does not get deleted.
197  * export --json: Fill in the file field.
198  * rmurl: When youtube-dl was used for an url, it no longer needs to be
199    prefixed with "yt:" in order to be removed.
200  * rmurl: If an url is both used by the web and also claimed by another
201    special remote, fix a bug that caused the url to to not be removed.
202  * unregisterurl: Fix a bug that caused an url to not be unregistered
203    when it is claimed by a special remote other than the web.
204  * whereis: Don't include yt: prefix when showing url to content
205    retrieved with youtube-dl.
206  * webdav: Work around some buggy webdav server behavior involving
207    renaming files.
208  * Make --debug also enable debugging in child git-annex processes.
209  * fsck: When --from is used in combination with --all or similar options,
210    do not verify required content, which can't be checked properly when
211    operating on keys.
212  * Sped up git-annex init in a clone of an existing repository.
213  * Improved display of errors when accessing a git http remote fails.
214  * Fix build with attoparsec-0.14.
215
216 -- Joey Hess <id@joeyh.name>  Tue, 30 Mar 2021 13:01:17 -0400
217
218git-annex (8.20210310) upstream; urgency=medium
219
220  * When non-annexed files in a tree are exported to a special remote,
221    importing from the special remote keeps the files non-annexed,
222    as long as their content has not changed, rather than converting
223    them to annexed files.
224    (Such a conversion will still happen when importing from a remote
225    an old git-annex exported such a tree to before; export the tree
226    with the new git-annex before importing to avoid that.)
227  * Added support for git-remote-gcrypt's rsync URIs, which access a remote
228    using rsync over ssh, and which git pushes to much more efficiently
229    than ssh urls.
230  * unregisterurl: New command.
231  * registerurl: Allow it to be used in a bare repository.
232  * Prevent combinations of options such as --all with --include.
233  * Fixed handling of --mimetype or --mimeencoding combined with
234    options like --all or --unused.
235  * Fix handling of --branch combined with --unlocked or --locked.
236  * Fix support for local gcrypt repositories with a space in their URI.
237  * uninit: Fix a small bug that left a lock file in .git/annex
238  * Windows: Correct the path to the html help file for 64 bit build.
239  * OSX dmg: Updated bundled git to 2.30.2 which fixes CVE-2021-21300.
240
241 -- Joey Hess <id@joeyh.name>  Wed, 10 Mar 2021 13:58:15 -0400
242
243git-annex (8.20210223) upstream; urgency=medium
244
245  * annex.stalldetection can now be set to "true" to make git-annex
246    do automatic stall detection when it detects a remote is updating its
247    transfer progress consistently enough for stall detection to work.
248  * When annex.stalldetection is not enabled and a likely stall is
249    detected, display a suggestion to enable it.
250  * Commands can be added to git-annex, by installing a program in PATH
251    with a name starting with "git-annex-"
252  * Fix a reversion that made import of a tree from a special remote
253    result in a merge that deleted files that were not preferred content
254    of that special remote.
255  * Bugfix: fsck --from a ssh remote did not actually check that the
256    content on the remote is not corrupted.
257  * unannex, uninit: When an annexed file is modified, don't overwrite
258    the modified version with an older version from the annex.
259  * When adding files to an adjusted branch set up by --unlock-present,
260    add them unlocked, not locked.
261  * Fix an oddity in matching options and preferred content expressions
262    such as "foo (bar or baz)", which was incorrectly handled as if
263    it were "(foo or bar) and baz)" rather than the intended
264    "foo and (bar or baz)"
265  * Checksum as content is received from a remote git-annex repository,
266    rather than doing it in a second pass.
267  * Tahoe: Avoid verifying hash after download, since tahoe does sufficient
268    verification itself.
269  * unannex, uninit: Don't run git rm once per annexed file,
270    for a large speedup.
271  * When a git remote is configured with an absolute path, use that
272    path, rather than making it relative.
273  * get: Improve output when failing to get a file fails.
274  * Fix build on openbsd.
275    Thanks, James Cook for the patch.
276  * Include libkqueue.h file needed to build the assistant on BSDs.
277
278 -- Joey Hess <id@joeyh.name>  Tue, 23 Feb 2021 14:40:14 -0400
279
280git-annex (8.20210127) upstream; urgency=medium
281
282  * Added mincopies configuration. This is like numcopies, but is
283    enforced even more strictly. While numcopies can be violated in
284    concurrent drop situations involving special remotes that do not
285    support locking, mincopies cannot be. The default value has always
286    been 1, but now it can be set to higher values if desired.
287  * Behavior change: When numcopies is set to 0, git-annex used to drop
288    content without requiring any copies. Now to get that (highly unsafe)
289    behavior, mincopies also needs to be set to 0.
290  * Behavior change: git-annex trust now needs --force, since unconsidered
291    use of trusted repositories can lead to data loss.
292  * Behavior change: --trust and --trust-glacier options no longer overrides
293    trust, since that can lead to data loss, which should never be enabled
294    by an option other than --force.
295  * add: Significantly speed up adding lots of non-large files to git,
296    by disabling the annex smudge filter when running git add.
297  * add --force-small: Run git add rather than updating the index itself,
298    so any other smudge filters than the annex one that may be enabled will
299    be used.
300  * Fix --time-limit, which got broken in several ways by some optimisations
301    in version 8.20201007.
302  * When syncing changes back from an adjusted branch to the basis branch,
303    include deletions of submodules.
304    Thanks, Kyle Meyer for the patch.
305  * Bug fix: export with -J could fail when two files had the same content.
306  * Bug fix: Fix tilde expansion in ssh urls when the tilde is the last
307    character in the url.
308    Thanks, Grond for the patch.
309  * Avoid crashing when there are remotes using unparseable urls.
310    Including the non-standard URI form that git-remote-gcrypt uses for rsync.
311  * Directory special remotes with importtree=yes now avoid unncessary
312    hashing when inodes of files have changed, as happens whenever a FAT
313    filesystem gets remounted.
314  * Fix a bug that prevented git-annex init from working in a submodule.
315  * Fix a bug in view filename generation when a metadata value ended with
316    "/" (or ":" or "\" on Windows)
317  * adjust: Fix some bad behavior when unlocked files use URL keys.
318  * smudge: Fix some bad behavior when git add is run on an unlocked
319    file that used an URL key.
320  * Added GETGITREMOTENAME to external special remote protocol.
321  * Windows: Work around win32 length limits when dealing with lock files.
322
323 -- Joey Hess <id@joeyh.name>  Wed, 27 Jan 2021 11:09:25 -0400
324
325git-annex (8.20201129) upstream; urgency=medium
326
327  * New borg special remote. This is a new kind of remote, that examines
328    borg backups of git-annex repositories, learns what files have been
329    backed up, and can restore files from the backup and so on. As well
330    as backups, it can be useful for archival storage, since borg can
331    efficiently store many related versions of files.
332  * New config annex.stalldetection, remote.name.annex-stalldetection,
333    which can be used to deal with remotes that stall during transfers,
334    or are sometimes too slow to want to use.
335  * Support special remotes that are configured with importtree=yes but
336    without exporttree=yes.
337  * Fix bug that made the next download after an empty file from a ssh
338    or tor remote fail.
339  * Avoid spurious "verification of content failed" message when downloading
340    content from a ssh or tor remote fails due to the remote no longer
341    having a copy of the content.
342  * Fix bug that matched include= and exclude= in preferred/required content
343    expressions relative to the current directory, rather than the path
344    from the top of the repository.
345    (Reversion introduced in version 8.20201116.)
346  * Fix hang on shutdown of external special remote using ASYNC protocol
347    extension.
348    (Reversion introduced in version 8.20201007.)
349  * Guard against running in a repo where annex.uuid is set but
350    annex.version is not set, or vice-versa.
351  * Avoid autoinit when a repo does not have annex.version or annex.uuid
352    set, but has a git-annex objects directory, suggesting it was used
353    by git-annex before, and the git config may have been lost.
354  * importfeed: Avoid using youtube-dl when a feed does not contain an
355    enclosure, but only a link to an url which youtube-dl does not support.
356  * initremote: Prevent enabling encryption with exporttree=yes or
357    importtree=yes.
358  * Windows: include= and exclude= containing '/' will also match filenames
359    that are written using '\'. (And vice-versa, but it's better to use '/'
360    for portability.)
361  * Fix a bug that could prevent getting files from an importtree=yes
362    remote, because the imported tree was allowed to be garbage collected.
363  * stack.yaml: Updated to lts-16.27.
364
365 -- Joey Hess <id@joeyh.name>  Tue, 29 Dec 2020 12:52:58 -0400
366
367git-annex (8.20201127) upstream; urgency=medium
368
369  * adjust: New --unlock-present mode which locks files whose content is not
370    present (so the broken symlink is visible), while unlocking files whose
371    content is present.
372  * Added annex.adjustedbranchrefresh git config to update adjusted
373    branches set up by git-annex adjust --unlock-present/--hide-missing.
374  * Fix hang when an external special remote program exited but
375    the stderr pipe to it was left open, due to a daemon having inherited
376    the file descriptor.
377  * Fix a bug that could make resuming a download from the web fail
378    when the entire content of the file is actually already present
379    locally.
380  * examinekey: Added a "file" format variable for consistency with find,
381    and for easier scripting.
382  * init: When writing hook scripts, set all execute bits, not only
383    the user execute bit.
384  * upgrade: Support an edge case upgrading a v5 direct mode repo
385    where nothing had ever been committed to the head branch.
386  * Made the test suite significantly less noisy, only displaying command
387    output when something failed.
388  * Fix building without the torrent library.
389    Thanks, Kyle Meyer.
390  * Fix build on Windows.
391  * Prevent windows assistant from trying (and failing) to upgrade
392    itself, which has never been supported on windows.
393
394 -- Joey Hess <id@joeyh.name>  Fri, 27 Nov 2020 12:54:11 -0400
395
396git-annex (8.20201116) upstream; urgency=medium
397
398  * move: Fix a regression in the last release that made move --to not
399    honor numcopies settings.
400  * sync --content: Fix a bug where a file that was not preferred content
401    could be transferred to a remote. This happened when the file got deleted
402    after the sync started running.
403  * Warn when adding a annex symlink or pointer file that uses a key that
404    is not known to the repository, to prevent confusion if the user has
405    copied it from some other repository.
406  * examinekey: Added two new format variables: objectpath and objectpointer
407  * examinekey: Added --migrate-to-backend
408
409 -- Joey Hess <id@joeyh.name>  Mon, 16 Nov 2020 09:36:35 -0400
410
411git-annex (8.20201103) upstream; urgency=medium
412
413  * move: Improve resuming a move that was interrupted after the object
414    was transferred, in cases where numcopies checks prevented the resumed
415    move from dropping the object from the source repository.
416  * When a special remote has chunking enabled, but no chunk sizes are
417    recorded (or the recorded ones are not found), speculatively try
418    chunks using the configured chunk size.
419  * Fixed some problems that prevented this command from working:
420    git submodule foreach git annex init
421  * Improve shutdown process for external special remotes and external
422    backends. Make sure to relay any remaining stderr from the process,
423    and potentially avoid the process getting a SIGPIPE if it writes to
424    stderr too late.
425  * Fix a bug that prevented linux standalone bundle from working on a fresh
426    install.
427  * Windows build changed to one done by the datalad-extensions project
428    using Github actions.
429  * Windows build now includes libmagic, so mimetype and mimeencoding
430    will work.
431    Thanks to John Thorvald Wodder II and Yaroslav Halchenko for their work
432    on this.
433  * view: Avoid using ':' from metadata when generating a view, because
434    it's a special character on Windows ("c:")
435  * Fix a memory leak introduced in the last release.
436  * add, import: Fix a reversion in 7.20191009 that broke handling
437    of --largerthan and --smallerthan.
438  * view: Fix a reversion in 8.20200522 that broke entering or changing views.
439  * Fix build on Windows with network-3.
440  * testremote: Display exceptions when tests fail, to aid debugging.
441
442 -- Joey Hess <id@joeyh.name>  Tue, 03 Nov 2020 11:40:56 -0400
443
444git-annex (8.20201007) upstream; urgency=medium
445
446  * --json output now includes a new field "input" which is the input
447    value (filename, url, etc) that caused a json object to be output.
448  * --batch combined with -J now runs batch requests concurrently for many
449    commands. Before, the combination was accepted, but did not enable
450    concurrency. Since the output of batch requests can be in any order,
451    --json with the new "input" field is recommended to be used,
452    to determine which batch request each response corresponds to.
453  * aws-0.22 improved its support for setting etags, which improves
454    support for versioned S3 buckets.
455  * Serialize use of C magic library, which is not thread safe.
456    This fixes failures uploading to S3 when using -J.
457  * add, addurl, importfeed, import: Added --no-check-gitignore option
458    for finer grained control than using --force.
459  * import: Check gitignores when importing trees from special remotes.
460  * addunused: Don't check .gitignores when adding files.
461  * Improve the "Try making some of these repositories available"
462    message, with some hints for the user for what to do.
463  * Improve --debug output to show pid of processes that are started and
464    stopped.
465  * sync --all: Sped up seeking to around twice as fast, by avoiding a
466    pass over the worktree files when preferred content expressions of the
467    local repo and remotes don't use include=/exclude=.
468  * Sped up seeking for files to operate on, when using options like
469    --copies or --in, by around 20%
470  * import --no-content: Check annex.largefiles, and import small
471    files into git, the same as is done when importing with content.
472    If the largefiles expression needs the file content available
473    (due to mimetype or mimeencoding being used), the import will fail.
474  * sync: When run without --content, import without copying from
475    importtree=yes directory special remotes.
476    (Other special remotes may support this later as well.)
477  * addurl: Avoid a redundant git ignores check for speed.
478  * upgrade: Avoid an upgrade failure of a bare repo in unusual circumstances.
479  * httpalso: Support being used with special remotes that do not have
480    encryption= in their config.
481  * Parse youtube-dl progress output, which lets progress be displayed
482    when doing concurrent downloads.
483  * Fix build with Benchmark build flag.
484  * Enable building with git-annex benchmark by default, only turning it
485    off when the criterion library is not installed.
486  * runshell: Fix a edge case where rm errors were sent to stdout, which
487    could confuse things parsing git-annex output.
488  * runshell: Update files atomically when preparing to run git-annex.
489  * Fix a build failure on Windows.
490
491 -- Joey Hess <id@joeyh.name>  Wed, 07 Oct 2020 12:19:05 -0400
492
493git-annex (8.20200908) upstream; urgency=medium
494
495  * Added httpalso special remote, which is useful for accessing
496    content stored on other remotes that is published by http.
497  * The external special remote protocol got an ASYNC extension.
498    This can be used by an external special remote to let a single process
499    perform concurrent actions, rather than multiple processes being
500    started, when that is more efficient.
501  * Retry transfers to exporttree=yes remotes same as for other remotes.
502  * import: Retry downloads that fail, same as is done for downloads generally.
503  * Limit retrying of failed transfers when forward progress is being made
504    to 5, to avoid some unusual edge cases where too much retrying could
505    result in far more data transfer than makes sense.
506  * Exposed annex.forward-retry git config, to configure the forward retry
507    behavior that git-annex has had for a long time.
508  * sync, assistant, merge: When merge.directoryRenames is not set,
509    default it it to "false", which works better with automatic merge
510    conflict resolution than git's ususual default of "conflict".
511    (This is not done when automatic merge conflict resolution is disabled.)
512  * resolvemerge: Improve cleanup of cruft left in the working tree
513    by a conflicted merge.
514  * Support git remotes where .git is a file, not a directory,
515    eg when --separate-git-dir was used.
516  * Fixed several cases where files were created without file mode bits
517    that the umask would usually set. This included exports to the
518    directory special remote, torrent files used by the bittorrent special
519    remote, hooks written by git-annex init, and some log files in .git/annex/
520  * Fix reversion in 7.20190322 that made addurl --file not be honored
521    when youtube-dl was used to download media.
522  * Fix reversion in 8.20200617 that made annex.pidlock being enabled
523    result in some commands stalling, particularly those needing to
524    autoinit.
525  * Display warning when external special remote does not start up
526    properly, or is not usable.
527  * Display a message when git-annex has to wait for a pid lock file
528    held by another process.
529  * test: Stop gpg-agent daemons that are started for the test framework's
530    gpg key.
531  * Removed the S3 and WebDAV build flags so these special remotes are
532    always supported.
533  * stack.yaml: Updated to lts-16.10.
534
535 -- Joey Hess <id@joeyh.name>  Tue, 08 Sep 2020 14:20:11 -0400
536
537git-annex (8.20200814) upstream; urgency=medium
538
539  * Added support for external backend programs. So if you want a hash
540    that git-annex doesn't support, or something stranger, you can write a
541    small program to implement it.
542  * Fix a bug in find --branch in the previous version.
543  * importfeed: Fix reversion that caused some '.' in filenames to be
544    replaced with '_'
545  * Fix a lock file descriptor leak that could occur when running commands
546    like git-annex add with -J. Bug was introduced as part of a different FD
547    leak fix in version 6.20160318.
548  * Fix a hang when using git-annex with an old openssh 7.2p2, which had
549    some weird inheriting of ssh FDs by sshd. Bug was introduced in
550    git-annex version 7.20200202.7.
551  * move, copy --to: Sped up seeking files by 2x.
552  * drop: Sped up seeking files to drop by 2x, and also some performance
553    improvements to checking numcopies.
554  * Deal with unusual IFS settings in the shell scripts for linux
555    standalone and OSX app.
556    Thanks, Yaroslav Halchenko
557  * Avoid complaining that a file with "is beyond a symbolic link"
558    when the filepath is absolute and the symlink in question is not
559    actually inside the git repository.
560  * Slightly sped up the linux standalone bundle.
561  * Support building with dlist-1.0
562
563 -- Joey Hess <id@joeyh.name>  Mon, 10 Aug 2020 13:04:04 -0400
564
565git-annex (8.20200720.1) upstream; urgency=medium
566
567  * Fix a bug in find --batch in the previous version.
568
569 -- Joey Hess <id@joeyh.name>  Mon, 20 Jul 2020 19:39:11 -0400
570
571git-annex (8.20200720) upstream; urgency=medium
572
573  * import: Added --no-content option, which avoids downloading files
574    from a special remote. Currently only supported by the directory
575    special remote.
576  * Honor annex.largefiles when importing a tree from a special remote.
577    (Except for when --no-content is used.)
578  * Fix a deadlock that could occur after git-annex got an unlocked
579    file, causing the command to hang indefinitely. Known to happen on
580    vfat filesystems, possibly others.
581  * Build with the http-client-restricted and git-lfs libraries when
582    available, otherwise use the vendored copy as before.
583  * testremote: Fix over-allocation of resources and bad caching,
584    including starting up a large number of external special remote processes.
585    (Regression introduced in version 8.20200501)
586  * test: Fix some test cases that assumed git's default branch name.
587  * importfeed: Added some additional --template variables:
588    itempubyear, itempubmonth, itempubday, itempubhour,
589    itempubminute, itempubsecond.
590  * Made several special remotes support locking content on them,
591    which allows dropping from other special remotes in some situations
592    where it was not possible before. Supported special remotes:
593    S3 (with versioning=yes), git-lfs, tahoe
594  * Fix reversion that broke passing annex.* and remote.*.annex-*
595    git configs with -c. (Since version 8.20200330.)
596  * Bring back git-annex branch read cache. This speeds up some operations,
597    eg git-annex sync --content --all gets 20% faster.
598  * Fix a recently introduced bug that could cause a "fork: resource exhausted"
599    after getting several thousand files.
600  * Sped up the --all option by 2x to 16x by using git cat-file --buffer.
601    Thanks to Lukey for finding this optimisation.
602  * Sped up seeking for annexed files to operate on by a factor of nearly 2x.
603  * Sped up sync --content by 2x and other commands like fsck --fast and
604    whereis by around 50%, by using git cat-file --buffer.
605  * importfeed: Made checking known urls step around 15% faster.
606  * fsck: Detect if WORM keys contain a carriage return, and recommend
607    upgrading the key. (git-annex could have maybe created such keys back
608    in 2013).
609  * When on an adjust --hide-missing branch, fix handling of files that
610    have been deleted but the deletion is not yet staged.
611
612 -- Joey Hess <id@joeyh.name>  Mon, 20 Jul 2020 14:40:51 -0400
613
614git-annex (8.20200617) upstream; urgency=medium
615
616  * Added annex.skipunknown git config, that can be set to false to change
617    the behavior of commands like `git annex get foo*`, to not skip
618    over files/dirs that are not checked into git and are explicitly listed in
619    the command line.
620  * annex.skipunknown is planned to change to default to false in a
621    git-annex release in early 2022. If you prefer the current behavior,
622    you can explicitly set it to true.
623  * Try to enable special remotes configured with autoenable=yes
624    when git-annex auto-initialization happens in a new clone of an
625    existing repo. Previously, git-annex init had to be explicitly run to
626    enable them. Special remotes cannot display anything when autoenabled
627    this way, to avoid interfering with the output of git-annex query
628    commands.
629  * export: Added options for json output.
630  * import: Added --json-progress.
631  * addurl: Make --preserve-filename also apply when eg a torrent contains
632    multiple files.
633  * Fix a crash or potentially not all files being exported when
634    sync -J --content is used with an export remote.
635  * export: Let concurrent transfers be done with -J or annex.jobs.
636  * move --to, copy --to, mirror --to: When concurrency is enabled, run
637    cleanup actions in separate job pool from uploads.
638  * init: If lock probing stalls for a long time (eg a broken NFS server),
639    display a message to let the user know what's taking so long.
640  * init: When annex.pidlock is set, skip lock probing.
641  * Fix file descriptor leak when importing from a directory special remote
642    that is configured with exporttree=yes.
643  * Note that external special remote programs should not block SIGINT or
644    SIGTERM.
645  * Avoid creating the keys database during init when there are no unlocked
646    files, to prevent init failing when sqlite does not work in the
647    filesystem.
648  * import: Avoid using some strange names for temporary keys,
649    which broke importing from a directory special remote onto a vfat
650    filesystem.
651  * S3: The REDUCED_REDUNDANCY storage class is no longer cheaper so
652    stop documenting it, and stop offering it as a choice in the assistant.
653  * Improve display of problems auto-initializing or upgrading local git
654    remotes.
655  * When a local git remote cannot be initialized because it has no
656    git-annex branch or a .noannex file, avoid displaying a message about it.
657  * checkpresentkey: When no remote is specified, try all remotes, not
658    only ones that the location log says contain the key. This is what
659    the documentation has always said it did.
660  * Fix regression in external special remote handling: GETCONFIG did not
661    return a value that was set with SETCONFIG immediately before.
662    (Regression introduced in version 7.20200202.7)
663  * Fix bug that made initremote of extrnal special remotes with
664    embedcreds=yes or gpg encryption not store the creds in the git-annex
665    branch. git-annex-remote-googledrive one was special remote affected by
666    this bug.
667    (Regression introduced in version 7.20200202.7)
668  * Fix bug that made creds not be stored in git when a special remote
669    was initialized with gpg encryption, but without an explicit
670    embedcreds=yes.
671    (Regression introduced in version 7.20200202.7)
672  * Fix a annex.pidlock issue that made eg git-annex get of an unlocked
673    file hang until the annex.pidlocktimeout and then fail.
674
675 -- Joey Hess <id@joeyh.name>  Wed, 17 Jun 2020 15:58:59 -0400
676
677git-annex (8.20200522) upstream; urgency=medium
678
679  * Fix bug that made enableremote of S3 and webdav remotes, that
680    have embedcreds=yes, fail to set up the embedded creds, so accessing
681    the remotes failed. (Regression introduced in version 7.20200202.7)
682  * addurl, importfeed: Avoid adding filenames with leading '.', instead
683    it will be replaced with '_'.
684  * addurl, importfeed: Allow '-' in filenames, as long as it's not the
685    first character.
686  * addurl --preserve-filename: New option, uses server-provided filename
687    without any sanitization, but will fail if the filename has an obvious
688    security problem like using an escape sequence or trying to escape
689    the current directory.
690  * whereis: Added --format option.
691  * S3: Support signature=v4, to use S3 Signature Version 4.
692    Some S3 services seem to require v4, while others may only
693    support v2, which remains the default.
694  * upgrade: When upgrade fails due to an exception, display it.
695  * repair: Improve fetching from a remote with an url in host:path format.
696  * git-lfs repos that encrypt the annexed content but not the git repo
697    only need --force passed to initremote, allow enableremote and
698    autoenable of such remotes without forcing again.
699  * When accessing a remote fails, always display a reason why.
700  * Display a warning message when a remote uses a protocol, such as
701    git://, that git-annex does not support. Silently skipping such a
702    remote was confusing behavior.
703  * Also display a warning message when a remote, without a known uuid,
704    is located in a directory that does not currently exist, to avoid
705    silently skipping such a remote.
706  * sync: Avoid an ugly error message when nothing has been committed to
707    master yet and there is a synced master branch to merge from.
708  * Display a warning message when asked to operate on a file inside a
709    directory that's a symbolic link to elsewhere.
710  * Support building with tasty-1.3.
711
712 -- Joey Hess <id@joeyh.name>  Fri, 22 May 2020 12:05:01 -0400
713
714git-annex (8.20200501) upstream; urgency=medium
715
716  * Improve git-annex's ability to find the path to its program,
717    especially when it needs to run itself in another repo to upgrade it.
718  * adb: Better messages when the adb command is not installed.
719  * Sped up query commands that read the git-annex branch by around 9%.
720  * Various speed improvements gained by using ByteStrings for git refs and
721    shas.
722  * Fix a potential failure to parse git config.
723  * Support boolean git configs that are represented by the name of the
724    setting with no value, eg "core.bare" is the same as "core.bare = true".
725  * When parsing git configs, support all the documented ways to write
726    true and false, including "yes", "on", "1", etc.
727  * Fix --batch commands (and git-annex info) to accept absolute filenames
728    for unlocked files, which already worked for locked files.
729  * Avoid repeatedly opening keys db when accessing a local git remote
730    and -J is used.
731  * Avoid running a large number of git cat-file child processes when run
732    with a large -J value.
733  * Avoid running with more git check-attr and check-ignore processes than
734    there are CPU cores when run with a large -J value.
735  * get --from, move --from: When used with a local git remote, these used
736    to silently skip files that the location log thought were present on the
737    remote, when the remote actually no longer contained them. Since that
738    behavior could be surprising, now instead display a warning.
739  * external special remotes: remote.name.annex-readonly=true no longer
740    disables running the external special remote program. Instead, it just
741    makes the remote operate in a readonly mode, same as any remote.
742    To disable running the external special remote program, now need to set
743    remote.name.annex-externaltype=readonly. That is done when
744    git-annex enableremote is passed readonly=true.
745  * Stop storing readonly=true in remote.log of external special remotes;
746    it is a local setting only.
747  * sync: When some remotes to sync with are specified, and --fast is too,
748    pick the lowest cost of the specified remotes, do not sync with a
749    faster remote that was not specified.
750  * addurl: When run with --fast on an url that
751    annex.security.allowed-ip-addresses prevents accessing, display
752    a more useful message.
753  * When the required content is set to "groupwanted", use whatever
754    expression has been set in groupwanted as the required content of the
755    repo, similar to how setting required content to "standard" already
756    worked.
757  * Avoid a test suite failure when the environment does not let gpg be
758    tested due to eg, too long a path to the agent socket.
759  * test: Include testremote tests, run on a directory special remote.
760
761 -- Joey Hess <id@joeyh.name>  Fri, 01 May 2020 13:09:24 -0400
762
763git-annex (8.20200330) upstream; urgency=medium
764
765  * fsck: Fix reversion in 8.20200226 that made it incorrectly warn
766    that hashed keys with an extension should be upgraded.
767  * add --force-small: Fix a bug that, when adding a symbolic link,
768    checked in the content of the file the symlink pointed to.
769    Thanks, Kyle Meyer for the patch.
770  * add --force-small: Fix failure when passed a modified submodule.
771    Thanks, Kyle Meyer for the patch.
772  * When syncing changes back from an adjusted branch to the basis branch,
773    include changes to submodules.
774    Thanks, Kyle Meyer for the patch.
775  * webdav: Made exporttree remotes faster by caching connection to the
776    server.
777  * Fix a minor bug that caused options provided with -c to be passed
778    multiple times to git.
779
780 -- Joey Hess <id@joeyh.name>  Mon, 30 Mar 2020 12:14:50 -0400
781
782git-annex (8.20200309) upstream; urgency=medium
783
784  * Fix bug that caused unlocked annexed dotfiles to be added to git by the
785    smudge filter when annex.dotfiles was not set.
786  * Upgrade other repos than the current one by running git-annex upgrade
787    inside them, which avoids problems with upgrade code making assumptions
788    that the cwd will be inside the repo being upgraded. In particular,
789    this fixes a problem where upgrading a v7 repo to v8 caused an ugly
790    git error message.
791  * Fix upgrade failure when a file has been deleted from the working tree.
792  * Fix regression 1 month ago that prevented external special remotes from
793    using GETCONFIG to query values like "name".
794  * Improve behavior when a directory git-annex is writing to gets
795    unmounted. Previously it could in some cases re-create the mount point
796    and directory tree, and even write object contents to the wrong disk.
797  * Don't ignore --debug when it is followed by -c.
798  * whereis: If a remote fails to report on urls where a key
799    is located, display a warning, rather than giving up and not displaying
800    any information.
801  * When external special remotes fail but neglect to provide an error
802    message, say what request failed, which is better than displaying an
803    empty error message to the user.
804  * git-annex config: Only allow configs be set that are ones git-annex
805    actually supports reading from repo-global config, to avoid confusion.
806  * Avoid converting .git file in a worktree or submodule to a symlink
807    when the repository is not a git-annex repository.
808  * Linux standalone: Use md5sum to shorten paths in .cache/git-annex/locales
809  * Fix build with ghc 8.8 (MonadFail)
810    Thanks, Peter Simons
811  * stack.yaml: Updated to lts-14.27.
812
813 -- Joey Hess <id@joeyh.name>  Mon, 09 Mar 2020 17:04:08 -0400
814
815git-annex (8.20200226) upstream; urgency=medium
816
817  * New v8 repository version.
818  * v7 upgrades automatically to v8. The upgrade deletes old sqlite
819    databases, which may cause git-annex to need to do extra work to
820    regenerate the databases or due to not having the information from the
821    old databases available. Two notable cases are interrupted incremental
822    fscks and interrupted exports, both of which will restart from the
823    beginning.
824  * Improved serialization of filenames and keys to the sqlite databases,
825    avoiding encoding problems and speeding up operations on them.
826  * Add some missing indexes to sqlite databases. This will speed up
827    some things involving export and import remotes, and git-annex smudge.
828    Microbenchmarks show around 10-25% speedup of sqlite database operations.
829  * add: When adding a whole directory, any dotfiles found in it will
830    not be skipped, but will be added to git by default. This behavior
831    can be configured with annex.dotfiles.
832  * add: Removed special case for explicitly passing dotfiles,
833    that no longer adds them to the annex, but to git. This behavior
834    can be configured with annex.dotfiles.
835  * add: Removed the --include-dotfiles option.
836  * initremote, enableremote: Set remote.name.skipFetchAll when
837    the remote cannot be fetched from by git, so git fetch --all
838    will not try to use it.
839  * Fix some cases where handling of keys with extensions varied depending
840    on the locale.
841  * annex.maxextensionlength used to be the number of characters, not
842    bytes, when in a utf-8 locale. It's now always the number of bytes.
843  * Extended annex.security.allowed-ip-addresses to let specific ports
844    of an IP address to be used, while denying use of other ports.
845  * init --version: When the version given is one that automatically
846    upgrades to a newer version, use the newer version instead.
847  * Auto upgrades from older repo versions, like v5, now jump right to v8.
848  * Makefile: Support newer versions of cabal that use the new-build system.
849
850 -- Joey Hess <id@joeyh.name>  Wed, 26 Feb 2020 18:49:58 -0400
851
852git-annex (7.20200226) upstream; urgency=high
853
854  * Fix serious regression in gcrypt and encrypted git-lfs remotes.
855    Since version 7.20200202.7, git-annex incorrectly stored content
856    on those remotes without encrypting it.
857    If your remotes are affected, you will want to make sure to delete
858    any content that git-annex has stored on them that is not encrypted!
859  * initremote: Fix regression in parsing the exporttree= parameter.
860  * info: Fix display of the encryption value.
861    (Some debugging junk had crept in.)
862  * Bugfix to getting content from an export remote with -J, when the
863    export database was not yet populated.
864  * Bugfix: export --tracking (a deprecated option) set
865    annex-annex-tracking-branch, instead of annex-tracking-branch.
866
867 -- Joey Hess <id@joeyh.name>  Wed, 26 Feb 2020 17:18:16 -0400
868
869git-annex (7.20200219) upstream; urgency=medium
870
871  * Added sync --only-annex, which syncs the git-annex branch and annexed
872    content but leaves managing the other git branches up to you.
873  * Added annex.synconlyannex git config setting, which can also be set with
874    git-annex config to configure sync in all clones of the repo.
875  * fsck --from remote: Fix a concurrency bug that could make it incorrectly
876    detect that content in the remote is corrupt, and remove it, resulting in
877    data loss.
878  * When git-annex is built with a ssh that does not support ssh connection
879    caching, default annex.sshcaching to false, but let the user override it.
880  * Improve warning messages further when ssh connection caching cannot
881    be used, to clearly state why.
882  * Avoid throwing fatal errors when asked to write to a readonly
883    git remote on http.
884  * Fix support for repositories tuned with annex.tune.branchhash1=true,
885    including --all not working and git-annex log not displaying anything
886    for annexed files.
887
888 -- Joey Hess <id@joeyh.name>  Wed, 19 Feb 2020 12:44:43 -0400
889
890git-annex (7.20200204) upstream; urgency=medium
891
892  * Fix build with persistent-template 2.8.0.
893  * Makefile: Really move the fish completion to the
894    vendor_completions.d directory.
895
896 -- Joey Hess <id@joeyh.name>  Tue, 04 Feb 2020 14:30:55 -0400
897
898git-annex (7.20200202.7) upstream; urgency=medium
899
900  * add: --force-large/--force-small options make it easier to override
901    annex.largefiles configuration (and potentially safer as it avoids
902    bugs like the smudge bug fixed in the last release).
903  * reinject --known: Fix bug that prevented it from working in a bare repo.
904  * Support being used in a git repository that uses sha256 rather than sha1.
905  * initremote, enableremote: Be stricter about rejecting invalid
906    configuration parameters for remotes, particularly things like foo=true
907    when foo=yes is expected.
908  * initremote, enableremote: Reject unknown configuration parameters
909    provided to these commands.
910  * initremote: Added --whatelse option, to show additional
911    configuration parameters you might want to set. Eg:
912    git annex initremote type=directory encryption=none --whatelse
913  * Added LISTCONFIGS to external special remote protocol. Special remote
914    programs that use GETCONFIG/SETCONFIG are recommended to implement it.
915  * init: Avoid an ugly error message when http remote has no git-annex
916    uuid configured.
917  * Support git remotes that need http basic auth to be accessed,
918    using git credential to get the password.
919  * Display a warning when concurrency is enabled but ssh connection caching
920    is not enabled or won't work due to a crippled filesystem.
921  * Makefile: Move the fish completion to the vendor_completions.d directory.
922  * Fixed a test suite failure when run in the C locale.
923
924 -- Joey Hess <id@joeyh.name>  Sun, 02 Feb 2020 00:00:00 -0400
925
926git-annex (7.20191230) upstream; urgency=medium
927
928  * Optimised processing of many files, especially by commands like find
929    and whereis that only report on the state of the repository. Commands
930    like get also sped up in cases where they have to check a lot of
931    files but only transfer a few files. Speedups range from 30-100%.
932  * Added build dependency on the filepath-bytestring library.
933  * Fixed an oversight that had always prevented annex.resolvemerge
934    from being honored, when it was configured by git-annex config.
935  * annex.largefiles can be configured by git-annex config,
936    to more easily set a default that will also be used by clones,
937    without needing to shoehorn the expression into the gitattributes file.
938    The git config and gitattributes override that.
939  * annex.addunlocked can be set to an expression with the same format used by
940    annex.largefiles, when you want to default to unlocking some files but
941    not others.
942  * annex.addunlocked can be configured by git-annex config.
943  * git-annex-config --set/--unset: No longer change the local git config
944    setting, except for in the special case of annex.securehashesonly.
945  * Improve file ordering behavior when one parameter is "." and other
946    parameters are other directories.
947  * smudge bugfix: When annex.largefiles=anything, files that were already
948    stored in git, and have not been modified could sometimes be converted
949    to being stored in the annex. Changes in 7.20191024 made this more
950    of a problem. This case is now detected and prevented.
951
952 -- Joey Hess <id@joeyh.name>  Mon, 30 Dec 2019 12:43:30 -0400
953
954git-annex (7.20191218) upstream; urgency=medium
955
956  * git-lfs: The url provided to initremote/enableremote will now be
957    stored in the git-annex branch, allowing enableremote to be used without
958    an url. initremote --sameas can be used to add additional urls.
959  * git-lfs: When there's a git remote with an url that's known to be
960    used for git-lfs, automatically enable the special remote.
961  * sync, assistant: Pull and push from git-lfs remotes.
962  * Fix bug that made bare repos be treated as non-bare when --git-dir
963    was used.
964  * inprogress: Support --key.
965  * Sped up many git-annex commands that operate on many files, by
966    avoiding reserialization of keys.
967    find is 7% faster; whereis is 3% faster; and git-annex get when
968    all files are already present is 5% faster
969  * Stop displaying rsync progress, and use git-annex's own progress display
970    for local-to-local repo transfers.
971  * benchmark: Changed --databases to take a parameter specifiying the size
972    of the database to benchmark.
973  * benchmark --databases: Display size of the populated database.
974  * benchmark --databases: Improve the "addAssociatedFile (new)"
975    benchmark to really add new values, not overwriting old values.
976  * Windows: Fix handling of changes to time zone. (Used to work but was
977    broken in version 7.20181031.)
978
979 -- Joey Hess <id@joeyh.name>  Wed, 18 Dec 2019 13:53:51 -0400
980
981git-annex (7.20191114) upstream; urgency=medium
982
983  * Added annex.allowsign option.
984  * Make --json-error-messages capture more errors,
985    particularly url download errors.
986  * Fix a crash (STM deadlock) when -J is used with multiple files
987    that point to the same key.
988  * linuxstandalone: Fix a regression that broke git-remote-https.
989  * OSX git-annex.app: Fix a problem that prevented using the bundled
990    git-remote-https, git-remote-http, and git-shell.
991
992 -- Joey Hess <id@joeyh.name>  Thu, 14 Nov 2019 21:57:59 -0400
993
994git-annex (7.20191106) upstream; urgency=medium
995
996  * init: Fix bug that lost modifications to unlocked files when init is
997    re-ran in an already initialized repo.
998  * benchmark: Add --databases to benchmark sqlite databases.
999
1000 -- Joey Hess <id@joeyh.name>  Wed, 06 Nov 2019 12:14:50 -0400
1001
1002git-annex (7.20191024) upstream; urgency=medium
1003
1004  * Changed git add/git commit -a default behavior back to what it was
1005    before v7; they add file contents to git, not to the annex.
1006    (However, if a file was annexed before, they will still add it to
1007    the annex, to avoid footgun.)
1008  * Configuring annex.largefiles overrides that; once git-annex has
1009    been told which files are large git add/git commit -a will annex them.
1010  * Added annex.gitaddtoannex configuration. Setting it to false prevents
1011    git add from adding files to the annex even when annex.largefiles
1012    is configured. (Unless the file was annexed before.)
1013  * smudge: Made git add smarter about renamed annexed files. It can tell
1014    when an annexed file was renamed, and will add it to the annex,
1015    and not to git, unless annex.largefiles tells it to do otherwise.
1016  * init: Fix a failure when used in a submodule on a crippled filesystem.
1017  * sync: Fix crash when there are submodules and an adjusted branch is
1018    checked out.
1019  * enable-tor: Deal with pkexec changing to root's home directory
1020    when running a command.
1021
1022 -- Joey Hess <id@joeyh.name>  Fri, 25 Oct 2019 13:04:59 -0400
1023
1024git-annex (7.20191017) upstream; urgency=medium
1025
1026  * initremote: Added --sameas option, allows for two special remotes that
1027    access the same data store.
1028  * Note that due to complications of the sameas feature, any external
1029    special remotes that try to send SETSTATE or GETSTATE during INITREMOTE
1030    or EXPORTSUPPORTED will now get back an ERROR. That would be a very
1031    hackish thing for an external special remote to do, needing some kind
1032    of hard-coded key value to be used, so probably nothing will be affected.
1033  * forget --drop-dead: Remove several classes of git-annex log files
1034    when they become empty, further reducing the size of the git-annex branch.
1035  * OSX: Deal with symbolic link problem that caused git to not be included in
1036    the git-annex.dmg.
1037  * Fix build with persistent-2.10.
1038
1039 -- Joey Hess <id@joeyh.name>  Thu, 17 Oct 2019 18:19:12 -0400
1040
1041git-annex (7.20191009) upstream; urgency=medium
1042
1043  * Fix bug in handling of annex.largefiles that use largerthan/smallerthan.
1044    When adding a modified file, it incorrectly used the file size of the
1045    old version of the file, not the current size.
1046  * Added --mimetype and --mimeencoding file matching options.
1047  * Added --unlocked and --locked file matching options.
1048  * Added adjust --lock, to enter an adjusted branch where files are locked.
1049  * git-lfs: Added support for http basic auth.
1050  * git-lfs: Only do endpoint discovery once when concurrency is enabled.
1051  * fsck --incremental/--more: Fix bug that prevented the incremental fsck
1052    information from being updated every 5 minutes as it was supposed to be;
1053    it was only updated after 1000 files were checked, which may be more
1054    files that are possible to fsck in a given fsck time window.
1055    Thanks to Peter Simons for help with analysis of this bug.
1056  * Test: Use more robust directory removal when built with directory-1.2.7.
1057  * Close sqlite databases more robustly.
1058  * remotedaemon: Don't list --stop in help since it's not supported.
1059  * enable-tor: Run kdesu with -c option.
1060  * enable-tor: Use pkexec to run command as root when gksu and kdesu are not
1061    available.
1062  * When dropping an unlocked file, preserve its mtime, which avoids
1063    git status unncessarily running the clean filter on the file.
1064  * uninit: Remove several git hooks that git-annex init sets up.
1065  * uninit: Remove the smudge and clean filters that git-annex init sets up.
1066  * Work around git cat-file --batch's odd stripping of carriage return
1067    from the end of the line (some windows infection), avoiding crashing
1068    when the repo contains a filename ending in a carriage return.
1069  * git-annex-standalone.rpm: Fix the git-annex-shell symlink.
1070
1071 -- Joey Hess <id@joeyh.name>  Wed, 09 Oct 2019 12:31:31 -0400
1072
1073git-annex (7.20190912) upstream; urgency=medium
1074
1075  * Default to v7 for new repositories.
1076  * Automatically upgrade v5 repositories to v7.
1077  * Automatically convert direct mode repositories to v7 with adjusted
1078    unlocked branches and set annex.thin.
1079  * Added annex.autoupgraderepository configuration that can be set to false
1080    to prevent any automatic repository upgrades.
1081  * Refuse to upgrade direct mode repositories when git is older than 2.22,
1082    which fixed a memory leak that could cause an OOM during the upgrade.
1083  * Removed support for git versions older than 2.1.
1084  * assistant: When creating a new repository, no longer use direct
1085    mode, instead use v7 adjusted branches with annex.thin.
1086  * init: When run on a crippled filesystem with --version=5,
1087    will error out, since version 7 is needed for adjusted unlocked branch.
1088  * direct: This command always errors out as direct mode is no longer
1089    supported.
1090  * indirect: This command has become a deprecated noop.
1091  * proxy: This command is deprecated because it was only needed in direct
1092    mode. (But it continues to work.)
1093  * info: Removed the "repository mode" from its output (including the
1094    --json output) since with the removal of direct mode, there is no
1095    repository mode.
1096  * info: When file matching options are specified when getting
1097    info of something other than a directory, they won't have any effect,
1098    so error out to avoid confusion.
1099  * info: Display trust level when getting info on a uuid, same as a remote.
1100  * When upgrading a direct mode repo to v7 with adjusted unlocked branches,
1101    fix a bug that prevented annex.thin from taking effect for the files
1102    in working tree.
1103  * Avoid making a commit when upgrading from direct mode to v7.
1104  * init: Catch more exceptions when testing locking.
1105  * init: Fix a reversion that broke initialization on systems that
1106    need to use pid locking.
1107  * A git-annex-standalone rpm is now distributed along with the standalone
1108    tarball.
1109  * Added standalone/rpm/rpmbuild-from-standalone-tarball script.
1110
1111 -- Joey Hess <id@joeyh.name>  Fri, 13 Sep 2019 12:53:06 -0400
1112
1113git-annex (7.20190819) upstream; urgency=medium
1114
1115  * New git-lfs special remote, which can be used to store data on any git-lfs
1116    server, including github, gitlab, and gogs.
1117  * Support fully encrypting all data sent to a git-lfs special remote,
1118    using a combination of gcrypt to encrypt the git data, and git-annex's
1119    encryption of its data.
1120  * Use the same optimisation for --in=here as has always been
1121    used for --in=. rather than the slow code path that unncessarily
1122    queries the git-annex branch.
1123  * Allow setting up a gcrypt special remote with encryption=shared.
1124  * Fix querying git for object type when operating on a file containing
1125    newlines.
1126  * merge: When run with a branch parameter, merges from that branch.
1127    This is especially useful when using an adjusted branch, because
1128    it applies the same adjustment to the branch before merging it.
1129  * init: Install working hook scripts when run on a crippled filesystem
1130    and on Windows. If your repository was set up by an old version
1131    of git-annex that omitted the hooks, you can simply re-run git-annex init
1132    to install them.
1133  * init: When the repo is already initialized, and --version requests a
1134    different version, error out rather than silently not changing the
1135    version.
1136  * S3: Fix encoding when generating public urls of S3 objects.
1137  * Make git-annex-standalone.deb include the shell completions again.
1138  * Makefile: Changed default zsh completion location to zsh default fpath.
1139    Systems such as Debian that have overridden the default fpath will
1140    need to set ZSH_COMPLETIONS_PATH.
1141  * test: Add pass using adjusted unlocked branch.
1142  * Fix intermittent failure of the test suite, where its repeated opening
1143    and writing to the sqlite database somehow caused inode cache information
1144    to occasionally be lost.
1145  * Fix several test suite failures on Windows.
1146  * Windows installer: Always install to 64 bit program files directory,
1147    since it needs 64 bit git now.
1148  * Build with silently-1.2.5.1 on Windows; the old one used "NUL" device
1149    which is not supported with recent versions of ghc.
1150
1151 -- Joey Hess <id@joeyh.name>  Mon, 19 Aug 2019 12:23:16 -0400
1152
1153git-annex (7.20190730) upstream; urgency=medium
1154
1155  * Improved probing when CoW copies can be made between files on the same
1156    drive. Now supports CoW between BTRFS subvolumes. And, falls back to rsync
1157    instead of using cp when CoW won't work, eg copies between repos on the
1158    same EXT4 filesystem.
1159  * Add BLAKE2BP512 and BLAKE2BP512E backends, using a blake2 variant
1160    optimised for 4-way CPUs.
1161  * Support running v7 upgrade in a repo where there is no branch checked
1162    out, but HEAD is set directly to some other ref.
1163  * Windows build no longer ships with a copy of rsync, since that is only
1164    used any more to access rsync special remotes or remotes with a very
1165    old version of git-annex-shell.
1166  * Windows build is now 64 bit, and using it with the 64 bit git for
1167    Windows is fully supported.
1168  * Windows problems with long filenames should be fixed now,
1169    since the Windows build is made with a newer ghc version that works
1170    around the problems.
1171  * stack.yaml: Build with http-client-0.5.14 to get a bug fix to http header
1172    parsing.
1173  * Drop support for building with ghc older than 8.4.4,
1174    and with older versions of serveral haskell libraries.
1175  * Support building with socks-0.6 and persistant-template-2.7.
1176  * Corrected some license statements.
1177    Thanks, Sean Whitton.
1178
1179 -- Joey Hess <id@joeyh.name>  Tue, 30 Jul 2019 12:22:25 -0400
1180
1181git-annex (7.20190708) upstream; urgency=medium
1182
1183  * Fix find --json to output json once more.
1184
1185 -- Joey Hess <id@joeyh.name>  Mon, 08 Jul 2019 08:58:16 -0400
1186
1187git-annex (7.20190626) upstream; urgency=medium
1188
1189  * get, move, copy, sync: When -J or annex.jobs has enabled concurrency,
1190    checksum verification uses a separate job pool than is used for
1191    downloads, to keep bandwidth saturated.
1192  * Other commands also run their cleanup phase using a separate job pool
1193    than their perform phase, which may make some of them somewhat faster
1194    when running concurrently as well.
1195  * When downloading an url and the destination file exists but is empty,
1196    avoid using http range to resume, since a range "bytes=0-" is an unusual
1197    edge case that it's best to avoid relying on working. This is known to
1198    fix a case where importfeed downloaded a partial feed from such a server.
1199  * importfeed: When there's a problem parsing the feed, --debug will
1200    output the feed content that was downloaded.
1201  * init: Fix a reversion in the last release that prevented automatically
1202    generating and setting a description for the repository.
1203  * add: Display progress meter when hashing files.
1204  * add: Support --json-progress option.
1205  * The Linux standalone arm build now works again on CPU versions below
1206    arm6. Thanks to Emanuele Olivetti, Ilias Tsitsimpis, Bernhard
1207    Übelacker, and Adrian Bunk for fixing ghc in Debian (bug #928882).
1208  * OSX dmg: Put git-annex's version in the Info.plist file.
1209
1210 -- Joey Hess <id@joeyh.name>  Wed, 26 Jun 2019 12:29:46 -0400
1211
1212git-annex (7.20190615) upstream; urgency=medium
1213
1214  * Fixed bug that caused git-annex to fail to add a file when another
1215    git-annex process cleaned up the temp directory it was using.
1216  * Makefile: Added install-completions to install target.
1217  * Added the ability to run one job per CPU (core), by setting
1218    annex.jobs=cpus, or using option --jobs=cpus or -Jcpus.
1219  * Honor preferred content of a special remote when exporting trees to it;
1220    unwanted files are filtered out of the tree that is exported.
1221  * Importing from a special remote honors its preferred content too;
1222    unwanted files are not imported. But, some preferred content
1223    expressions can't be checked before files are imported, and trying to
1224    import with such an expression will fail.
1225  * Don't try to import .git directories from special remotes, because
1226    git does not support storing git repositories inside a git repository.
1227  * Improve shape of commit tree when importing from unversioned special
1228    remotes.
1229  * init: When the repository already has a description, don't change it.
1230  * describe: When run with no description parameter it used to set
1231    the description to "", now it will error out.
1232  * Android: Improve installation process when the user's login shell is not
1233    bash.
1234  * When a remote is configured to be readonly, don't allow changing
1235    what's exported to it.
1236  * Renamed annex.security.allowed-http-addresses to
1237    annex.security.allowed-ip-addresses because it is not really specific
1238    to the http protocol, also limiting eg, git-annex's use of ftp.
1239    The old name for the config will still work.
1240  * Add back support for ftp urls, which was disabled as part of the fix for
1241    security hole CVE-2018-10857 (except for configurations which enabled curl
1242    and bypassed public IP address restrictions). Now it will work
1243    if allowed by annex.security.allowed-ip-addresses.
1244  * Avoid a delay at startup when concurrency is enabled and there are
1245    rsync or gcrypt special remotes, which was caused by git-annex
1246    opening a ssh connection to the remote too early.
1247
1248 -- Joey Hess <id@joeyh.name>  Sat, 15 Jun 2019 12:38:25 -0400
1249
1250git-annex (7.20190507) upstream; urgency=medium
1251
1252  * Fix reversion in last release that caused wrong tree to be written
1253    to remote tracking branch after an export of a subtree.
1254  * Improved locking when multiple git-annex processes are writing to
1255    the .git/index file
1256
1257 -- Joey Hess <id@joeyh.name>  Tue, 07 May 2019 13:05:33 -0400
1258
1259git-annex (7.20190503) upstream; urgency=medium
1260
1261  * adb special remote supports being configured with importtree=yes,
1262    to allow git-annex import of files from an Android device. This can be
1263    combined with exporttree=yes and git-annex export used to send changes
1264    back to the Android device.
1265  * S3 special remote supports being configured with importtree=yes,
1266    to allow git-annex import of files from a S3 bucket. This can be
1267    combined with exporttree=yes and git-annex export used to send changes
1268    back to the S3 bucket.
1269  * S3: When versioning is enabled on a bucket, importing from it will
1270    import old versions of files that were written to the bucket as well
1271    as the current versions. A git history is synthesized to reflect the way
1272    the bucket changed over time.
1273  * Fix bug that caused importing from a special remote to repeatedly
1274    download unchanged files when multiple files in the remote have the same
1275    content.
1276  * Made git-annex sync --content much faster when all the remotes it's
1277    syncing with are export/import remotes.
1278  * sync: When listing contents on an import remote fails, proceed with
1279    other syncing instead of aborting.
1280  * renameremote: New command, changes the name that is used to enable
1281    a special remote. Especially useful when you want to reuse the name
1282    of an old remote for something new.
1283  * Drop support for building with aws older than 0.14.
1284  * info: Show when a remote is configured with importtree.
1285  * Added mimeencoding= term to annex.largefiles expressions.
1286    This is probably mostly useful to match non-text files with eg
1287    "mimeencoding=binary"
1288  * git-annex matchexpression: Added --mimeencoding option.
1289
1290 -- Joey Hess <id@joeyh.name>  Fri, 03 May 2019 12:47:41 -0400
1291
1292git-annex (7.20190322) upstream; urgency=medium
1293
1294  * New feature allows importing from special remotes, using
1295    git annex import branch:subdir --from remote
1296  * Directory special remote supports being configured with importree=yes,
1297    to allow git-annex import of files from the directory. This can be
1298    combined with exporttree=yes and git-annex export used to send changes
1299    back to the same directory.
1300  * Remote tracking branches are updated when importing and exporting to
1301    special remotes, in ways analagous to how git fetch and git push do.
1302  * export: Deprecated the --tracking option.
1303    Instead, users can configure remote.<name>.annex-tracking-branch
1304    themselves.
1305  * sync --content: When remote.<name>.annex-tracking-branch is configured,
1306    import from special remotes.
1307  * sync, assistant: --no-push and remote.<name>.annex-push prevent exporting
1308    trees to special remotes.
1309  * Fix storage of metadata values containing newlines.
1310    (Reversion introduced in version 7.20190122.)
1311  * Sped up git-annex export in repositories with lots of keys.
1312  * S3: Support enabling bucket versioning when built with aws-0.21.1.
1313  * stack.yaml: Build with aws-0.21.1
1314  * Fix cleanup of git-annex:export.log after git-annex forget --drop-dead.
1315  * Makefile: Added install-home target which installs git-annex into
1316    the HOME directory.
1317  * addurl --file: Fix a bug that made youtube-dl be used unneccessarily
1318    when adding an html url that does not contain any media.
1319  * Add -- before %f in the smudge/clean filter configuration,
1320    to support filenames starting with dashes.
1321    (To update the config of existing repositories, you can
1322    re-run git-annex init.)
1323  * fsck: Detect situations where annex.thin has caused data loss
1324    to the content of locked files.
1325  * Removed bundled gpg from the Linux standalone build and OSX dmg,
1326    because gpg now always wants to use gpg-agent, and shipping such a daemon
1327    in those is not a good idea.
1328  * import: Let --force overwrite symlinks, not only regular files.
1329  * Android: Fix typo of name of armv7l in installation script.
1330    Thanks, 4omecha.
1331  * S3: Added protocol= initremote setting, to allow https to be used
1332    on a non-standard port.
1333
1334 -- Joey Hess <id@joeyh.name>  Fri, 22 Mar 2019 13:56:51 -0400
1335
1336git-annex (7.20190219) upstream; urgency=medium
1337
1338  * init: Fix bug when direct mode needs to be enabled on a crippled
1339    filesystem, that left the repository in indirect mode.
1340  * Fix false positive in export conflict detection, that occurred
1341    when the same tree was exported by multiple clones. Previous fix was
1342    incomplete.
1343  * When key-based retrieval from a S3 remote with exporttree=yes appendonly=yes
1344    fails, fall back to trying to retrieve from the exported tree.
1345    This allows downloads of files that were exported to such a remote
1346    before versioning was enabled on it.
1347  * Fix path separator bug on Windows that completely broke git-annex
1348    since version 7.20190122.
1349  * Improved speed of S3 remote by only loading S3 creds once.
1350  * Display progress bar when getting files from export remotes.
1351  * Fix race in cleanup of othertmp directory that could result in a failure
1352    attempting to access it.
1353  * fromkey: Made idempotent.
1354  * fromkey: Added --json.
1355  * fromkey --batch output changed to support using it with --json.
1356    The old output was not parseable for any useful information, so
1357    this is not expected to break anything.
1358  * Avoid performing repository fixups for submodules and git-worktrees
1359    when there's a .noannex file that will prevent git-annex from being
1360    used in the repository.
1361  * init: Don't let --force be used to override a .noannex file,
1362    instead the user can just delete the file.
1363  * webdav: Exporting files with '#' or '?' in their name won't work because
1364    urls get truncated on those. Fail in a better way in this case,
1365    and avoid failing when removing such files from the export, so
1366    after the user has renamed the problem files the export will succeed.
1367  * On Windows, avoid using rsync for local copies, since rsync is not
1368    always available there.
1369  * Added NetworkBSD build flag to deal with Network.BSD moving to a new
1370    package.
1371
1372 -- Joey Hess <id@joeyh.name>  Tue, 19 Feb 2019 11:12:45 -0400
1373
1374git-annex (7.20190129) upstream; urgency=medium
1375
1376  * initremote S3: When configured with versioning=yes, either ask the user
1377    to enable bucket versioning, or auto-enable it when built with aws-0.22.
1378  * enableremote S3: Do not let versioning=yes be set on existing remote,
1379    because when git-annex lacks S3 version IDs for files stored in
1380    the bucket, deleting them would cause data loss.
1381  * S3: Detect when version=yes but an exported file lacks a S3 version ID,
1382    and refuse to delete it, to avoid data loss.
1383  * S3: Send a Content-Type header when storing objects in S3,
1384    so exports to public buckets can be linked to from web pages.
1385    (When git-annex is built with MagicMime support.)
1386
1387 -- Joey Hess <id@joeyh.name>  Tue, 29 Jan 2019 15:09:20 -0400
1388
1389git-annex (7.20190122) upstream; urgency=medium
1390
1391  * sync --content: Fix dropping unwanted content from the local repository.
1392  * sync --content: Support dropping local content that has reached an
1393    exporttree remote that is not untrusted (currently only S3 remotes
1394    with versioning).
1395  * init: When --version=5 is passed on a crippled filesystem,
1396    use a v5 direct mode repo as requested, rather than upgrading to v7
1397    adjusted unlocked. (Fixes test suite on crippled filesystems.)
1398  * Some optimisations, including a 10x faster timestamp parser,
1399    a 7x faster key parser, and improved parsing and serialization of
1400    git-annex branch data. Many commands will run 5-15% faster.
1401  * Stricter parser for keys doesn't allow doubled fields or out of order fields.
1402  * The benchmark command, which only had some old benchmarking of the sqlite
1403    databases before, now allows benchmarking any other git-annex commands.
1404  * Support being built with ghc 8.6.3 (MonadFail).
1405  * Removed old code that cleaned up after a bug in git-annex versions
1406    3.20111105-3.20111110. In the unlikely event that a repo was
1407    last touched by that ancient git-annex version, the descriptions
1408    of remotes would appear missing when used with this version of
1409    git-annex.
1410  * Improve uuid.log parser to preserve whitespace in repo descriptions.
1411  * Improve activity.log parser to not remove unknown values,
1412    allowing for future expansion.
1413  * addunused, merge, assistant: Avoid creating work tree files in
1414    subdirectories in an edge case where the key contains "/".
1415  * testremote: Support testing readonly remotes with the --test-readonly option.
1416  * Switch to using .git/annex/othertmp for tmp files other than partial
1417    downloads, and make stale files left in that directory when git-annex
1418    is interrupted be cleaned up promptly by subsequent git-annex processes.
1419  * The .git/annex/misctmp directory is no longer used and git-annex will
1420    delete anything lingering in there after it's 1 week old.
1421  * Estimated time to completion display shortened from eg "1h1m1s" to "1h1m".
1422  * Fix doubled progress display when downloading an url when -J is used.
1423  * unused: Update suggested git log message to see where data was previously
1424    used so it will also work with v7 unlocked pointer files.
1425  * importfeed: Better error message when downloading the feed fails.
1426  * Make test suite work better when the temp directory is on NFS.
1427  * webapp: Remove configurator for box.com repository, since their
1428    webdav support is going away at the end of this January.
1429  * webapp: Remove configurator for gitlab, which stopped supporting git-annex
1430    some time ago.
1431  * Android: For armv71 architecture, use the armel build.
1432  * Windows: If 64 bit git is installed, use it when installing git-annex.
1433    (However, rsync still won't work and this is still not the documented way
1434    to install it.)
1435
1436 -- Joey Hess <id@joeyh.name>  Tue, 22 Jan 2019 12:25:26 -0400
1437
1438git-annex (7.20181211) upstream; urgency=medium
1439
1440  * S3: Improve diagnostics when a remote is configured with exporttree and
1441    versioning, but no S3 version id has been recorded for a key.
1442  * findref: Support file matching options: --include, --exclude,
1443    --want-get, --want-drop, --largerthan, --smallerthan, --accessedwithin
1444  * Commands supporting --branch now apply file matching options --include,
1445    --exclude, --want-get, --want-drop to filenames from the branch.
1446    Previously, combining --branch with those would fail to match anything.
1447  * add, import, findref: Support --time-limit.
1448  * Add --branch option to git-annex find and mildly deprecate findref in
1449    favor of it.
1450  * webdav: When initializing, avoid trying to make a directory at the top of
1451    the webdav server, which could never accomplish anything and failed on
1452    nextcloud servers. (Reversion introduced in version 6.20170925.)
1453  * Fix a case where upgrade to v7 caused git to think that unlocked files
1454    were modified.
1455  * Fix bug upgrading from direct mode to v7: when files in the repository
1456    were already committed as v7 unlocked files elsewhere, and the
1457    content was present in the direct mode repository, the annexed files
1458    got their full content checked into git.
1459  * Fix bug that caused v7 unlocked files in a direct mode repository
1460    to get locked when committing.
1461
1462 -- Joey Hess <id@joeyh.name>  Tue, 11 Dec 2018 16:33:10 -0400
1463
1464git-annex (7.20181205) upstream; urgency=medium
1465
1466  * Make bittorrent special remote work w/o btshowmetainfo installed
1467    when it was build with torrentparser.
1468    Thanks, Robert Schütz
1469  * When running youtube-dl to get a filename, pass --no-playlist.
1470  * Fix build without concurrent-output.
1471  * init: When a crippled filesystem causes an adjusted unlocked branch to
1472    be used, set repo version to 7, which it neglected to do before.
1473  * init: When on a crippled filesystem, and the git version is too old
1474    to use an adjusted unlocked branch, fall back to using direct mode.
1475  * info: When used with an exporttree remote, includes an "exportedtree"
1476    info, which is the tree last exported to the remote. During an export
1477    conflict, multiple values will be listed.
1478  * dropunused: When an unused object file has gotten modified, eg due to
1479    annex.thin being set, don't silently skip it, but display a warning
1480    and let --force drop it.
1481  * annex.cachecreds: New config to allow disabling of credentials caching
1482    for special remotes.
1483
1484 -- Joey Hess <id@joeyh.name>  Wed, 05 Dec 2018 14:02:27 -0400
1485
1486git-annex (7.20181121) upstream; urgency=medium
1487
1488  * git-annex-shell: Fix hang when transferring the same objects to two
1489    different clients at the same time. (Or when annex.pidlock is used,
1490    two different objects.)
1491  * Fixed some other potential hangs in the P2P protocol.
1492  * Fix bash completion of "git annex" to propertly handle files with
1493    spaces and other problem characters. (Completion of "git-annex"
1494    already did.)
1495  * Fix resume of download of url when the whole file content is
1496    already actually downloaded.
1497  * When an export conflict prevents accessing a special remote,
1498    be clearer about what the problem is and how to resolve it.
1499  * export, sync --content: Avoid unnecessarily trying to upload files
1500    to an exporttree remote that already contains the files.
1501  * smudge: When passed a file located outside the working tree, eg by git
1502    diff, avoid erroring out.
1503  * drop -J: Avoid processing the same key twice at the same time when
1504    multiple annexed files use it.
1505  * When a command is operating on multiple files and there's an error
1506    with one, try harder to continue to the rest. (As was already done
1507    for many types of errors including IO errors.)
1508  * Fixed a crash when using -J with ssh password prompts in
1509    --quiet/--json mode.
1510    Thanks to Yaroslav Halchenko and the DataLad&ReproNim team for
1511    helping to track down this bug.
1512  * Remove esqueleto dependency to allow upgrading other dependencies to
1513    newer versions.
1514    Thanks Sean Parsons.
1515  * Fix build with persistent-sqlite older than 2.6.3.
1516  * Updated stack.yaml to lts-12.19; added stack-lts-9.9.yaml
1517    to support old versions of stack.
1518
1519 -- Joey Hess <id@joeyh.name>  Wed, 21 Nov 2018 14:22:47 -0400
1520
1521git-annex (7.20181105) upstream; urgency=medium
1522
1523  * Fix test suite failure when git-annex test is not run inside a git
1524    repository.
1525  * Fix a P2P protocol hang.
1526  * importfeed: Avoid erroring out when a feed has been repeatedly broken,
1527    as that can leave other imported files not checked into git.
1528  * Increase minimum QuickCheck version.
1529
1530 -- Joey Hess <id@joeyh.name>  Mon, 05 Nov 2018 13:31:09 -0400
1531
1532git-annex (7.20181031) upstream; urgency=medium
1533
1534  * Added v7 repository mode. v6 upgrades automatically to v7, but
1535    v5 is still the default for now. While v6 was always experimental
1536    to some degree, its successor v7 is ready for production use!
1537    http://git-annex.branchable.com/tips/unlocked_files/
1538  * Direct mode repositories are deprecated; they have many problems
1539    that v7 fixes, so upgrading them now is recommended (but not yet
1540    required): git annex upgrade --version=7
1541  * init: When in a crippled filesystem, initialize a v7 repository
1542    using an adjusted unlocked branch, instead of a direct mode repository.
1543  * At long last there's a way to hide annexed files whose content
1544    is missing from the working tree: git-annex adjust --hide-missing
1545    See https://git-annex.branchable.com/tips/hiding_missing_files/
1546  * When already in an adjusted branch, running git-annex adjust
1547    again will update the branch as needed. This is mostly
1548    useful with --hide-missing to hide/unhide files after their content
1549    has been dropped or received.
1550  * git-annex sync --content supports --hide-missing; it can
1551    be used to get the content of hidden files, and it updates the
1552    adjusted branch to hide/unhide files as necessary.
1553  * smudge: The smudge filter no longer provides git with annexed
1554    file content, to avoid a git memory leak, and because that did not
1555    honor annex.thin. Now git annex smudge --update has to be run
1556    after a checkout to update unlocked files in the working tree
1557    with annexed file contents.
1558  * v7 init, upgrade: Install git post-checkout and post-merge hooks that run
1559    git annex smudge --update.
1560  * precommit: Run git annex smudge --update, because the post-merge
1561    hook is not run when there is a merge conflict. So the work tree will
1562    be updated when a commit is made to resolve the merge conflict.
1563  * Note that git has no hooks run after git stash or git cherry-pick,
1564    so the user will have to manually run git annex smudge --update
1565    after such commands.
1566  * Removed the old Android app.
1567  * Removed support for building with very old ghc < 8.0.1,
1568    and with yesod < 1.4.3, and without concurrent-output,
1569    which were only being used for the Android cross build.
1570  * Webapp: Fix termux detection.
1571  * runshell: Use system locales when built with
1572    GIT_ANNEX_PACKAGE_INSTALL set. (For Neurodebian packages.)
1573  * Fix database inconsistency that could cause git-annex to
1574    get confused about whether a locked file's content was present.
1575  * Fix concurrency bug that occurred on the first download from an
1576    exporttree remote.
1577  * init --version=6 will still work, but the repository is auto-upgraded
1578    immediately to v7.
1579  * When annex.thin is set, allow hard links to be made between executable
1580    work tree files and annex objects.
1581  * addurl: Removed undocumented special case in handling of a CHECKURL-MULTI
1582    response with only a single file listed. Rather than ignoring the url that
1583    was in the response, use it.
1584  * webapp: Fixed a crash when adding a git remote.
1585    (Reversion introduced in version 6.20180112)
1586  * migrate: Fix failure to migrate from URL keys.
1587    (Reversion introduced in version 6.20180926)
1588  * Cache high-resolution mtimes for improved detection of modified files
1589    in v7 (and direct mode).
1590
1591 -- Joey Hess <id@joeyh.name>  Wed, 31 Oct 2018 09:21:50 -0400
1592
1593git-annex (6.20181011) upstream; urgency=medium
1594
1595  * sync: Warn when a remote's export is not updated to the current
1596    tree because export tracking is not configured.
1597  * Improve display when git config download from a http remote fails.
1598  * Added annex.jobs setting, which is like using the -J option.
1599  * Fix reversion in support of annex.web-options.
1600  * rmurl: Fix a case where removing the last url left git-annex thinking
1601    content was still present in the web special remote.
1602  * SETURLPRESENT, SETURIPRESENT, SETURLMISSING, and SETURIMISSING
1603    used to update the presence information of the external special remote
1604    that called them; this was not documented behavior and is no longer done.
1605  * export: Fix false positive in export conflict detection, that occurred
1606    when the same tree was exported by multiple clones.
1607  * Fix potential crash in exporttree database due to failure to honor
1608    uniqueness constraint.
1609  * Fix crash when exporttree is set to a bad value.
1610  * Linux standalone: Avoid using bundled cp before envionment is fully set up.
1611  * Added arm64 Linux standalone build.
1612  * Improved termux installation process.
1613
1614 -- Joey Hess <id@joeyh.name>  Thu, 11 Oct 2018 13:41:10 -0400
1615
1616git-annex (6.20180926) upstream; urgency=medium
1617
1618  [ Joey Hess ]
1619  * Fixes a reversion in the last release that broke interoperation with
1620    older versions of git-annex-shell.
1621  * init: Improve generated post-receive hook, so it won't fail when
1622    run on a system whose git-annex is too old to support git-annex post-receive
1623  * init: Update the post-receive hook when re-run in an existing repository.
1624  * S3: Fix url construction bug when the publicurl has been set to an url
1625    that does not end with a slash.
1626  * --debug shows urls accessed by git-annex, like it used to do when
1627    git-annex used wget and curl.
1628  * Fix support for filenames containing newlines when querying git
1629    cat-file, though less efficiently than other filenames.
1630    This should make git-annex fully support filenames containing newlines
1631    as the rest of git's interface is used in newline-safe ways.
1632  * Added -z option to git-annex commands that use --batch, useful for
1633    supporting filenames containing newlines.
1634  * Added annex.maxextensionlength for use cases where extensions longer
1635    than 4 characters are needed.
1636  * Added remote.name.annex-security-allow-unverified-downloads, a
1637    per-remote setting for annex.security.allow-unverified-downloads.
1638  * More FreeBSD build fixes.
1639
1640  [ Yaroslav Halchenko ]
1641  * debian/control
1642    + add netbase to Depends: since required for basic tcp interactions
1643      (see e.g. https://github.com/nipy/heudiconv/issues/260)
1644
1645 -- Joey Hess <id@joeyh.name>  Wed, 26 Sep 2018 12:56:49 -0400
1646
1647git-annex (6.20180913) upstream; urgency=medium
1648
1649  * When --batch is used with matching options like --in, --metadata,
1650    etc, only operate on the provided files when they match those options.
1651    Otherwise, a blank line is output in the batch protocol.
1652    Affected commands: find, add, whereis, drop, copy, move, get
1653  * Make metadata --batch combined with matching options refuse to run,
1654    since it does not seem worth supporting that combination.
1655  * v6 add: Take advantage of improved SIGPIPE handler in git 2.5 to
1656    speed up the clean filter by not reading the file content from the
1657    pipe. This also avoids git buffering the whole file content in memory.
1658  * v6: After updating the worktree for an add/drop, update git's index,
1659    so git status will not show the files as modified.
1660  * v6: When annex.largefiles is not configured for a file, running git
1661    add or git commit, or otherwise using git to stage a file
1662    will add it to the annex if the file was in the annex before,
1663    and to git otherwise. This is to avoid accidental conversion.
1664    Note that git-annex add's behavior has not changed.
1665  * v6: Update associated files database when git has staged changes
1666    to pointer files.
1667  * v6: Fix some race conditions.
1668  * v6: Fix annex object file permissions when git-annex add is run
1669    on a modified unlocked file, and in some related cases.
1670  * v6: When a file is unlocked but has not been modified,
1671    and the unlocking is only staged, git-annex add did not lock it.
1672    Now it will, for consistency with how modified files are handled and
1673    with v5.
1674  * Fix git command queue to be concurrency safe.
1675  * linux standalone: When LOCPATH is already set, use it instead of the
1676    bundled locales. It can be set to an empty string to use the system
1677    locales too.
1678  * Stop using external hash programs, since cryptonite is faster.
1679  * Fix build on FreeBSD.
1680  * S3: Support buckets with versioning enabled. When a remote
1681    is configured with exporttree=yes versioning=yes, git-annex can
1682    download past versions of exported files from it.
1683  * S3: Multipart uploads are now only supported when git-annex is built
1684    with aws-0.16.0 or later, as earlier versions of the library don't
1685    support versioning with multipart uploads.
1686  * S3: Support AWS_SESSION_TOKEN.
1687  * Don't use GIT_PREFIX when GIT_WORK_TREE=. because it seems git
1688    does not intend GIT_WORK_TREE to be relative to GIT_PREFIX in that
1689    case, despite GIT_WORK_TREE=.. being relative to GIT_PREFIX.
1690  * Don't use GIT_PREFIX to fix up a relative GIT_DIR, because
1691    git 2.11 sets GIT_PREFIX to a path it's not relative to.
1692    and apparently GIT_DIR is never relative to GIT_PREFIX.
1693  * git-annex.cabal: Fix build without assistant, and some other refinements.
1694    Thanks fftehnik.
1695
1696 -- Joey Hess <id@joeyh.name>  Thu, 13 Sep 2018 15:50:38 -0400
1697
1698git-annex (6.20180807) upstream; urgency=medium
1699
1700  * S3: Support credential-less download from remotes configured
1701    with public=yes exporttree=yes.
1702  * Fix reversion in display of http 404 errors.
1703  * Added remote.name.annex-speculate-present config that can be used to
1704    make cache remotes.
1705  * Added --accessedwithin matching option.
1706  * Added annex.commitmessage config that can specify a commit message
1707    for the git-annex branch instead of the usual "update".
1708  * Fix wrong sorting of remotes when using -J, it was sorting by uuid,
1709    rather than cost.
1710  * addurl: Include filename in --json-progress output.
1711  * Fix git-annex branch data loss that could occur after
1712    git-annex forget --drop-dead.
1713
1714 -- Joey Hess <id@joeyh.name>  Tue, 07 Aug 2018 16:22:05 -0400
1715
1716git-annex (6.20180719) upstream; urgency=medium
1717
1718  * Support working trees set up by git-worktree.
1719  * Improve support for repositories created with --separate-git-dir.
1720  * Support configuring remote.web.annex-cost and remote.bittorrent.annex-cost
1721  * addurl: When security configuration prevents downloads with youtube-dl,
1722    still check if the url is one that it supports, and fail downloading
1723    it, instead of downloading the raw web page.
1724  * Send User-Agent and any configured annex.http-headers when downloading
1725    with http, fixes reversion introduced when switching to http-client.
1726  * Fix reversion introduced in version 6.20180316 that caused git-annex to
1727    stop processing files when unable to contact a ssh remote.
1728  * v6: Work around git bug that runs smudge/clean filters at the top of the
1729    repository while passing them a relative GIT_WORK_TREE that may point
1730    outside of the repository, by using GIT_PREFIX to get back to the
1731    subdirectory where a relative GIT_WORK_TREE is valid.
1732  * p2p --pair: Fix interception of the magic-wormhole pairing code,
1733    which since 0.8.2 it has sent to stderr rather than stdout.
1734  * info: Display uuid and description when a repository is identified by
1735    uuid, and for "here".
1736  * unused --from: Allow specifiying a repository by uuid or description.
1737  * linux standalone: Generate locale files in ~/.cache/git-annex/locales/
1738    so they're available even when the standalone tarball is installed
1739    in a directory owned by root. Note that this prevents using the
1740    standalone bundle in environments where HOME is not writable.
1741  * Include uname command in standalone builds since git-annex uses it.
1742  * git-annex.cabal: Fix network version.
1743
1744 -- Joey Hess <id@joeyh.name>  Thu, 19 Jul 2018 13:53:45 -0400
1745
1746git-annex (6.20180626) upstream; urgency=high
1747
1748  Security fix release for CVE-2018-10857 and CVE-2018-10859
1749  https://git-annex.branchable.com/security/CVE-2018-10857_and_CVE-2018-10859/
1750
1751  * Refuse to download content, that cannot be verified with a hash,
1752    from encrypted special remotes (for CVE-2018-10859),
1753    and from all external special remotes and glacier (for CVE-2018-10857).
1754    In particular, URL and WORM keys stored on such remotes won't
1755    be downloaded. If this affects your files, you can run
1756    `git-annex migrate` on the affected files, to convert them
1757    to use a hash.
1758  * Added annex.security.allow-unverified-downloads, which can override
1759    the above.
1760  * Added annex.security.allowed-url-schemes setting, which defaults
1761    to only allowing http, https, and ftp URLs. Note especially that file:/
1762    is no longer enabled by default.
1763  * Removed annex.web-download-command, since its interface does not allow
1764    supporting annex.security.allowed-url-schemes across redirects.
1765    If you used this setting, you may want to instead use annex.web-options
1766    to pass options to curl.
1767  * git-annex will refuse to download content from http servers on
1768    localhost, or any private IP addresses, to prevent accidental
1769    exposure of internal data. This can be overridden with the
1770    annex.security.allowed-http-addresses setting.
1771  * Local http proxies will not be used unless allowed by the
1772    annex.security.allowed-http-addresses setting.
1773  * Since the interfaces to curl and youtube-dl do not have a way to
1774    prevent them from accessing localhost or private IP addresses,
1775    they default to not being used for url downloads.
1776    Only when annex.security.allowed-http-addresses=all will curl and
1777    youtube-dl be used.
1778
1779  Non-security fix changes:
1780
1781  * Fix build with ghc 8.4+, which broke due to the Semigroup Monoid change.
1782  * version: Show operating system and repository version list
1783    when run outside a git repo too.
1784  * Fix annex-checkuuid implementation, so that remotes configured that
1785    way can be used.
1786  * Fix problems accessing repositories over http when annex.tune.*
1787    is configured.
1788  * External special remotes can now add info to `git annex info $remote`,
1789    by replying to the GETINFO message.
1790  * adb: Android serial numbers are not all 16 characters long, so accept
1791    other lengths.
1792  * Display error messages that come from git-annex-shell when the p2p
1793    protocol is used, so that diskreserve messages, IO errors, etc from
1794    the remote side are visible again.
1795  * When content has been lost from an export remote and
1796    git-annex fsck --from remote has noticed it's gone, re-running
1797    git-annex export or git-annex sync --content will re-upload it.
1798
1799 -- Joey Hess <id@joeyh.name>  Fri, 22 Jun 2018 10:36:22 -0400
1800
1801git-annex (6.20180529) upstream; urgency=medium
1802
1803  * Prevent haskell http-client from decompressing gzip files, so downloads
1804    of such files works the same as it used to with wget and curl.
1805  * Workaround for bug in an old version of cryptonite that broke https
1806    downloads, by using curl for downloads when git-annex is built with it.
1807  * view, vadd: Fix crash when a git submodule has a name starting with a dot.
1808  * Don't allow entering a view with staged or unstaged changes.
1809  * move: --force was accidentially enabling two unrelated behaviors
1810    since 6.20180427. The older behavior, which has never been well
1811    documented and seems almost entirely useless, has been removed.
1812  * copy: --force no longer does anything.
1813  * migrate: Fix bug in migration between eg SHA256 and SHA256E,
1814    that caused the extension to be included in SHA256 keys,
1815    and omitted from SHA256E keys.
1816    (Bug introduced in version 6.20170214)
1817  * migrate: Check for above bug when migrating from SHA256 to SHA256
1818    (and same for SHA1 to SHA1 etc), and remove the extension that should
1819    not be in the SHA256 key.
1820  * fsck: Detect and warn when keys need an upgrade, either to fix up
1821    from the above migrate bug, or to add missing size information
1822    (a long ago transition), or because of a few other past key related
1823    bugs.
1824  * git-annex-shell: GIT_ANNEX_SHELL_APPENDONLY makes it allow writes,
1825    but not deletion of annexed content. Note that securing pushes to
1826    the git repository is left up to the user.
1827  * setpresentkey: Added --batch support.
1828
1829 -- Joey Hess <id@joeyh.name>  Tue, 29 May 2018 13:05:26 -0400
1830
1831git-annex (6.20180509) upstream; urgency=medium
1832
1833  * The old git-annex Android app is now deprecated in favor of running
1834    git-annex in termux.
1835  * runshell: Use proot when running on Android, to work around
1836    Android 8's ill-advised seccomp filtering of system calls,
1837    including ones crucial for reliable thread locking.
1838    (This will only work with termux's version of proot.)
1839  * Fix bug in last release that crashes when using
1840    --all or running git-annex in a bare repository. May have also
1841    affected git-annex unused and git-annex info.
1842  * Fix bug in last release that prevented the webapp opening on
1843    non-Linux systems.
1844  * Support building with hinotify-0.3.10.
1845  * Display error message when http download fails.
1846  * Avoid forward retry when 0 bytes were received.
1847
1848 -- Joey Hess <id@joeyh.name>  Wed, 09 May 2018 16:20:26 -0400
1849
1850git-annex (6.20180427) upstream; urgency=medium
1851
1852  * move: Now takes numcopies configuration, and required content
1853    configuration into account, and refuses to reduce the current
1854    number of copies of a file, or remove content that a repository
1855    requires. --force can override these checks.
1856    Note that it's still allowed to move the content of a file
1857    from one repository to another when numcopies is not satisfied, as long
1858    as the move does not result in there being fewer copies.
1859  * Fix mangling of --json output of utf-8 characters when not
1860    running in a utf-8 locale.
1861  * Fix build with yesod 1.6.
1862  * Clean up some build warnings with newer versions of ghc and haskell
1863    libraries.
1864  * runshell: Unset LD_PRELOAD since preloaded libraries from the host
1865    system may not get along with the bundled linker.
1866  * runshell: Added some tweaks to make git-annex work in termux on
1867    Android. The regular arm standalone tarball now works in termux.
1868  * Webapp: Support being run inside termux on Android, and offer to set up
1869    a repository on the sdcard.
1870  * Assistant: Integrate with Termux:Boot, so when it's installed, the
1871    assistant is autostarted on boot.
1872  * Assistant: Fix installation of menus, icons, etc when run
1873    from within runshell.
1874  * import: Avoid buffering all filenames to be imported in memory.
1875  * Improve memory use and speed of --all and git-annex info remote,
1876    by not buffering list of all keys.
1877
1878 -- Joey Hess <id@joeyh.name>  Fri, 27 Apr 2018 12:36:20 -0400
1879
1880git-annex (6.20180409) upstream; urgency=medium
1881
1882  * Added adb special remote which allows exporting files to Android devices.
1883  * For url downloads, git-annex now defaults to using a http library,
1884    rather than wget or curl. But, if annex.web-options is set, it will
1885    use curl. To use the .netrc file, run:
1886      git config annex.web-options --netrc
1887  * git-annex no longer uses wget (and wget is no longer shipped with
1888    git-annex builds).
1889  * Enable HTTP connection reuse across multiple files for improved speed.
1890  * Fix calculation of estimated completion for progress meter.
1891  * OSX app: Work around libz/libPng/ImageIO.framework version skew
1892    by not bundling libz, assuming OSX includes a suitable libz.1.dylib.
1893  * Added annex.retry, annex.retry-delay, and per-remote versions
1894    to configure transfer retries.
1895  * Also do forward retrying in cases where no exception is thrown,
1896    but the transfer failed.
1897  * When adding a new version of a file, and annex.genmetadata is enabled,
1898    don't copy the data metadata from the old version of the file,
1899    instead use the mtime of the file.
1900  * Avoid running annex.http-headers-command more than once.
1901  * info: Added "combined size of repositories containing these files"
1902    stat when run on a directory.
1903  * info: Changed sorting of numcopies stats table, so it's ordered
1904    by the variance from the desired number of copies.
1905  * Fix resuming a download when using curl.
1906
1907 -- Joey Hess <id@joeyh.name>  Mon, 09 Apr 2018 13:03:15 -0400
1908
1909git-annex (6.20180316) upstream; urgency=medium
1910
1911  * New protocol for communicating with git-annex-shell increases speed
1912    of operations involving ssh remotes. When not transferring large files,
1913    git-annex is between 200% and 400% faster using the new protocol,
1914    and it's just as fast as before when transferring large files.
1915    (When the remote has an old git-annex-shell, git-annex falls back
1916    to the old slower code. This fallback is planned to be removed
1917    after 5 years or so.)
1918  * Note that, due to not using rsync to transfer files over ssh
1919    any longer, permissions and other file metadata of annexed files
1920    will no longer be preserved when copying them to and from ssh remotes.
1921    Other remotes never supported preserving that information, so
1922    this is not considered a regression.
1923  * Fix data loss bug in content locking over tor, when the remote
1924    repository is in direct mode, it neglected to check that the content
1925    was actually present when locking it. This could cause git annex drop
1926    to remove the only copy of a file when it thought the tor remote had
1927    a copy.
1928  * Fix data loss bug when the local repository uses direct mode, and a
1929    locally modified file is dropped from a remote repsitory. The bug
1930    caused the modified file to be counted as a copy of the original file.
1931    (This is not a severe bug because in such a situation, dropping
1932    from the remote and then modifying the file is allowed and has the same
1933    end result.)
1934  * Some downloads will be verified, even when annex.verify=false.
1935    This is done in some edge cases where there's a likelyhood than an
1936    object was downloaded incorrectly.
1937  * Support exporttree=yes for rsync special remotes.
1938  * Added backends for the BLAKE2 family of hashes, when built with
1939    a new enough version of cryptonite.
1940  * Improve SHA*E extension extraction code to not treat parts of the
1941    filename that contain punctuation or other non-alphanumeric characters
1942    as extensions. Before, such characters were filtered out.
1943  * Better ssh connection warmup when using -J for concurrency.
1944    Avoids ugly messages when forced ssh command is not git-annex-shell.
1945  * Fix race condition in ssh warmup that caused git-annex to get
1946    stuck and never process some files when run with high levels of
1947    concurrency.
1948  * Fix reversion introduced in 6.20171214 that caused concurrent
1949    transfers to incorrectly fail with "transfer already in progress".
1950  * Note that Remote/Git.hs now contains AGPL licensed code,
1951    thus the license of git-annex as a whole is AGPL. This was already
1952    the case when git-annex was built with the webapp enabled.
1953  * Include amount of data transferred in progress display.
1954  * Dial back optimisation when building on arm, which prevents
1955    ghc and llc from running out of memory when optimising some files.
1956    (Unfortunately this fix is incomplete due to a ghc bug.)
1957
1958 -- Joey Hess <id@joeyh.name>  Fri, 16 Mar 2018 12:10:40 -0400
1959
1960git-annex (6.20180227) upstream; urgency=medium
1961
1962  * inprogress: Avoid showing failures for files not in progress.
1963  * Added INFO to external special remote protocol.
1964  * Added EXTENSIONS to external special remote protocol.
1965  * datalad < 0.9.1 had a problem in its special remote protocol handling
1966    which is broken by EXTENSIONS. Make the debian git-annex package
1967    conflict with the problem version of datalad.
1968  * fsck: Warn when required content is not present in the repository that
1969    requires it.
1970  * Add gpg-agent to Build-Depends.
1971    Needed to run the test suite.
1972  * --json: When there are multiple lines of notes about a file, make the note
1973    field multiline, rather than the old behavior of only including the
1974    last line.
1975  * git-annex.cabal: Once more try to not build the assistant on the hurd,
1976    hopefully hackage finally recognises that OS.
1977  * Split Test.hs and avoid optimising it much, to need less memory to
1978    compile.
1979  * Fix behavior of --json-progress followed by --json, the latter option
1980    used to disable the former.
1981  * Added --json-error-messages option, which makes messages
1982    that would normally be output to standard error be included in
1983    the json output.
1984  * Remove temporary code added in 6.20160619 to prime the mergedrefs
1985    log.
1986  * importfeed: Fix a failure when downloading with youtube-dl
1987    and the destination subdirectory does not exist yet.
1988  * Added annex.merge-annex-branches config setting which
1989    can be used to disable automatic merge of git-annex branches.
1990  * tips/automatically_adding_metadata/pre-commit-annex: Fix to not
1991    silently skip filenames containing non-ascii characters.
1992  * sync: Fix bug that prevented pulling changes into direct mode
1993    repositories that were committed to remotes using git commit
1994    rather than git-annex sync.
1995  * Makefile: Remove chrpath workaround for bug in cabal,
1996    which is no longer needed.
1997
1998 -- Joey Hess <id@joeyh.name>  Tue, 27 Feb 2018 12:04:52 -0400
1999
2000git-annex (6.20180112) upstream; urgency=medium
2001
2002  * Added inprogress command for accessing files as they are being
2003    downloaded.
2004  * Fix bug introduced in version 6.20171018 that caused some commands
2005    to print out "ok" twice after processing a file.
2006  * addurl: When the file youtube-dl will download is already an annexed
2007    file, don't download it again and fail to overwrite it, instead just do
2008    nothing, like it used to when quvi was used.
2009  * addurl: Fix encoding of filename queried from youtube-dl when in
2010    --fast mode.
2011  * Fix several places where files in .git/annex/ were written with modes
2012    that did not take the core.sharedRepository config into account.
2013  * Improve startup time for commands that do not operate on remotes,
2014    and for tab completion, by not unnessessarily statting paths to
2015    remotes, which used to cause eg, spin-up of removable drives.
2016  * Added remote.<name>.annex-checkuuid config, which can be set to false
2017    to disable the default checking of the uuid of remotes that point to
2018    directories. This can be useful to avoid unncessary drive spin-ups and
2019    automounting.
2020  * git-annex.cabal: Add back custom-setup stanza, so cabal new-build works.
2021  * git-annex.cabal: Removed the testsuite build flag; test suite is always
2022    included.
2023
2024 -- Joey Hess <id@joeyh.name>  Fri, 12 Jan 2018 15:45:48 -0400
2025
2026git-annex (6.20171214) upstream; urgency=medium
2027
2028  * Use youtube-dl rather than quvi to download media from web pages,
2029    since quvi is not being actively developed and youtube-dl supports
2030    many more sites.
2031  * addurl --relaxed got slower, since youtube-dl has to hit the network
2032    to check for embedded media. If you relied on --relaxed not hitting the
2033    network for speed reasons, using --relaxed --raw will get the old level
2034    of speed, but can't be used for urls with embedded videos.
2035  * importfeed now downloads things linked to by feeds, even when they are
2036    not media files.
2037  * Removed no longer needed dependency on yesod-default.
2038  * Allow exporttree remotes to be marked as dead.
2039  * initremote, enableremote: Really support gpg subkeys suffixed with an
2040    exclamation mark, which forces gpg to use a specific subkey.
2041    (Previous try had a bug.)
2042  * lookupkey: Support being given an absolute filename to a file
2043    within the current git repository.
2044  * A top-level .noannex file will prevent git-annex init from being used
2045    in a repository. This is useful for repositories that have a policy
2046    reason not to use git-annex. The content of the file will be displayed
2047    to the user who tries to run git-annex init.
2048
2049 -- Joey Hess <id@joeyh.name>  Thu, 14 Dec 2017 11:50:48 -0400
2050
2051git-annex (6.20171124) unstable; urgency=medium
2052
2053  * Display progress meter when uploading a key without size information,
2054    getting the size by statting the content file.
2055  * Fix build with dns-3.0.
2056
2057 -- Joey Hess <id@joeyh.name>  Fri, 24 Nov 2017 10:49:36 -0400
2058
2059git-annex (6.20171109) unstable; urgency=medium
2060
2061  * Fix export of subdir of a branch.
2062  * Fix exporting of non-annexed files to external special remotes.
2063  * unlock, lock: Support --json.
2064  * When there are multiple urls for a file, still treat it as being present
2065    in the web when some urls don't work, as long as at least one url does
2066    work.
2067  * Makefile improvement for sudo make install.
2068    Thanks, Eric Siegerman
2069  * Makefile improvement for BUILDER=stack, use stack to run ghc.
2070  * testremote: Test exporttree.
2071  * Fix directory special remote's cleanup of empty export directories.
2072
2073 -- Joey Hess <id@joeyh.name>  Thu, 09 Nov 2017 12:21:49 -0400
2074
2075git-annex (6.20171026) unstable; urgency=medium
2076
2077  * Windows: Fix reversion that caused the path used to link
2078    to annexed content to include the drive letter and full path, rather
2079    than being relative. (`git annex fix` will fix up after this problem).
2080  * Windows build fixed, and changed to use stack for more reliable build
2081    environment.
2082  * Windows: Remove wget from bundle; it needs libraries that are not
2083    included, and git for windows includes curl which git-annex will use
2084    instead.
2085  * Add day to metadata when annex.genmetadata is enabled.
2086    Thanks, Sean T Parsons
2087  * stack.yaml: Added nix packages section.
2088    Thanks, Sean T Parsons
2089
2090 -- Joey Hess <id@joeyh.name>  Thu, 26 Oct 2017 13:56:18 -0400
2091
2092git-annex (6.20171018) unstable; urgency=medium
2093
2094  * add: Replace work tree file atomically on systems supporting hard
2095    links. Avoids a window where interrupting an add could result in
2096    the file being moved into the annex, with no symlink yet created.
2097  * webdav: Avoid unncessisarily creating the collection at the top
2098    of the repository when storing files there, since that collection
2099    is created by initremote.
2100    (This seems to work around some brokenness of the box.com webdav
2101    server, which caused uploads to be very slow or sometimes fail.)
2102  * webdav: Make --debug show all webdav operations.
2103  * get -J/move -J/copy -J/mirror -J/sync -J: Avoid "transfer already in
2104    progress" errors when two files use the same key.
2105  * Konqueror desktop file location changed to one used by plasma 5.
2106    Thanks, Félix Sipma.
2107  * Avoid repeated checking that files passed on the command line exist.
2108  * Fix build with aws-0.17.
2109  * stack.yaml: Update to lts-9.9.
2110
2111 -- Joey Hess <id@joeyh.name>  Wed, 18 Oct 2017 15:40:06 -0400
2112
2113git-annex (6.20171003) unstable; urgency=medium
2114
2115  * webdav: Improve error message for failed request to include the request
2116    method and path.
2117  * metadata: Added --remove-all.
2118  * Warn when metadata is inherited from a previous version of a file,
2119    to avoid the user being surprised in cases where that behavior is not
2120    desired or expected.
2121  * sync: Added --cleanup, which removes local and remote synced/ branches.
2122  * external: When the external special remote program crashed, a newline
2123    could be output, which messed up the expected output for --batch mode.
2124  * external: Avoid checking EXPORTSUPPORTED for special remotes that are
2125    not configured to use exports.
2126  * test: Fix reversion that made it only run inside a git repository.
2127  * copy, move: Behave same with --fast when sending to remotes located
2128    on a local disk as when sending to other remotes.
2129  * Fix process and file descriptor leak that was exposed when
2130    git-annex was built with ghc 8.2.1. Broke git-annex test on OSX
2131    due to running out of FDs, and may have also leaked in other situations.
2132  * info: Improve cleanup of stale transfer info files.
2133
2134 -- Joey Hess <id@joeyh.name>  Tue, 03 Oct 2017 13:18:15 -0400
2135
2136git-annex (6.20170925) unstable; urgency=medium
2137
2138  * git-annex export: New command, can create and efficiently update
2139    exports of trees to special remotes.
2140  * Use git-annex initremote with exporttree=yes to set up a special remote
2141    for use by git-annex export.
2142  * Implemented export to directory, S3, and webdav special remotes.
2143  * External special remote protocol extended to support export.
2144    Developers of external special remotes should consider if export makes
2145    sense for them and add support.
2146  * sync, assistant: Update tracking exports.
2147  * Support building with feed-1.0, while still supporting older versions.
2148  * init: Display an additional message when it detects a filesystem that
2149    allows writing to files whose write bit is not set.
2150  * S3: Allow removing files from IA.
2151  * webdav: Checking if a non-existent file is present on Box.com
2152    triggered a bug in its webdav support that generates an infinite series
2153    of redirects. Deal with such problems by assuming such behavior means
2154    the file is not present.
2155  * webdav: Fix lack of url-escaping of filenames. Mostly impacted exports
2156    of filenames containing eg spaces.
2157  * webdav: Changed path used on webdav server for temporary files.
2158
2159 -- Joey Hess <id@joeyh.name>  Mon, 25 Sep 2017 11:13:58 -0400
2160
2161git-annex (6.20170818) unstable; urgency=high
2162
2163  * Security fix: Disallow hostname starting with a dash, which
2164    would get passed to ssh and be treated an option. This could
2165    be used by an attacker who provides a crafted repository url
2166    to cause the victim to execute arbitrary code via -oProxyCommand.
2167    CVE-2017-12976
2168    (The same class of security hole recently affected git itself.)
2169  * git-annex.cabal: Deal with breaking changes in Cabal 2.0.
2170  * Fix build with QuickCheck 2.10.
2171  * fsck: Support --json.
2172  * move, copy: Support --batch.
2173  * Added GIT_ANNEX_VECTOR_CLOCK environment variable, which can be used to
2174    override the default timestamps used in log files in the git-annex
2175    branch. This is a dangerous environment variable; use with caution.
2176  * Fix a git-annex test failure when run on NFS due to NFS lock files
2177    preventing directory removal.
2178  * test: Avoid most situations involving failure to delete test
2179    directories, by forking a worker process and only deleting the test
2180    directory once it exits.
2181  * Disable http-client's default 30 second response timeout when HEADing
2182    an url to check if it exists. Some web servers take quite a long time
2183    to answer a HEAD request.
2184  * Added remote configuration settings annex-ignore-command and
2185    annex-sync-command, which are dynamic equivilants of the annex-ignore
2186    and annex-sync configurations.
2187  * Prevent spaces from being embedded in the name of new WORM keys,
2188    as that handing spaces in keys would complicate things like the
2189    external special remote protocol.
2190  * migrate: WORM keys containing spaces will be migrated to not contain
2191    spaces anymore.
2192  * External special remotes will refuse to operate on keys with spaces in
2193    their names. That has never worked correctly due to the design of the
2194    external special remote protocol. Display an error message suggesting
2195    migration.
2196  * Fix incorrect external special remote documentation, which said that
2197    the filename parameter to the TRANSFER command could not contain
2198    spaces. It can in fact contain spaces. Special remotes implementors
2199    that relied on that may need to fix bugs in their special remotes.
2200  * Fix the external special remotes git-annex-remote-ipfs,
2201    git-annex-remote-torrent and the example.sh template to correctly
2202    support filenames with spaces.
2203  * Windows: Win32 package has subsumed Win32-extras; update dependency.
2204
2205 -- Joey Hess <id@joeyh.name>  Fri, 18 Aug 2017 11:19:06 -0400
2206
2207git-annex (6.20170520) unstable; urgency=medium
2208
2209  * move --to=here moves from all reachable remotes to the local repository.
2210  * initremote, enableremote: Support gpg subkeys suffixed with an
2211    exclamation mark, which forces gpg to use a specific subkey.
2212  * Improve progress display when watching file size, in cases where
2213    a transfer does not resume.
2214  * Fix transfer log file locking problem when running concurrent
2215    transfers.
2216  * Avoid concurrent git-config setting problem when running concurrent
2217    threads.
2218  * metadata: When setting metadata of a file that did not exist,
2219    no error message was displayed, unlike getting metadata and most other
2220    git-annex commands. Fixed this oversight.
2221  * Added annex.resolvemerge configuration, which can be set to false to
2222    disable the usual automatic merge conflict resolution done by git-annex
2223    sync and the assistant.
2224  * sync: Added --no-resolvemerge option.
2225  * Avoid error about git-annex-shell not being found when
2226    syncing with -J with a git remote where git-annex-shell is not
2227    installed.
2228  * Fix bug that prevented transfer locks from working when
2229    run on SMB or other filesystem that does not support fcntl locks
2230    and hard links.
2231  * assistant: Merge changes from refs/remotes/foo/master into master.
2232    Previously, only sync branches were merged. This makes regular git push
2233    into a repository watched by the assistant auto-merge.
2234  * Makefile: Install completions for the fish and zsh shells
2235    when git-annex is built with optparse-applicative-0.14.
2236  * assistant: Don't trust OSX FSEvents's eventFlagItemModified to be called
2237    when the last writer of a file closes it; apparently that sometimes
2238    does not happen, which prevented files from being quickly added.
2239
2240 -- Joey Hess <id@joeyh.name>  Mon, 12 Jun 2017 13:37:16 -0400
2241
2242git-annex (6.20170519) unstable; urgency=medium
2243
2244  * Ssh password prompting improved when using -J for concurrency.
2245    When ssh connection caching is enabled (and when GIT_ANNEX_USE_GIT_SSH
2246    is not set), only one ssh password prompt will be made per host, and
2247    only one ssh password prompt will be made at a time.
2248  * When built with concurrent-output 1.9, ssh password prompts will no
2249    longer interfere with the -J display.
2250  * Removed dependency on MissingH, instead depending on the split library.
2251  * Progress is displayed for transfers of files of unknown size.
2252  * Work around bug in git 2.13.0 involving GIT_COMMON_DIR that broke
2253    merging changes into adjusted branches.
2254
2255 -- Joey Hess <id@joeyh.name>  Fri, 19 May 2017 10:37:57 -0400
2256
2257git-annex (6.20170510) unstable; urgency=medium
2258
2259  * When a http remote does not expose an annex.uuid config, only warn
2260    about it once, not every time git-annex is run.
2261  * multicast: New command, uses uftp to multicast annexed files, for eg
2262    a classroom setting.
2263  * Added remote.<name>.annex-push and remote.<name>.annex-pull
2264    which can be useful to make remotes that don't get fully synced with
2265    local changes.
2266  * Disable git-annex's support for GIT_SSH and GIT_SSH_COMMAND, unless
2267    GIT_ANNEX_USE_GIT_SSH=1 is also set in the environment. This is
2268    necessary because as feared, the extra -n parameter that git-annex
2269    passes breaks uses of these environment variables that expect exactly
2270    the parameters that git passes.
2271  * enableremote: When enabling a non-special remote, param=value
2272    parameters can't be used, so error out if any are provided.
2273  * enableremote: Fix re-enabling of special remotes that have a git
2274    url, so that eg, encryption key changes take effect. They were silently
2275    ignored, a reversion introduced in 6.20160527.
2276  * gcrypt: Support re-enabling to change eg, encryption parameters.
2277    This was never supported before.
2278  * git annex add -u now supported, analagous to git add -u
2279  * version: Added "dependency versions" line.
2280  * Keys marked as dead are now skipped by --all.
2281  * annex.backend is the new name for what was annex.backends, and takes
2282    a single key-value backend, rather than the unncessary and confusing
2283    list. The old option still works if set.
2284
2285 -- Joey Hess <id@joeyh.name>  Wed, 10 May 2017 15:05:22 -0400
2286
2287git-annex (6.20170321) unstable; urgency=medium
2288
2289  * Bugfix: Passing a command a filename that does not exist sometimes
2290    did not display an error, when a path to a directory was also passed.
2291  * status: Propigate nonzero exit code from git status.
2292  * Linux standalone builds put the bundled ssh last in PATH,
2293    so any system ssh will be preferred over it.
2294  * assistant: Add 1/200th second delay between checking each file
2295    in the full transfer scan, to avoid using too much CPU.
2296  * get -J: Improve distribution of jobs amoung remotes when there are more
2297    jobs than remotes.
2298  * fsck -q: When a file has bad content, include the name of the file
2299    in the warning message.
2300  * Windows: Improve handling of shebang in external special remote
2301    program, searching for the program in the PATH.
2302  * Drop support for building with old versions of dns, http-conduit,
2303    directory, feed, and http-types.
2304  * Windows: Fix bug in shell script shebang lookup code that
2305    caused a "delayed read on closed handle" error.
2306  * git-annex-shell: Fix bug when used with a recently cloned repository,
2307    where "merging" messages were included in the output of configlist
2308    (and perhaps other commands) and caused a "Failed to get annex.uuid
2309    configuration" error.
2310  * Support GIT_SSH and GIT_SSH_COMMAND, which are handled close the same
2311    as they are by git. However, unlike git, git-annex sometimes needs to
2312    pass the -n parameter when using these.
2313  * sync --content-of=path (-C path) added for when you want to sync
2314    only some files' contents, not the whole working tree.
2315
2316 -- Joey Hess <id@joeyh.name>  Tue, 21 Mar 2017 11:27:38 -0400
2317
2318git-annex (6.20170301.1) unstable; urgency=medium
2319
2320  * Fix reversion in yesterday's release that made SHA1E and MD5E backends
2321    not work.
2322
2323 -- Joey Hess <id@joeyh.name>  Wed, 01 Mar 2017 12:46:03 -0400
2324
2325git-annex (6.20170301) unstable; urgency=medium
2326
2327  * No changes from 6.20170228; a new version number was needed due
2328    to a problem with Hackage.
2329
2330 -- Joey Hess <id@joeyh.name>  Wed, 01 Mar 2017 12:06:02 -0400
2331
2332git-annex (6.20170228) unstable; urgency=medium
2333
2334  * Cryptographically secure hashes can be forced to be used in a
2335    repository, by setting annex.securehashesonly.
2336    This does not prevent the git repository from containing links
2337    to insecure hashes, but it does prevent the content of such files
2338    from being added to .git/annex/objects by any method.
2339  * Tighten key parser to prevent SHA1 collision attacks generating
2340    two keys that have the same SHA1. (Only done for keys that contain
2341    a hash). This ensures that signed git commits of annexed files
2342    will remain secure, as long as git-annex is using a secure hashing
2343    backend.
2344  * fsck: Warn about any files whose content is present, that don't
2345    use secure hashes, when annex.securehashesonly is set.
2346  * init: When annex.securehashesonly has been set with git-annex config,
2347    copy that value to the annex.securehashesonly git config.
2348  * Added --securehash option to match files using a secure hash function,
2349    and corresponding securehash preferred content expression.
2350  * sync, merge: Fail when the current branch has no commits yet, instead
2351    of not merging in anything from remotes and appearing to succeed.
2352  * Run ssh with -n whenever input is not being piped into it,
2353    to avoid it consuming stdin that it shouldn't.
2354    This fixes git-annex-checkpresentkey --batch remote,
2355    which didn't output results for all keys passed into it. Other
2356    git-annex commands that communicate with a remote over ssh may also
2357    have been consuming stdin that they shouldn't have, which could have
2358    impacted using them in eg, shell scripts.
2359  * sync: Improve integration with receive.denyCurrentBranch=updateInstead,
2360    displaying error messages from the remote then it fails to update
2361    its checked out branch.
2362  * Added post-recieve hook, which makes updateInstead work with direct
2363    mode and adjusted branches.
2364  * init: Set up the post-receive hook.
2365  * sync: When syncing with a local repository located on a crippled
2366    filesystem, run the post-receive hook there, since it wouldn't get run
2367    otherwise. This makes pushing to repos on FAT-formatted removable
2368    drives update them when receive.denyCurrentBranch=updateInstead.
2369  * config group groupwanted numcopies schedule wanted required:
2370    Avoid displaying extraneous messages about repository auto-init,
2371    git-annex branch merging, etc, when being used to get information.
2372  * adjust: Fix behavior when used in a repository that contains
2373    submodules.
2374  * Run wget with -nv instead of -q, so it will display HTTP errors.
2375  * Run curl with -S, so HTTP errors are displayed, even when
2376    it's otherwise silent.
2377  * When downloading in --json or --quiet mode, use curl in preference
2378    to wget, since curl is able to display only errors to stderr, unlike
2379    wget.
2380  * status: Pass --ignore-submodules=when option on to git status.
2381  * config --set: As well as setting value in git-annex branch,
2382    set local gitconfig. This is needed especially for
2383    annex.securehashesonly, which is read only from local gitconfig and not
2384    the git-annex branch.
2385  * Removed support for building with the old cryptohash library.
2386    Building with that library made git-annex not support SHA3; it's time
2387    for that to always be supported in case SHA2 dominoes.
2388  * git-annex.cabal: Make crypto-api a dependency even when built w/o
2389    webapp and test suite.
2390
2391 -- Joey Hess <id@joeyh.name>  Tue, 28 Feb 2017 14:39:47 -0400
2392
2393git-annex (6.20170214) unstable; urgency=medium
2394
2395  * Increase default cost for p2p remotes from 200 to 1000.
2396    This makes git-annex prefer transferring data from special
2397    remotes when possible.
2398  * Remove -j short option for --json-progress; that option was already
2399    taken for --json.
2400  * vicfg: Include the numcopies configuation.
2401  * config: New command for storing configuration in the git-annex branch.
2402  * annex.autocommit can be configured via git-annex config, to control
2403    the default behavior in all clones of a repository.
2404  * New annex.synccontent config setting, which can be set to true to make
2405    git annex sync default to --content. This may become the default at
2406    some point in the future. As well as being configuable by git config,
2407    it can be configured by git-annex config to control the default
2408    behavior in all clones of a repository.
2409  * stack.yaml: Update to lts-7.18.
2410  * Some optimisations to string splitting code.
2411  * unused: When large files are checked right into git, avoid buffering
2412    their contents in memory.
2413  * unused: Improved memory use significantly when there are a lot
2414    of differences between branches.
2415  * Wormhole pairing will start to provide an appid to wormhole on
2416    2021-12-31. An appid can't be provided now because Debian stable is going
2417    to ship a older version of git-annex that does not provide an appid.
2418    Assumption is that by 2021-12-31, this version of git-annex will be
2419    shipped in a Debian stable release. If that turns out to not be the
2420    case, this change will need to be cherry-picked into the git-annex in
2421    Debian stable, or its wormhole pairing will break.
2422  * Fix build with aws 0.16. Thanks, aristidb.
2423  * assistant: Make --autostart --foreground wait for the children it
2424    starts. Before, the --foreground was ignored when autostarting.
2425  * initremote: When a uuid= parameter is passed, use the specified
2426    UUID for the new special remote, instead of generating a UUID.
2427    This can be useful in some situations, eg when the same data can be
2428    accessed via two different special remote backends.
2429  * import: Changed how --deduplicate, --skip-duplicates, and
2430    --clean-duplicates determine if a file is a duplicate.
2431    Before, only content known to be present somewhere was considered
2432    a duplicate. Now, any content that has been annexed before will be
2433    considered a duplicate, even if all annexed copies of the data have
2434    been lost.
2435    Note that --clean-duplicates and --deduplicate still check
2436    numcopies, so won't delete duplicate files unless there's an annexed
2437    copy.
2438  * import: --deduplicate and --skip-duplicates were implemented
2439    inneficiently; they unncessarily hashed each file twice. They have
2440    been improved to only hash once.
2441  * import: Added --reinject-duplicates.
2442  * Added git template directory to Linux standalone tarball and OSX
2443    app bundle.
2444  * Improve pid locking code to work on filesystems that don't support hard
2445    links.
2446  * S3: Fix check of uuid file stored in bucket, which was not working.
2447  * Work around sqlite's incorrect handling of umask when creating
2448    databases.
2449
2450 -- Joey Hess <id@joeyh.name>  Tue, 14 Feb 2017 14:22:00 -0400
2451
2452git-annex (6.20170101) unstable; urgency=medium
2453
2454  * XMPP support has been removed from the assistant in this release.
2455    If your repositories used XMPP to keep in sync, that will no longer
2456    work, and you should enable some other remote to keep them in sync.
2457    A ssh server is one way, or use the new Tor pairing feature.
2458  * p2p --pair makes it easy to pair repositories, over Tor, using
2459    Magic Wormhole codes to find the other repository.
2460    See http://git-annex.branchable.com/tips/peer_to_peer_network_with_tor/
2461  * webapp: The "Share with a friend" and "Share with your other devices"
2462    pages have been changed to pair repositories using Tor and Magic Wormhole.
2463  * metadata --batch: Fix bug when conflicting metadata changes were
2464    made in the same batch run.
2465  * Pass annex.web-options to wget and curl after other options, so that
2466    eg --no-show-progress can be set by the user to disable the default
2467    --show-progress.
2468  * Revert ServerAliveInterval change in 6.20161111, which caused problems
2469    with too many old versions of ssh and unusual ssh configurations.
2470    It should have not been needed anyway since ssh is supposted to
2471    have TCPKeepAlive enabled by default.
2472  * Make all --batch input, as well as fromkey and registerurl stdin
2473    be processed without requiring it to be in the current encoding.
2474  * p2p: --link no longer takes a remote name, instead the --name
2475    option can be used.
2476  * Linux standalone: Improve generation of locale definition files,
2477    supporting locales such as en_GB.UTF-8.
2478  * rekey --force: Incorrectly marked the new key's content as being
2479    present in the local repo even when it was not.
2480  * enable-tor: Put tor sockets in /var/lib/tor-annex/, rather
2481    than in /etc/tor/hidden_service/.
2482  * enable-tor: No longer needs to be run as root.
2483  * enable-tor: When run as a regular user, also tests a connection back to
2484    the hidden service over tor.
2485  * Support all common locations of the torrc file.
2486  * Always use filesystem encoding for all file and handle reads and
2487    writes.
2488  * Fix build with directory-1.3.
2489  * Debian: Suggest tor and magic-wormhole.
2490  * Debian: Build webapp on armel.
2491
2492 -- Joey Hess <id@joeyh.name>  Sat, 31 Dec 2016 15:11:04 -0400
2493
2494git-annex (6.20161210) unstable; urgency=medium
2495
2496  * Linux standalone: Updated ghc to fix its "unable to decommit memory"
2497    bug, which may have resulted in data loss when these builds were used
2498    with Linux kernels older than 4.5.
2499  * enable-tor: New command, enables tor hidden service for P2P syncing.
2500  * p2p: New command, allows linking repositories using a P2P network.
2501  * remotedaemon: Serve tor hidden service.
2502  * Added git-remote-tor-annex, which allows git pull and push to the tor
2503    hidden service.
2504  * remotedaemon: Fork to background by default. Added --foreground switch
2505    to enable old behavior.
2506  * addurl: Fix bug in checking annex.largefiles expressions using
2507    largerthan, mimetype, and smallerthan; the first two always failed
2508    to match, and the latter always matched.
2509  * Relicense 5 source files that are not part of the webapp from AGPL to GPL.
2510  * map: Run xdot if it's available in PATH. On OSX, the dot command
2511    does not support graphical display, while xdot does.
2512  * Debian: xdot is a better interactive viewer than dot, so Suggest
2513    xdot, rather than graphviz.
2514  * rmurl: Multiple pairs of files and urls can be provided on the
2515    command line.
2516  * rmurl: Added --batch mode.
2517  * fromkey: Accept multiple pairs of files and keys.
2518    Thanks, Daniel Brooks.
2519  * rekey: Added --batch mode.
2520  * add: Stage modified non-large files when running in indirect mode.
2521    (This was already done in v6 mode and direct mode.)
2522  * git-annex-shell, remotedaemon, git remote: Fix some memory DOS attacks.
2523  * Fix build with http-client 0.5.
2524    Thanks, Alper Nebi Yasak.
2525
2526 -- Joey Hess <id@joeyh.name>  Sat, 10 Dec 2016 11:56:25 -0400
2527
2528git-annex (6.20161118) unstable; urgency=medium
2529
2530  * git-annex.cabal: Loosen bounds on persistent to allow 2.5, which
2531    on Debian has been patched to work with esqueleto.
2532    This may break cabal's resolver on non-Debian systems;
2533    if so, either use stack to build, or run cabal with
2534    --constraint='persistent ==2.2.4.1'
2535    Hopefully this mess with esqueleto will be resolved soon.
2536  * sync: Pass --allow-unrelated-histories to git merge when used with git
2537    git 2.9.0 or newer. This makes merging a remote into a freshly created
2538    direct mode repository work the same as it works in indirect mode.
2539  * Avoid backtraces on expected failures when built with ghc 8;
2540    only use backtraces for unexpected errors.
2541  * fsck --all --from was checking the existence and content of files
2542    in the local repository, rather than on the special remote. Oops.
2543  * Linux arm standalone: Build with a 32kb page size, which is needed
2544    on several ARM NAS devices, including Drobo 5N, and WD NAS.
2545
2546 -- Joey Hess <id@joeyh.name>  Fri, 18 Nov 2016 11:43:14 -0400
2547
2548git-annex (6.20161111) unstable; urgency=medium
2549
2550  * Restarting a crashing git process could result in filename encoding
2551    issues when not in a unicode locale, as the restarted processes's
2552    handles were not read in raw mode.
2553  * Make .git/annex/ssh.config file work with versions of ssh older than
2554    7.3, which don't support Include. When used with an older version
2555    of ssh, any ServerAliveInterval in ~/.ssh/config will be overridden
2556    by .git/annex/ssh.config.
2557  * S3: Support the special case endpoint needed for the cn-north-1 region.
2558  * Webapp: Don't list the Frankfurt S3 region, as this (and some other new
2559    regions) need V4 authorization which the aws library does not yet use.
2560  * reinject --known: Avoid second, unncessary checksum of file.
2561  * OSX: Remove RPATHs from git-annex binary, which are not needed,
2562    slow down startup, and break the OSX Sierra linker.
2563  * webapp: Explicitly avoid checking for auth in static subsite
2564    requests. Yesod didn't used to do auth checks for that, but this may
2565    have changed.
2566  * Linux standalone: Avoid using hard links in the tarball so it can be
2567    untarred on eg, afs which does not support them.
2568
2569 -- Joey Hess <id@joeyh.name>  Fri, 11 Nov 2016 14:46:39 -0400
2570
2571git-annex (6.20161031) unstable; urgency=medium
2572
2573  * Assistant, repair: Fix ignoring of git fsck errors due to
2574    duplicate file entries in tree objects.
2575  * Linux standalone: Fix location of locale files in the bundle.
2576  * Fix reversion in 6.20161012 that prevented adding files with a space
2577    in their name.
2578
2579 -- Joey Hess <id@joeyh.name>  Mon, 31 Oct 2016 18:55:59 -0400
2580
2581git-annex (6.20161027) unstable; urgency=medium
2582
2583  * lock, smudge: Fix edge cases where data loss could occur in v6 mode
2584    when the keys database was not populated.
2585  * upgrade: Handle upgrade to v6 when the repository already contains
2586    v6 unlocked files whose content is already present.
2587  * Improve style of offline html build of website.
2588  * importfeed: Drop URL parameters from file extension.
2589    Thanks, James MacMahon.
2590  * Assistant, repair: Improved filtering out of git fsck lines about
2591    duplicate file entries in tree objects.
2592  * test: Deal with gpg-agent behavior change that broke the test suite.
2593  * Improve ssh socket cleanup code to skip over the cruft that
2594    NFS sometimes puts in a directory when a file is being deleted.
2595  * If a transfer fails for some reason, but some data managed to be sent,
2596    the transfer will be retried. (The assistant already did this.)
2597  * Run ssh with ServerAliveInterval 60, so that stalled transfers will
2598    be noticed within about 3 minutes.
2599    (Any setting in your ~/.ssh/config or /etc/ssh/ssh_config
2600    overrides this.)
2601
2602 -- Joey Hess <id@joeyh.name>  Thu, 27 Oct 2016 15:21:58 -0400
2603
2604git-annex (6.20161012) unstable; urgency=medium
2605
2606  * Optimisations to time it takes git-annex to walk working tree and find
2607    files to work on. Sped up by around 18%.
2608  * Optimisations to git-annex branch query and setting, avoiding repeated
2609    copies of the environment. Speeds up commands like
2610    "git-annex find --in remote" by over 50%.
2611  * Optimised git-annex branch log file timestamp parsing.
2612  * Add "total-size" field to --json-progress output.
2613  * Make --json-progress output be shown even when the size of a object
2614    is not known.
2615  * Multiple external special remote processes for the same remote will be
2616    started as needed when using -J. This should not beak any existing
2617    external special remotes, because running multiple git-annex commands
2618    at the same time could already start multiple processes for the same
2619    external special remotes.
2620  * Linux standalone: Include locale files in the bundle, and generate
2621    locale definition files for the locales in use when starting runshell.
2622    (Currently only done for utf-8 locales.)
2623  * Avoid using a lot of memory when large objects are present in the git
2624    repository and have to be checked to see if they are a pointed to an
2625    annexed file. Cases where such memory use could occur included, but
2626    were not limited to:
2627    - git commit -a of a large unlocked file (in v5 mode)
2628    - git-annex adjust when a large file was checked into git directly
2629  * When auto-upgrading a v3 remote, avoid upgrading to version 6,
2630    instead keep it at version 5.
2631  * Support using v3 repositories without upgrading them to v5.
2632  * sync: Fix bug in adjusted branch merging that could cause recently
2633    added files to be lost when updating the adjusted branch.
2634
2635 -- Joey Hess <id@joeyh.name>  Wed, 12 Oct 2016 09:37:41 -0400
2636
2637git-annex (6.20160923) unstable; urgency=medium
2638
2639  * Rate limit console progress display updates to 10 per second.
2640    Was updating as frequently as changes were reported, up to hundreds of
2641    times per second, which used unncessary bandwidth when running git-annex
2642    over ssh etc.
2643  * Make --json and --quiet work when used with -J.
2644    Previously, -J override the other options.
2645  * addurl, get: Added --json-progress option, which adds progress
2646    objects to the json output.
2647  * Remove key:null from git-annex add --json output.
2648  * copy, move, mirror: Support --json and --json-progress.
2649  * Improve gpg secret key list parser to deal with changes in gpg 2.1.15.
2650    Fixes key name display in webapp.
2651  * info: Support being passed a treeish, and show info about the annexed
2652    files in it similar to how a directory is handled.
2653  * sync: Previously, when run in a branch with a slash in its name,
2654    such as "foo/bar", the sync branch was "synced/bar". That conflicted
2655    with the sync branch used for branch "bar", so has been changed to
2656    "synced/foo/bar".
2657  * Note that if you're using an old version of git-annex to sync with
2658    a branch with a slash in its name, it won't see some changes synced by
2659    this version, and this version won't see some changes synced by the older
2660    version. This is not a problem if there's a central bare repository,
2661    but may impact other configurations until git-annex is upgraded to this
2662    version.
2663  * adjust: Previously, when adjusting a branch with a slash in its name,
2664    such as "foo/bar", the adjusted branch was "adjusted/bar(unlocked)".
2665    That conflicted with the adjusted branch used for branch "bar",
2666    so has been changed to "adjusted/foo/bar(unlocked)"
2667  * Also, running sync in an adjusted branch did not correctly sync
2668    changes back to the parent branch when it had a slash in its name.
2669    This bug has been fixed.
2670  * addurl, importfeed: Improve behavior when file being added is gitignored.
2671
2672 -- Joey Hess <id@joeyh.name>  Fri, 23 Sep 2016 09:43:26 -0400
2673
2674git-annex (6.20160907) unstable; urgency=medium
2675
2676  * Windows: Handle shebang in external special remote program.
2677  * Fix formatting of git-annex-smudge man page, and improve mdwn2man.
2678    Thanks, Jim Paris.
2679  * examimekey: Allow being run in a git repo that is not initialized by
2680    git-annex yet.
2681  * Android: Fix disabling use of cp --reflink=auto, curl, sha224, and sha384.
2682  * Make --json and --quiet suppress automatic init messages, and any
2683    other messages that might be output before a command starts.
2684    Fixes a reversion introduced in version 5.20150727.
2685  * Assistant, repair: Filter out git fsck lines about duplicate file
2686    entries in tree objects.
2687  * get -J, sync --content -J: Download different files from different
2688    remotes when the remotes have the same costs.
2689
2690 -- Joey Hess <id@joeyh.name>  Wed, 07 Sep 2016 11:12:11 -0400
2691
2692git-annex (6.20160808) unstable; urgency=medium
2693
2694  * metadata --json output format has changed, adding a inner json object
2695    named "fields" which contains only the fields and their values.
2696    This should be easier to parse than the old format, which mixed up
2697    metadata fields with other keys in the json object.
2698    Any consumers of the old format will need to be updated.
2699  * Added metadata --batch option, which allows getting, setting, deleting,
2700    and modifying metadata for multiple files/keys.
2701  * Added --branch option to copy, drop, fsck, get, metadata, mirror, move,
2702    and whereis commands. This option makes git-annex operate on files that
2703    are included in a specified branch (or other treeish).
2704  * git-annex.cabal: Temporarily limit to http-conduit <2.2.0
2705    since aws 0.14.0 is not compatible with the newer version.
2706  * git-annex.cabal: Temporarily limit to persistent <2.5
2707    since esqueleto 2.4.3 is not compatible with the newer version.
2708  * Removed dependency on json library; all JSON is now handled by aeson.
2709  * When built with uuid-1.3.12, generate more random UUIDs than before.
2710    (However, this did not impact git-annex much, so a hard depedency has
2711    not been added on uuid-1.3.12.)
2712  * info: When run on a file now includes an indication of whether
2713    the content is present locally.
2714  * get, move, copy, mirror: Added --failed switch which retries
2715    failed copies/moves.
2716  * Re-enable accumulating transfer failure log files for command-line
2717    actions (disabled in 5.20150522), and remove the log files after
2718    successful transfers.
2719
2720 -- Joey Hess <id@joeyh.name>  Mon, 08 Aug 2016 11:42:17 -0400
2721
2722git-annex (6.20160619) unstable; urgency=medium
2723
2724  * get, drop: Add --batch and --json options.
2725  * testremote: Fix crash when testing a freshly made external special remote.
2726  * Remove unnecessary rpaths in the git-annex binary, but only when
2727    it's built using make, not cabal.
2728    This speeds up git-annex startup time by around 50%.
2729  * Speed up startup time by caching the refs that have been merged into
2730    the git-annex branch.
2731    This can speed up git-annex commands by as much as a second,
2732    depending on the number of remotes.
2733  * fsck: Fix a reversion in direct mode fsck of a file that is
2734    present when the location log thinks it is not. Reversion introduced
2735    in version 5.20151208.
2736  * uninit: Fix crash due to trying to write to deleted keys db.
2737    Reversion introduced by v6 mode support, affects v5 too.
2738  * Fix a similar crash when the webapp is used to delete a repository.
2739  * Support checking presence of content at a http url that redirects to
2740    a ftp url.
2741  * log: Added --all option.
2742  * New url for git-remote-gcrypt, now maintained by spwhitton.
2743  * webapp: Don't allow deleting a remote that has syncing disabled,
2744    as such a deletion will never finish.
2745    Thanks, Farhan Kathawala.
2746  * webapp: Escape unusual characters in ssh hostnames when generating
2747    mangled hostnames. This allows IPv6 addresses to be used on filesystems
2748    not supporting : in filenames.
2749  * Avoid any access to keys database in v5 mode repositories, which
2750    are not supposed to use that database.
2751  * Remove the EKG build flag, since Gentoo for some reason decided to
2752    enable this flag, depsite it not being intended for production use and
2753    so disabled by default.
2754
2755 -- Joey Hess <id@joeyh.name>  Tue, 19 Jul 2016 14:17:54 -0400
2756
2757git-annex (6.20160613) unstable; urgency=medium
2758
2759  * Improve SHA*E extension extraction code.
2760  * Windows: Avoid terminating git-annex branch lines with \r\n when
2761    union merging and performing transitions.
2762  * Remove Makefile from cabal tarball; man page building is now handled by
2763    a small haskell program.
2764  * sync --content: Fix bug that caused transfers of files to be made
2765    to a git remote that does not have a UUID. This particularly impacted
2766    clones from gcrypt repositories.
2767  * Pass -S to git commit-tree when commit.gpgsign is set and when
2768    making a non-automatic commit, in order to preserve current behavior
2769    when used with git 2.9, which has stopped doing this itself.
2770  * remotedaemon: Fixed support for notifications of changes to gcrypt
2771    remotes, which was never tested and didn't quite work before.
2772  * list: Do not include dead repositories.
2773  * move --to: Better behavior when system is completely out of disk space;
2774    drop content from disk before writing location log.
2775  * Avoid a crash if getpwuid does not work, when querying the user's full
2776    name.
2777  * Automatically enable v6 mode when initializing in a clone from a repo
2778    that has an adjusted branch checked out.
2779  * v6: Fix initialization of a bare clone of a repo that has an adjusted
2780    branch checked out.
2781  * v6: Fix bad automatic merge conflict resolution between an annexed file
2782    and a directory with the same name when in an adjusted branch.
2783  * v6: Fix bad merge in an adjusted branch that resulted in an empty tree.
2784  * v6: Fix bug in initialization of clone from a repo with an adjusted branch
2785    that had not been synced back to master.
2786    (This bug caused broken tree objects to get built by a later git annex
2787    sync.)
2788  * v6: Make lock and unlock work on files whose content is not present.
2789  * v6: Fix update of associated files db when unlocking a file.
2790  * v6: Make git clean filter preserve the backend that was used for a file.
2791
2792 -- Joey Hess <id@joeyh.name>  Mon, 13 Jun 2016 14:57:38 -0400
2793
2794git-annex (6.20160527) unstable; urgency=medium
2795
2796  * Split lines in the git-annex branch on \r as well as \n, to deal
2797    with \r\n terminated lines written by some versions of git-annex on
2798    Windows. This fixes strange displays in some cases.
2799  * assistant: Fix bug that caused v6 pointer files to be annexed by the
2800    assistant.
2801  * assistant: Fix race in v6 mode that caused downloaded file content to
2802    sometimes not replace pointer files.
2803  * add: Adding a v6 pointer file used to annex it; now the pointer file is
2804    added to git as-is. (git add of a pointer file already did the right
2805    thing)
2806  * enableremote: Can now be used to explicitly enable git-annex to use
2807    git remotes. Using the command this way prevents other git-annex
2808    commands from probing new git remotes to auto-enable them.
2809  * enableremote: Remove annex-ignore configuration from a remote.
2810  * Change git annex info remote encryption description to use wording
2811    closer to what's used in initremote.
2812  * Pass the various gnupg-options configs to gpg in several cases where
2813    they were not before. Most notably, gnupg-decrypt-options is now
2814    passed when decrypting an encrypted cipher.
2815  * adjust: Add --fix adjustment, which is useful when the git directory
2816    is in a nonstandard place.
2817  * adjust: If the adjusted branch already exists, avoid overwriting it,
2818    since it might contain changes that have not yet been propigated to the
2819    original branch.
2820  * Work around git weirdness in handling of relative path to GIT_INDEX_FILE
2821    when in a subdirectory of the repository. This affected git annex view.
2822  * Fix crash when entering/changing view in a subdirectory of a repo that
2823    has a dotfile in its root.
2824  * webapp: Avoid confusing display of dead remotes.
2825  * Support building with ghc 8.0.1.
2826  * Updated cabal file explicitly lists source files. The tarball
2827    on hackage will include only the files needed for cabal install;
2828    it is NOT the full git-annex source tree.
2829  * debian/changelog, debian/NEWS, debian/copyright: Converted to symlinks
2830    to CHANGELOG, NEWS, and COPYRIGHT, which used to symlink to these instead.
2831
2832 -- Joey Hess <id@joeyh.name>  Fri, 27 May 2016 11:48:36 -0400
2833
2834git-annex (6.20160511) unstable; urgency=medium
2835
2836  * Fix bug that sometimes prevented git-annex smudge --clean from consuming
2837    all its input, which resulted in git add bypassing git-annex.
2838  * Fix build with directory-1.2.6.2.
2839  * Improve behavior when a just added http remote is not available
2840    during uuid probe. Do not mark it as annex-ignore, so it will be tried
2841    again later.
2842  * Android: Icon refresh.
2843    Thanks, freewheelinfranks.
2844  * Added DIRHASH-LOWER to external special remote protocol.
2845  * git-annex.cabal: Add Setup-Depends.
2846  * stack.yaml: Enable explicit-setup-deps.
2847  * Windows: Fix several bugs in propigation of changes from the adjusted
2848    branch back to the master branch.
2849  * Windows: Fix an over-long temp directory name.
2850  * map: Hide dead repositories that are not connected to the graph.
2851  * map: Changed colors; red is used for untrusted repositories and grey
2852    for dead.
2853  * version: Display OS version and architecture too.
2854  * Propigate GIT_DIR and GIT_WORK_TREE environment to external special
2855    remotes.
2856  * Added annex.gnupg-decrypt-options and
2857    remote.<name>.annex-gnupg-decrypt-options, which are passed to gpg
2858    when it's decrypting data.
2859  * fsck: When a key is not previously known in the location log,
2860    record something so that reinject --known will work.
2861  * In the unusual configuration where annex.crippledfilesystem=true but
2862    core.symlinks=true, store object contents in mixed case hash
2863    directories so that symlinks will point to them.
2864  * Added new encryption=sharedpubkey mode for special remotes.
2865    This is useful for makking a special remote that anyone with a clone
2866    of the repo and your public keys can upload files to, but only you can
2867    decrypt the files stored in it.
2868
2869 -- Joey Hess <id@joeyh.name>  Wed, 11 May 2016 12:41:42 -0400
2870
2871git-annex (6.20160419) unstable; urgency=medium
2872
2873  * Fix bug that prevented resuming of uploads to encrypted special remotes
2874    that used chunking.
2875  * That bug could also expose the names of keys to such remotes, so it is a
2876    minor security issue.
2877  * Fix duplicate progress meter display when downloading from a git remote
2878    over http with -J.
2879  * reinject: When src file's content cannot be verified, leave it alone,
2880    instead of deleting it.
2881  * reinject: Added new mode which can reinject known files into the annex.
2882    For example: git-annex reinject --known /mnt/backup/*
2883  * calckey: New plumbing command, calculates the key that would be used
2884    to refer to a file.
2885  * Fix bug that prevented annex.sshcaching=false configuration from taking
2886    effect when on a crippled filesystem. Thanks, divergentdave.
2887  * git 2.9.0 is going to prevent git merge from merging in unrelated
2888    branches. Since the webapp's pairing etc features often combine
2889    together repositories with unrelated histories, work around
2890    this behavior change when the assistant merges, by passing
2891    --allow-unrelated-histories. Note though that this is not done
2892    for git annex sync's merges, so it will follow git's default or
2893    configured behavior.
2894  * When git-annex is used with a git version older than 2.2.0, disable
2895    support for adjusted branches, since GIT_COMMON_DIR is needed to update
2896    them and was first added in that version of git.
2897  * Avoid setting LOCPATH in linux standalone builds that are built with
2898    a ghc that has been fixed to not hang when it cannot find locale files.
2899  * Isolate test suite from global git config settings.
2900
2901 -- Joey Hess <id@joeyh.name>  Thu, 28 Apr 2016 09:31:14 -0400
2902
2903git-annex (6.20160418) unstable; urgency=medium
2904
2905  * smudge: Print a warning when annex.thin is set, as git's smudge
2906    interface does not allow honoring that configuration.
2907  * webapp: When $HOME is a git repository, and has been initialized for
2908    use by git-annex, opening the webapp went ahead and ran the assistant
2909    there, annexing all files. Since this is almost certianly not
2910    desirable, especially when the user is just opening the webapp from
2911    a dekstop menu which happens to run it in $HOME, the webapp will now not
2912    treat such a $HOME git repository as a git-annex repository.
2913  * webapp: Update url to add gitlab.com ssh key.
2914  * Fix bug in v6 mode that prevented treating unlocked executable files
2915    as annexed. If you have such files, run git annex init --version=6
2916    to update the cache after upgrading to this version of git-annex.
2917  * Preserve execute bits of unlocked files in v6 mode.
2918  * fsck: Warn when core.sharedRepository is set and an annex object file's
2919    write bit is not set and cannot be set due to the file being owned
2920    by a different user.
2921  * Fix hang when dropping content needs to lock the content on a
2922    ssh remote, which occurred when the remote has git-annex version
2923    5.20151019 or newer. (The bug was in the client side; the remote
2924    git-annex-shell does not need to be upgraded.)
2925
2926 -- Joey Hess <id@joeyh.name>  Mon, 18 Apr 2016 18:33:52 -0400
2927
2928git-annex (6.20160412) unstable; urgency=medium
2929
2930  * adjust --unlock: Enters an adjusted branch in which all annexed files
2931    are unlocked. The v6 equivilant of direct mode, but much cleaner!
2932  * Upgrading a direct mode repository to v6 has changed to enter
2933    an adjusted unlocked branch. This makes the direct mode to v6 upgrade
2934    able to be performed in one clone of a repository without affecting
2935    other clones, which can continue using v5 and direct mode.
2936  * init --version=6: Automatically enter the adjusted unlocked branch
2937    when filesystem doesn't support symlinks.
2938  * ddar remote: fix ssh calls
2939    Thanks, Robie Basak
2940  * log: Display time with time zone.
2941  * log --raw-date: Use to display seconds from unix epoch.
2942  * v6: Close pointer file handles more quickly, to avoid problems on Windows.
2943  * sync: Show output of git commit.
2944  * annex.thin and annex.hardlink are now supported on Windows.
2945  * unannex --fast now makes hard links on Windows.
2946  * Fix bug in annex.largefiles mimetype= matching when git-annex
2947    is run in a subdirectory of the repository.
2948  * Fix build with ghc v7.11. Thanks, Gabor Greif.
2949
2950 -- Joey Hess <id@joeyh.name>  Tue, 12 Apr 2016 14:53:22 -0400
2951
2952git-annex (6.20160318) unstable; urgency=medium
2953
2954  * metadata: Added -r to remove all current values of a field.
2955  * Fix data loss that can occur when annex.pidlock is set in a repository.
2956  * Fix bug preventing moving files to/from a repository with annex.pidlock set.
2957  * Fix shared lock file FD leak.
2958  * Fix metadata hook behavior when multiple files are added at once.
2959    Thanks, Klaus Ethgen.
2960  * Added dependencies on haskell mountpoints and disk-free-space
2961    libraries, removing FFI code from git-annex.
2962  * dropkey: Add --batch and --json.
2963  * Fix OSX dmg to include libraries needed by bundled gpg,
2964    lost in last release.
2965  * Always try to thaw content, even when annex.crippledfilesystem is set.
2966  * Correct git-annex info to include unlocked files in v6 repository.
2967  * Sped up git-annex add in direct mode and v6 by using
2968    git hash-object --stdin-paths.
2969  * Sped up git-annex merge by using git hash-object --stdin-paths.
2970
2971 -- Joey Hess <id@joeyh.name>  Fri, 18 Mar 2016 11:30:36 -0400
2972
2973git-annex (6.20160229) unstable; urgency=medium
2974
2975  * Update perlmagick build dependency. Closes: #789225
2976  * Fix memory leak in last release, which affected commands like
2977    git-annex status when a large non-annexed file is present in the work
2978    tree.
2979  * fsck: When the only copy of a file is in a dead repository, mention
2980    the repository.
2981  * info: Mention when run in a dead repository.
2982  * Linux and OSX standalone builds put the bundled gpg last in PATH,
2983    so any system gpg will be preferred over it.
2984  * Avoid crashing when built with MagicMime support, but when the magic
2985    database cannot be loaded.
2986  * Include magic database in the linux and OSX standalone builds.
2987  * Fix memory leak when hashing files, which triggered during fsck
2988    when an external hash program was not used.
2989    (This leak was introduced in version 6.20160114.)
2990  * Support --metadata field<number, --metadata field>number etc
2991    to match ranges of numeric values.
2992  * Similarly, support preferred content expressions like
2993    metadata=field<number and metadata=field>number
2994  * The pre-commit-annex hook script that automatically extracts
2995    metadata has been updated to also use exiftool.
2996    Thanks, Klaus Ethgen.
2997
2998 -- Joey Hess <id@joeyh.name>  Mon, 29 Feb 2016 12:41:49 -0400
2999
3000git-annex (6.20160217) unstable; urgency=medium
3001
3002  * Support getting files from read-only repositories.
3003  * checkpresentkey: Allow to be run without an explicit remote.
3004  * checkpresentkey: Added --batch.
3005  * Work around problem with concurrent-output when in a non-unicode locale
3006    by avoiding use of it in such a locale. Instead -J will behave as if
3007    it was built without concurrent-output support in this situation.
3008  * Fix storing of filenames of v6 unlocked files when the filename is not
3009    representable in the current locale.
3010  * fsck: Detect and fix missing associated file mappings in v6 repositories.
3011  * fsck: Populate unlocked files in v6 repositories whose content is
3012    present in annex/objects but didn't reach the work tree.
3013  * When initializing a v6 repo on a crippled filesystem, don't force it
3014    into direct mode.
3015  * Windows: Fix v6 unlocked files to actually work.
3016  * add, addurl, import, importfeed: When in a v6 repository on a crippled
3017    filesystem, add files unlocked.
3018  * annex.addunlocked: New configuration setting, makes files always be
3019    added unlocked. (v6 only)
3020  * Improve format of v6 unlocked pointer files to support keys containing
3021    slashes.
3022
3023 -- Joey Hess <id@joeyh.name>  Wed, 17 Feb 2016 14:48:51 -0400
3024
3025git-annex (6.20160211) unstable; urgency=medium
3026
3027  * annex.addsmallfiles: New option controlling what is done when
3028    adding files not matching annex.largefiles.
3029  * Fix reversion in lookupkey, contentlocation, and examinekey which
3030    caused them to sometimes output side messages.
3031  * webapp: Fix deletion of current repository directory.
3032  * Added "nothing" to preferred content expression syntax.
3033  * annex.largefiles can be configured in .gitattributes too;
3034    this is particulary useful for v6 repositories, since the
3035    .gitattributes configuration will apply in all clones of the
3036    repository.
3037  * Limit annex.largefiles parsing to the subset of preferred content
3038    expressions that make sense in its context. So, not "standard"
3039    or "lackingcopies", etc.
3040  * annex.largefiles: Add support for mimetype=text/* etc, when git-annex
3041    is linked with libmagic.
3042  * matchexpression: Added --largefiles option to parse an annex.largefiles
3043    expression.
3044  * Brought back the dbus and xmpp build flags, so build from source can be
3045    done without C libraries that may be hard to install.
3046  * init: Fix bugs in submodule .git symlink fixup, that occurred when
3047    initializing in a subdirectory of a submodule and a submodule of a
3048    submodule.
3049  * WebDAV: Set depth 1 in PROPFIND request, for better compatibility with
3050    some servers. Thanks, wzhd.
3051  * WebDAV: Remove a bogus trailing slash from the end of the url to the
3052    temporary store location for a key. Thanks, wzhd.
3053  * S3: Allow configuring with requeststyle=path to use path-style bucket
3054    access instead of the default DNS-style access.
3055
3056 -- Joey Hess <id@joeyh.name>  Thu, 11 Feb 2016 11:42:19 -0400
3057
3058git-annex (6.20160126) unstable; urgency=medium
3059
3060  * Fix nasty reversion in the last release that broke sync --content's
3061    handling of many preferred content expressions.
3062  * whereis --json: Urls are now listed inside the remote that claims them,
3063    rather than all together at the end.
3064  * info, add, whereis, find: Support --batch mode.
3065  * Force output to be line-buffered, even when it's not connected to the
3066    terminal. This is particuarly important for commands with --batch
3067    output, which was not always being flushed at an appropriate time.
3068  * add, import: Support --json output.
3069  * addurl --json: Include field for added key (unless the file was
3070    added directly to git due to annex.largefiles configuration.)
3071    (Also done by add --json and import --json)
3072  * registerurl: Check if a remote claims the url, same as addurl does.
3073  * Bug fix: Git config settings passed to git-annex -c did not always take
3074    effect.
3075  * assistant: Use udisks2 dbus events to detect when disks are mounted,
3076    instead of relying on gnome/kde stuff that is not stable.
3077  * Fix build with QuickCheck 2.8.2
3078  * matchexpression: New plumbing command to check if a preferred content
3079    expression matches some data.
3080  * Removed the webapp-secure build flag, rolling it into the webapp build
3081    flag.
3082  * Removed the quvi, tahoe, feed, and tfds build flags, adding
3083    aeson feed and regex-tdfa to the core dependencies.
3084  * Roll the dns build flag into the assistant build flag.
3085  * Debian: Avoid building debug package, since gdb is not often useful
3086    to debug haskell programs.
3087
3088 -- Joey Hess <id@joeyh.name>  Tue, 26 Jan 2016 14:57:42 -0400
3089
3090git-annex (6.20160114) unstable; urgency=medium
3091
3092  "hexapodia as the key insight"
3093
3094  * Added v6 repository mode, but v5 is still the default for now.
3095  * unlock, lock: In v6 mode, unlocking a file changes it from a symlink to a
3096    pointer file, and this change can be committed to the git repository.
3097    For details, see http://git-annex.branchable.com/tips/unlocked_files/
3098  * The upgrade to version 6 is not done fully automatically yet, because
3099    upgrading a direct mode repository to version 6 will prevent old
3100    versions of git-annex from working in other clones of that repository.
3101    For details, see http://git-annex.branchable.com/upgrades/
3102  * init: --version parameter added to control which supported repository
3103    version to use.
3104  * init, upgrade: Configure .git/info/attributes to use git-annex
3105    as a smudge filter. In v6 repository mode, this makes git add
3106    add files to the annex in unlocked mode, unless overridden by
3107    annex.largefiles configuration.
3108  * assistant: In v6 mode, adds files in unlocked mode, so they can
3109    continue to be modified.
3110  * Added annex.thin setting, which makes unlocked files in v6 repositories
3111    be hard linked to their content, instead of a copy. This saves disk
3112    space but means any modification of an unlocked file will lose the local
3113    (and possibly only) copy of the old version.
3114  * Enable annex.thin by default on upgrade from direct mode to v6, since
3115    direct mode made the same tradeoff.
3116  * fix: Adjusts unlocked files as configured by annex.thin.
3117  * persistent-sqlite is now a hard build dependency, since v6 repository
3118    mode needs it.
3119
3120
3121  * status: On crippled filesystems, was displaying M for all annexed files
3122    that were present. Probably caused by a change to what git status
3123    displays in this situation. Fixed by treating files git thinks are
3124    modified the same as typechanged files.
3125  * addurl: Added --batch and --with-files options.
3126  * addurl: Support --json, particularly useful in --batch mode.
3127  * addurl: Refuse to overwrite any existing, non-annexed file.
3128  * Debian: Adjust build dependencies for webapp, DAV. Now available on
3129    mips, mipsel, but temporarily removed armel since build is failing
3130    there.
3131  * info: Fix "backend usage" numbers, which were counting present keys
3132    twice.
3133  * info --json: Improve json for "backend usage", using a nested object
3134    with fields for each backend instead of the previous weird nested lists.
3135    This may break existing parsers of this json output, if there were any.
3136  * whereis --json: Make url list be included in machine-parseable form.
3137  * test: Added --keep-failures option.
3138  * unused: Bug fix when a new file was added to the annex, and then
3139    removed (but not git rmed). git still has the add staged in this case,
3140    so the content should not be unused and was wrongly treated as such.
3141  * migrate: Copy over metadata to new key.
3142  * rekey: No longer copies over urls from the old to the new key.
3143    It makes sense for migrate to do that, but not for this low-level
3144    (and little used) plumbing command to.
3145  * view: Fix crash in non-unicode capable locale when entering a view
3146    of metadata containing a slash or backslash.
3147  * When annex.http-headers is used to set the User-Agent header, avoid
3148    sending User-Agent: git-annex
3149  * Windows: Fix rsync cross-drive hack to work with msys2 rsync.
3150    Thanks, Pieter Kitslaar.
3151
3152 -- Joey Hess <id@joeyh.name>  Thu, 14 Jan 2016 10:14:19 -0400
3153
3154git-annex (5.20151218) unstable; urgency=medium
3155
3156  * Add S3 features to git-annex version output.
3157  * webdav: When testing the WebDAV server, send a file with content.
3158    The empty file it was sending tickled bugs in some php WebDAV server.
3159  * fsck: Failed to honor annex.diskreserve when checking a remote.
3160  * Debian: Build depend on concurrent-output.
3161  * Fix insecure temporary permissions when git-annex repair is used in
3162    in a corrupted git repository.
3163  * Fix potential denial of service attack when creating temp dirs.
3164
3165 -- Joey Hess <id@joeyh.name>  Fri, 18 Dec 2015 12:09:33 -0400
3166
3167git-annex (5.20151208) unstable; urgency=medium
3168
3169  * Build with -j1 again to get reproducible build.
3170  * Display progress meter in -J mode when copying from a local git repo,
3171    to a local git repo, and from a remote git repo.
3172  * Display progress meter in -J mode when downloading from the web.
3173  * map: Improve display of git remotes with non-ssh urls, including http
3174    and gcrypt.
3175  * When core.sharedRepository is set, annex object files are not made mode
3176    444, since that prevents a user other than the file owner from locking
3177    them. Instead, a mode such as 664 is used in this case.
3178  * tahoe: Include tahoe capabilities in whereis display.
3179  * import: Changed to honor annex.largefiles settings.
3180  * addurl, importfeed: Changed to honor annex.largefiles settings,
3181    when the content of the url is downloaded. (Not when using --fast or
3182    --relaxed.)
3183  * webapp: Fix bugs that could result in a relative path such as "."
3184    being written to ~/.config/git-annex/autostart, and ignore any such
3185    relative paths in the file.
3186    This was a reversion caused by the relative path changes in 5.20150113.
3187  * dropunused: Make more robust when trying to drop an object that has
3188    already been dropped.
3189  * Fix reversion in handling of long filenames, particularly when using
3190    addurl/importfeed, which was introduced in the previous release.
3191
3192 -- Joey Hess <id@joeyh.name>  Tue, 08 Dec 2015 11:14:03 -0400
3193
3194git-annex (5.20151116) unstable; urgency=medium
3195
3196  * Use concurrent-output library when configured with -fConcurrentOutput.
3197    This allows nicely displayed messages when using the -J flag.
3198  * Additional commands now support the -J flag:
3199    fsck, drop, add, addurl, import
3200  * import: Avoid very ugly error messages when the directory files
3201    are imported to is not a directort, but perhaps an annexed file.
3202  * Concurrent progress bars are now displayed when using -J with a command
3203    that moves file contents around.
3204  * Fix race that could result in an annexed file's symlink not being
3205    created, when eg, running concurrent git-annex adds.
3206  * add: Fix error recovery rollback to not move the injested file content
3207    out of the annex back to the file, because other files may point to
3208    that same content. Instead, copy the injected file content out to
3209    recover.
3210  * quvi may output utf-8 encoded data when the conifigured locale doesn't
3211    support that; avoid crashing on such invalid encoding.
3212  * runshell: Avoid failing when $HOME/.ssh does not exist and cannot be
3213    created.
3214  * Make the git-annex-standalone.deb prevent runshell from installing
3215    wrappers into $HOME/.ssh
3216  * Make git-annex-standalone.deb include the git-annex html documentation,
3217    desktop file, and base completion file, same as the regular git-annex.deb.
3218  * fsck: When fscking a dead repo, avoid incorrect "fixing location log"
3219    message, and display a warning about it being dead, since it's unusual
3220    to have access to a dead repo.
3221  * assistant: Pass ssh-options through 3 more git pull/push calls
3222    that were missed before.
3223  * Added annex.pidlock and annex.pidlocktimeout configuration to support
3224    filesystems where POSIX fcntl locks cannot be used.
3225  * init: Automatically enable annex.pidlock when necessary.
3226
3227 -- Joey Hess <id@joeyh.name>  Mon, 16 Nov 2015 14:17:40 -0400
3228
3229git-annex (5.20151102.1) unstable; urgency=medium
3230
3231  * Avoid installing desktop file and program file if cabal install
3232    git-annex is run as root, since that is not a systemwide install,
3233    but to /root, and so generating a systemwide desktop file is not right.
3234  * When cabal install is run with the desktop file location not writable,
3235    display a warning, but continue successfully.
3236
3237 -- Joey Hess <id@joeyh.name>  Tue, 03 Nov 2015 12:08:38 -0400
3238
3239git-annex (5.20151102) unstable; urgency=medium
3240
3241  * Use statvfs on OSX.
3242  * Symlink timestamp preservation code uses functions
3243    from unix-2.7.0 when available, which should be more portable.
3244  * enableremote: List uuids and descriptions of remotes that can be
3245    enabled, and accept either the uuid or the description in leu if the
3246    name.
3247  * Catch up with current git behavior when both repo and repo.git exist;
3248    it seems it now prefers repo in this case, although historically it may
3249    have preferred repo.git.
3250  * Fix failure to build with aws-0.13.0.
3251  * When built with aws-0.13.0, the S3 special remote can be used to create
3252    google nearline buckets, by setting storageclass=NEARLINE.
3253
3254 -- Joey Hess <id@joeyh.name>  Mon, 02 Nov 2015 12:41:20 -0400
3255
3256git-annex (5.20151019) unstable; urgency=medium
3257
3258  * Fix a longstanding, but unlikely to occur bug, where dropping
3259    a file from a remote could race with other drops of the same file,
3260    and result in all copies of its content being lost.
3261  * git-annex-shell: Added lockcontent command, to prevent dropping of
3262    a key's content. This is necessary due to the above bugfix.
3263  * In some cases, the above bugfix changes what git-annex allows you to
3264    drop:
3265    - When a file is present in several special remotes,
3266      but not in any accessible git repositories, dropping it from one of
3267      the special remotes will now fail. Instead, the file has to be
3268      moved from one of the special remotes to the git repository, and can
3269      then safely be dropped from the git repository.
3270    - If a git remote has too old a version of git-annex-shell installed,
3271      git-annex won't trust it to hold onto a copy of a file when dropping
3272      that file from the local git repository.
3273  * Changed drop ordering when using git annex sync --content or the
3274    assistant, to drop from remotes first and from the local repo last.
3275    This works better with the behavior changes to drop in many cases.
3276  * Do verification of checksums of annex objects downloaded from remotes.
3277  * When annex objects are received into git repositories from other git
3278    repos, their checksums are verified then too.
3279  * To get the old, faster, behavior of not verifying checksums, set
3280    annex.verify=false, or remote.<name>.annex-verify=false.
3281  * setkey, rekey: These commands also now verify that the provided file
3282    matches the expected checksum of the key, unless annex.verify=false.
3283  * reinject: Already verified content; this can now be disabled by
3284    setting annex.verify=false.
3285  * sync, merge, assistant: When git merge failed for a reason other
3286    than a conflicted merge, such as a crippled filesystem not allowing
3287    particular characters in filenames, git-annex would make a merge commit
3288    that could omit such files or otherwise be bad. Fixed by aborting the
3289    whole merge process when git merge fails for any reason other than a
3290    merge conflict.
3291  * Allow building with S3 disabled again.
3292  * Ported disk free space checking code to work on Solaris.
3293  * Windows webapp: Fix support for entering password when setting
3294    up a ssh remote.
3295  * copy --auto was checking the wrong repo's preferred content.
3296    (--from was checking what --to should, and vice-versa.)
3297    Fixed this bug, which was introduced in version 5.20150727.
3298  * Avoid unncessary write to the location log when a file is unlocked
3299    and then added back with unchanged content.
3300  * S3: Fix support for using https.
3301  * Avoid displaying network transport warning when a ssh remote
3302    does not yet have an annex.uuid set.
3303  * Debian: Add torrent library to build-depends as it's packaged now,
3304    and stop recommending bittornado | bittorrent.
3305  * Debian: Remove build dependency on transformers library, as it is now
3306    included in ghc.
3307  * Debian: Remove menu file, since a desktop file is provided and
3308    lintian says there can be only one.
3309
3310 -- Joey Hess <id@joeyh.name>  Mon, 19 Oct 2015 13:59:01 -0400
3311
3312git-annex (5.20150930) unstable; urgency=medium
3313
3314  * Added new linux standalone "ancient" build to support kernels
3315    like 2.6.32.
3316  * info: Don't allow use in a non-git-annex repository, since it
3317    uses the git-annex branch and would create it if it were missing.
3318  * assistant: When updating ~/.ssh/config, preserve any symlinks.
3319  * webapp: Remove the "disable remote" feature from the UI.
3320  * S3: When built with aws-0.13.0, supports using more storage classes.
3321    In particular, storageclass=STANDARD_IA to use Amazon's
3322    new Infrequently Accessed storage, and storageclass=NEARLINE
3323    to use Google's NearLine storage.
3324  * Improve ~/.ssh/config modification code to not add trailing spaces
3325    to lines it cannot parse.
3326  * Fix a crash at direct mode merge time when .git/index doesn't exist
3327    yet. Triggered by eg, git-annex sync --no-commit in a fresh clone of
3328    a repository.
3329  * status: Show added but not yet committed files.
3330  * Added stack.yaml to support easy builds from source with stack.
3331
3332 -- Joey Hess <id@joeyh.name>  Wed, 30 Sep 2015 14:31:52 -0400
3333
3334git-annex (5.20150916) unstable; urgency=medium
3335
3336  * Fix Windows build to work with ghc 7.10.
3337  * init: Fix reversion in detection of repo made with git clone --shared
3338  * info: Support querying info of individual files in direct mode.
3339  * unused: Fix reversion in 5.20150727 that broke parsing of the
3340    --unused-refspec option. Thanks, Øyvind A. Holm.
3341  * Make full option parsing be done when not in a git repo, so --help
3342    can be displayed for commands that require a git repo, etc.
3343  * fsck: Work around bug in persistent that broke display of
3344    problematically encoded filenames on stderr when using --incremental.
3345  * When gpg.program is configured, it's used to get the command to run
3346    for gpg. Useful on systems that have only a gpg2 command or want to
3347    use it instead of the gpg command.
3348  * Windows: Switched to using git for Windows, rather than msysgit.
3349    Using msysgit with git-annex is no longer supported.
3350  * Windows: Even when the user neglects to tell the git installer to
3351    add git to PATH, git-annex will still work from within the git bash
3352    shell, and the webapp can be used too.
3353  * sync: Add --no-commit, --no-pull, --no-push options to turn off parts of
3354    the sync process, as well as supporting --commit, --pull, --push, and
3355    --no-content options to specify the (current) default behavior.
3356  * annex.hardlink extended to also try to use hard links when copying from
3357    the repository to a remote.
3358  * Improve bash completion, so it completes names of remotes and backends
3359    in appropriate places.
3360  * Special remotes configured with autoenable=true will be automatically
3361    enabled when git-annex init is run.
3362  * Fix bug in combination of preferred and required content settings.
3363    When one was set to the empty string and the other set to some expression,
3364    this bug caused all files to be wanted, instead of only files matching
3365    the expression.
3366
3367 -- Joey Hess <id@joeyh.name>  Wed, 16 Sep 2015 10:31:24 -0400
3368
3369git-annex (5.20150824) unstable; urgency=medium
3370
3371  * Sped up downloads of files from ssh remotes, reducing the
3372    non-data-transfer overhead 6x.
3373  * sync: Support --jobs
3374  * sync --content: Avoid unnecessary second pull from remotes when
3375    no file transfers are made.
3376  * External special remotes can now be built that can be used in readonly
3377    mode, where git-annex downloads content from the remote using regular
3378    http.
3379  * Added WHEREIS to external special remote protocol.
3380  * importfeed --relaxed: Avoid hitting the urls of items in the feed.
3381  * Fix reversion in init when ran as root, introduced in version 5.20150731.
3382  * Reorder declaration to fix build with yesod-core > 1.4.13.
3383    Thanks, Michael Alan Dorman.
3384  * Fix building without quvi and without database.
3385    Thanks, Ben Boeckel.
3386  * Avoid building the assistant on the hurd, since an inotify equivalent
3387    is not yet implemented in git-annex for the hurd.
3388  * --debug log messages are now timestamped with fractional seconds.
3389  * --debug is passed along to git-annex-shell when git-annex is in debug mode.
3390  * Makefile: Pass LDFLAGS, CFLAGS, and CPPFLAGS through ghc and on to
3391    ld, cc, and cpp.
3392  * As a result of the Makefile changes, the Debian package is built
3393    with various hardening options. Although their benefit to a largely
3394    haskell program is unknown.
3395
3396 -- Joey Hess <id@joeyh.name>  Mon, 24 Aug 2015 14:11:05 -0700
3397
3398git-annex (5.20150812) unstable; urgency=medium
3399
3400  * Added support for SHA3 hashed keys (in 8 varieties), when git-annex is
3401    built using the cryptonite library.
3402  * metadata: Fix reversion introduced in 5.20150727 that caused recursive
3403    display of metadata to not work.
3404  * Windows: Fix bug that caused git-annex sync to fail due to missing
3405    environment variable.
3406  * Fix setting/setting/viewing metadata that contains unicode or other
3407    special characters, when in a non-unicode locale.
3408  * Simplify setup process for a ssh remote. Now it suffices to run git
3409    remote add, followed by git-annex sync. Now the remote is automatically
3410    initialized for use by git-annex, where before the git-annex branch had
3411    to manually be pushed before using git-annex sync. Note that this
3412    involved changes to git-annex-shell, so if the remote is using an old
3413    version, the manual push is still needed.
3414  * git-annex-shell: Don't let configlist auto-init repository when in
3415    readonly mode.
3416  * Perform a clean shutdown when --time-limit is reached.
3417    This includes running queued git commands, and cleanup actions normally
3418    run when a command is finished.
3419  * fsck: Commit incremental fsck database when --time-limit is reached.
3420    Previously, some of the last files fscked did not make it into the
3421    database when using --time-limit.
3422  * fsck: Commit incremental fsck database after every 1000 files
3423    fscked, or every 5 minutes, whichever comes first. Previously,
3424    commits were made every 1000 files fscked.
3425  * Linux standalone: Work around problem that prevented it from working
3426    properly if unpacked into a directory that contains ":" or ";" in its
3427    name.
3428  * proxy: Fix proxy git commit of non-annexed files in direct mode.
3429  * proxy: If a non-proxied git command, such as git revert
3430    would normally fail because of unstaged files in the work tree,
3431    make the proxied command fail the same way.
3432  * proxy: Fix removal of files deleted by the proxied command.
3433  * proxy: Fix behavior when run in subdirectory of git repo.
3434  * Improve Setup.hs file so that cabal copy --destdir works.
3435    Thanks, Magnus Therning.
3436  * Tighten dependency on optparse-applicative to 0.11.0.
3437  * Added back debian/cabal-wrapper, since it still seems needed after all.
3438
3439 -- Joey Hess <id@joeyh.name>  Wed, 12 Aug 2015 11:14:58 -0400
3440
3441git-annex (5.20150731) unstable; urgency=medium
3442
3443  * webapp: Support enabling known gitlab.com remotes.
3444  * Fix rsync special remote to work when -Jn is used for concurrent
3445    uploads.
3446  * The last release accidentally removed a number of options from the
3447    copy command. (-J, file matching options, etc). These have been added
3448    back.
3449  * init: Detect when the filesystem is crippled such that it ignores
3450    attempts to remove the write bit from a file, and enable direct mode.
3451    Seen with eg, NTFS fuse on linux.
3452  * Fix man page installation by cabal install; all the new man pages are
3453    now installed.
3454
3455 -- Joey Hess <id@joeyh.name>  Fri, 31 Jul 2015 11:34:36 -0400
3456
3457git-annex (5.20150727) unstable; urgency=medium
3458
3459  * Fix bug that prevented uploads to remotes using new-style chunking
3460    from resuming after the last successfully uploaded chunk.
3461  * Switched option parsing to use optparse-applicative. This was a very large
3462    and invasive change, and may have caused some minor behavior changes to
3463    edge cases of option parsing. (For example, the metadata command no
3464    longer accepts the combination of --get and --set, which never actually
3465    worked.)
3466  * Bash completion file is now included in the git-annex source tree,
3467    and installed into Debian package (and any other packages built using make
3468    install). This bash completion is generated by the option parser, so it
3469    covers all commands, all options, and will never go out of date!
3470  * As well as tab completing "git-annex" commands, "git annex" will also tab
3471    complete. However, git's bash completion script needs a patch,
3472    which I've submitted, for this to work prefectly.
3473  * version --raw now works when run outside a git repository.
3474  * assistant --startdelay now works when run outside a git repository.
3475  * dead now accepts multiple --key options.
3476  * addurl now accepts --prefix and --suffix options to adjust the
3477    filenames used.
3478  * sync --content: Fix bug that caused files to be uploaded to eg,
3479    more archive remotes than wanted copies, only to later be dropped
3480    to satisfy the preferred content settings.
3481  * importfeed: Improve detection of known items whose url has changed,
3482    and avoid adding redundant files. Where before this only looked at
3483    permalinks in rss feeds, it now also looks at guids.
3484  * importfeed: Look at not only permalinks, but now also guids
3485    to identify previously downloaded files.
3486  * Webapp: Now features easy setup of git-annex repositories on gitlab.com.
3487  * Adjust debian build deps: The webapp can now build on arm64, s390x
3488    and hurd-i386. WebDAV support is also available on those architectures.
3489  * Debian package now maintained by Richard Hartmann.
3490  * Support building without persistent database on for systems that
3491    lack TH. This removes support for incremental fsck.
3492
3493 -- Joey Hess <id@joeyh.name>  Mon, 27 Jul 2015 12:24:49 -0400
3494
3495git-annex (5.20150710) unstable; urgency=medium
3496
3497  * add: Stage symlinks the same as git add would, even if they are not a
3498    link to annexed content.
3499  * sync: When annex.autocommit=false, avoid making any commit of local
3500    changes, while still merging with remote to the extent possible.
3501  * unused: --used-refspec can now be configured to look at refs in the
3502    reflog. This provides a way to not consider old versions of files to be
3503    unused after they have reached a specified age, when the old refs in
3504    the reflog expire.
3505  * log: Fix reversion introduced in version 5.20150528 that broke this command.
3506  * assistant --autostart: First stop any daemons that are already running,
3507    which might be left over from a previous login session and so unable to
3508    use the ssh agent of a new login session.
3509  * assistant: Fix local pairing to not include newline in ssh pubkey,
3510    which is rejected on the other end for security reasons.
3511  * assistant: Fix ANNEX_SHELL_DIR written to ~/.ssh/authorized_keys
3512    in local pairing to be the absolute path to the repository, not "."
3513    This was a reversion caused by the relative path changes in 5.20150113.
3514  * Brought back the setkey plumbing command that was removed in 2011, since
3515    we found a use case for it. Note that the command's syntax was changed
3516    for consistency.
3517  * bugfix: Pass --full-tree when using git ls-files to get a list of files
3518    on the git-annex branch, so it works when run in a subdirectory.
3519    This bug affected git-annex unused, and potentially also transitions
3520    running code and other things.
3521  * Support git's undocumented core.sharedRepository=2 value, which
3522    is equivalent to "world", and is set when a repo was created using
3523    git init --shared=world.
3524  * When building on linux, pass --as-needed to linker to avoid linking
3525    with unused shared libraries including libyaml.
3526  * import: Fix failure of cross-device import on Windows.
3527  * merge: Avoid creating the synced/master branch.
3528  * Removed support for optparse-applicative versions older than 0.10.
3529
3530 -- Joey Hess <id@joeyh.name>  Fri, 10 Jul 2015 16:36:42 -0400
3531
3532git-annex (5.20150617) unstable; urgency=medium
3533
3534  * Now supports git annex sync --all --content to sync all versions of all
3535    files with all repos that want them.
3536  * Added new "anything" preferred content expression, which matches all
3537    versions of all files.
3538  * Standard preferred content for client, backup, incremental backup,
3539    and unwanted groups have been adjusted to work better when used
3540    with git annex sync --all --content.
3541  * fromkey, registerurl: Improve handling of urls that happen to also
3542    be parsable as strange keys.
3543  * sync, remotedaemon: Pass configured ssh-options even when
3544    annex.sshcaching is disabled.
3545  * assistant: Consume systemd-networkd dbus events to learn about
3546    changes to network connections, as was already done with
3547    network-manager and wicd.
3548    Thanks to Sebastian Reuße for the patches.
3549  * get --incomplete: New option to resume any interrupted downloads.
3550  * dead --key: Can be used to mark a key as dead.
3551  * fsck: Ignore keys that are known to be dead when running in
3552    --all/--unused/--key mode or a in a bare repo. Closes: #753888
3553    Otherwise, still reports files with lost contents, even if the content
3554    is dead.
3555  * S3: Special remotes can be configured with public=yes to allow
3556    the public to access the bucket's content.
3557  * S3: Publically accessible buckets can be used without creds.
3558  * import --clean-duplicates: Fix bug that didn't count local or trusted
3559    repo's copy of a file as one of the necessary copies to allow removing
3560    it from the import location.
3561  * tahoe: Use ~/.tahoe-git-annex/ rather than ~/.tahoe/git-annex/
3562    when setting up a tahoe special remote to avoid old versions of
3563    tahoe create-client choking.
3564  * Fix bug that prevented enumerating locally present objects in repos
3565    tuned with annex.tune.objecthash1=true.
3566    Fixes: unused, object count in info, unannex.
3567  * Improve url parsing to handle some urls containing illegal []
3568    characters in their paths.
3569  * info: Added json output for "backend usage", "numcopies stats",
3570    "repositories containing these files", and "transfers in progress".
3571  * Fix incremental backup standard preferred content expression to match
3572    its documentation, which says it does not want files that have reached
3573    a backup repository.
3574  * Increased the default annex.bloomaccuracy from 1000 to 10000000.
3575    This makes git annex unused use up to 16 mb more memory than it did
3576    before, but the massive increase in accuracy makes this worthwhile
3577    for all but the smallest systems.
3578  * Build documentation with deterministic=1 for reproducible builds.
3579    (A new ikiwiki feature.) Closes: #785736
3580  * Re-remove dependency on obsolete hamlet package. Closes: #786659
3581  * debian/cabal-wrapper: Removed this hack which should not be needed anymore.
3582
3583 -- Joey Hess <id@joeyh.name>  Wed, 17 Jun 2015 13:50:35 -0400
3584
3585git-annex (5.20150528) unstable; urgency=medium
3586
3587  * fromkey, registerurl: Allow urls to be specified instead of keys,
3588    and generate URL keys.
3589  * Linux standalone, OSX app: Improve runshell script to always quote
3590    shell vars, so that it will work when eg, untarred into a directory
3591    path with spaces in its name.
3592  * Revert removal dependency on obsolete hamlet package, since the
3593    autobuilders are not ready for this change yet and it prevented them
3594    from building the webapp. Reopens: #786659
3595  * fsck: When checksumming a file fails due to a hardware fault,
3596    the file is now moved to the bad directory, and the fsck proceeds.
3597    Before, the fsck immediately failed.
3598  * Linux standalone: The webapp was not built in the previous release,
3599    this release fixes that oversight.
3600
3601 -- Joey Hess <id@joeyh.name>  Thu, 28 May 2015 10:48:03 -0400
3602
3603git-annex (5.20150522) unstable; urgency=medium
3604
3605  * import: Refuse to import files that are within the work tree, as that
3606    does not make sense and could cause data loss.
3607  * drop: Now supports --all, --unused, and --key.
3608  * drop: Now defaults to --all when run in a bare repository.
3609    (Previously, did nothing when run in a bare repository.)
3610  * get, move, copy, mirror: Concurrent transfers are now supported!
3611    For example: git-annex get -J10
3612    However, progress bars are not yet displayed for concurrent transfers,
3613    pending an updated version of the ascii-progress library.
3614  * --quiet now makes progress output by rsync, wget, etc be quiet too.
3615  * Take space that will be used by other running downloads into account when
3616    checking annex.diskreserve.
3617  * Avoid accumulating transfer failure log files unless the assistant is
3618    being used.
3619  * Fix an unlikely race that could result in two transfers of the same key
3620    running at once.
3621  * Stale transfer lock and info files will be cleaned up automatically
3622    when get/unused/info commands are run.
3623  * unused: Add --used-refspec option and annex.used-refspec, which can
3624    specify a set of refs to consider used, rather than the default of
3625    considering all refs used.
3626  * webapp: Fix zombie xdg-open process left when opening file browser.
3627    Closes: #785498
3628  * Safer posix fctnl locking implementation, using lock pools and STM.
3629  * Build documentation with TZ=UTC for reproducible builds. See #785736.
3630  * OSX: Corrected the location of trustedkeys.gpg, so the built-in
3631    upgrade code will find it. Fixes OSX upgrade going forward, but
3632    older versions won't upgrade themselves due to this problem.
3633  * Remove dependency on obsolete hamlet package. Closes: #786659
3634
3635 -- Joey Hess <id@joeyh.name>  Fri, 22 May 2015 14:20:18 -0400
3636
3637git-annex (5.20150508.1) unstable; urgency=medium
3638
3639  * Now builds cleanly using ghc 7.10 (as well as ghc back to 7.6).
3640  * Imrovements to the git-annex-standalone.deb build process.
3641    (Thanks, Yaroslav Halchenko)
3642
3643 -- Joey Hess <id@joeyh.name>  Mon, 11 May 2015 12:08:58 -0400
3644
3645git-annex (5.20150508) unstable; urgency=medium
3646
3647  * Improve behavior when a git-annex command is told to operate
3648    on a file that doesn't exist. It will now continue to other
3649    files specified after that on the command line, and only error out at
3650    the end.
3651  * S3: Enable debug logging when annex.debug or --debug is set.
3652  * S3: git annex info will show additional information about a S3 remote
3653    (endpoint, port, storage class)
3654  * S3: Let git annex enableremote be used, without trying to recreate
3655    a bucket that should already exist.
3656  * S3: Fix incompatibility with bucket names used by hS3; the aws library
3657    cannot handle upper-case bucket names. git-annex now converts them to
3658    lower case automatically.
3659  * import: Check for gitignored files before moving them into the tree.
3660    (Needs git 1.8.4 or newer.)
3661  * import: Don't stop entire import when one file fails due to being
3662    gitignored or conflicting with something in the work tree.
3663  * import: Before removing a duplicate file in --deduplicate or
3664    --clean-duplicates mode, verify that enough copies of its content still
3665    exist.
3666  * Improve integration with KDE's file manager to work with dolphin
3667    version 14.12.3 while still being compatable with 4.14.2.
3668    Thanks, silvio.
3669  * assistant: Added --autostop to complement --autostart.
3670  * Work around wget bug #784348 which could cause it to clobber git-annex
3671    symlinks when downloading from ftp.
3672  * Support checking ftp urls for file presence.
3673  * Fix bogus failure of fsck --fast.
3674  * fsck: Ignore error recording the fsck in the activity log,
3675    which can happen when running fsck in a read-only repository.
3676    Closes: #698559
3677    (fsck can still need to write to the repository if it find problems,
3678    but a successful fsck can be done read-only)
3679  * Improve quvi 0.4 output parsing to handle cases wher there is no known
3680    filename extension. This is currently the case when using quvi with
3681    youtube. In this case, the extension ".m" will be used.
3682  * Dropped support for older versions of yesod, warp, and dbus than the ones
3683    in Debian Jessie.
3684  * Switch from the obsolete dataenc library for base64 encoding to sandi.
3685    (Thanks, Magnus Therning)
3686  * Debian's ghc now supports TH on arm! Adjust build dependencies
3687    to build the webapp on arm, and enable DAV support on arm. \o/
3688  * Adjust some other arch specific build dependencies that are now
3689    available on more architectures in Devian unstable.
3690  * Windows: Remove cygwin ssh, the newer version of which has stopped
3691    honoring the setting of HOME. Instead, copy msysgit's ssh into PATH.
3692    Note that setting up a remote ssh server using password authentication
3693    is known to be broken in this release on Windows.
3694  * Windows: Roll back to an older version of rsync from cygwin.
3695    The newer version has some dependency on a newer ssh from cygwin.
3696
3697 -- Joey Hess <id@joeyh.name>  Fri, 08 May 2015 13:42:30 -0400
3698
3699git-annex (5.20150420) unstable; urgency=medium
3700
3701  * Fix activity log parsing, which caused the log to not retain
3702    activity from other uuids.
3703  * Union merge could fall over if there was a file in the repository
3704    with the same name as a git ref. Now fixed.
3705  * info dir: Added information about repositories that
3706    contain files in the specified directory.
3707  * info: Added --bytes option.
3708  * bittorrent: Fix handling of magnet links.
3709  * When a key's size is unknown, still check the annex.diskreserve,
3710    and avoid getting content if the disk is too full.
3711  * Fix fsck --from a git remote in a local directory, and from
3712    a directory special remote.
3713    This was a reversion caused by the relative path changes in 5.20150113.
3714  * fsck --from remote: When bad content is found in the remote,
3715    and the local repo does not have a copy of the content, preserve
3716    the bad content in .git/annex/bad/ to avoid further data loss.
3717  * fsck --from remote: Avoid downloading a key if it would go over
3718    the annex.diskreserve limit.
3719  * required: New command, like wanted, but for required content.
3720  * Removed dependency on haskell SHA library,
3721    instead using cryptohash >= 0.11.0.
3722  * Make repo init more robust.
3723  * New debian/rules build-standalone target, which generates a
3724    git-annex-standalone.deb that should work on many old Debian etc
3725    systems. Thanks, Yaroslav Halchenko.
3726  * Windows: Renamed start menu file to avoid loop in some versions
3727    of Windows where the menu file is treated as a git-annex program.
3728  * Windows: Fixed support of remotes on other drives.
3729    (A reversion introduced in version 5.20150113.)
3730  * Windows: Bundled versions of rsync, wget, ssh, and gpg from
3731    cygwin all updated. Thanks, Yury V. Zaytsev.
3732
3733 -- Joey Hess <id@joeyh.name>  Mon, 20 Apr 2015 14:44:04 -0400
3734
3735git-annex (5.20150409) unstable; urgency=medium
3736
3737  * This fixes a bug in the assistant introduced by the literal pathspec
3738    changes in version 5.20150406.
3739  * --quiet now suppresses progress displays from eg, rsync.
3740    (Second time's the charm..)
3741  * fromkey, registerurl: When reading from stdin, allow the
3742    filename and url, respectively, to contain whitespace.
3743  * add: If annex.largefiles is set and does not match a file that's being
3744    added, the file will be checked into git rather than being added to the
3745    annex. Previously, git annex add skipped over such files; this new
3746    behavior is more useful in direct mode.
3747  * proxy: Made it work when run in a new repository before initial
3748    commit.
3749  * info: Display repository mode: bare when in a bare (non-direct mode)
3750    repo.
3751  * importfeed: Fix feed download when curl is used.
3752  * importfeed: Error out when passed a non-url.
3753  * webapp: When adding another local repository, and combining it
3754    with the current repository, the new repository's remote path
3755    was set to "." rather than the path to the current repository.
3756    This was a reversion caused by the relative path changes in 5.20150113.
3757  * contentlocationn: New plumbing command.
3758
3759 -- Joey Hess <id@joeyh.name>  Thu, 09 Apr 2015 15:06:38 -0400
3760
3761git-annex (5.20150406.1) unstable; urgency=medium
3762
3763  * Fixes a bug in the last release that caused rsync and possibly
3764    other commands to hang at the end of a file transfer.
3765    (--quiet is back to not blocking progress displays until
3766    that code can be fixed properly.)
3767
3768 -- Joey Hess <id@joeyh.name>  Mon, 06 Apr 2015 17:13:13 -0400
3769
3770git-annex (5.20150406) unstable; urgency=medium
3771
3772  * Prevent git-ls-files from double-expanding wildcards when an
3773    unexpanded wildcard is passed to a git-annex command like add or find.
3774  * Fix make build target. Thanks, Justin Geibel.
3775  * Fix GETURLS in external special remote protocol to strip
3776    downloader prefix from logged url info before checking for the
3777    specified prefix.
3778  * importfeed: Avoid downloading a redundant item from a feed whose
3779    permalink has been seen before, even when the url has changed.
3780  * importfeed: Always store itemid in metadata; before this was only
3781    done when annex.genmetadata was set.
3782  * Relax debian package dependencies to git >= 1:1.8.1 rather
3783    than needing >= 1:2.0.
3784  * test: Fix --list-tests
3785  * addurl --file: When used with a special remote that claims
3786    urls and checks their contents, don't override the user's provided
3787    filename with filenames that the special remote suggests. Also,
3788    don't allow adding the url if the special remote says it contains
3789    multiple files.
3790  * import: --deduplicate and --cleanduplicates now output the keys
3791    corresponding to duplicated files they process.
3792  * expire: New command, for expiring inactive repositories.
3793  * fsck: Record fsck activity for use by expire command.
3794  * Fix truncation of parameters that could occur when using xargs git-annex.
3795  * Significantly sped up processing of large numbers of directories
3796    passed to a single git-annex command.
3797  * version: Add --raw
3798  * init: Improve fifo test to detect NFS systems that support fifos
3799    but not well enough for sshcaching.
3800  * --quiet now suppresses progress displays from eg, rsync.
3801    (The option already suppressed git-annex's own built-in progress
3802    displays.)
3803
3804 -- Joey Hess <id@joeyh.name>  Mon, 06 Apr 2015 12:48:48 -0400
3805
3806git-annex (5.20150327) unstable; urgency=medium
3807
3808  * readpresentkey: New plumbing command for checking location log.
3809  * checkpresentkey: New plumbing command to check if a key can be verified
3810    to be present on a remote.
3811  * Added a post-update-annex hook, which is run after the git-annex branch
3812    is updated. Needed for git update-server-info.
3813  * migrate: --force will force migration of keys already using the
3814    destination backend. Useful in rare cases.
3815  * Man pages for individual commands now available, and can be
3816    opened using "git annex help <command>"
3817  * --auto is no longer a global option; only get, drop, and copy
3818    accept it. (Not a behavior change unless you were passing it to a
3819    command that ignored it.)
3820  * Improve error message when --in @date is used and there is no
3821    reflog for the git-annex branch.
3822  * assistant: Committing a whole lot of files at once could overflow
3823    command-line length limits and cause the commit to fail. This
3824    only happened when using the assistant in an indirect mode repository.
3825  * Work around curl bug when asked to download an empty url to a file.
3826  * Fix bug introduced in the last release that broke git-annex sync
3827    when git-annex was installed from the standalone tarball.
3828
3829 -- Joey Hess <id@joeyh.name>  Fri, 27 Mar 2015 13:10:59 -0400
3830
3831git-annex (5.20150317) unstable; urgency=medium
3832
3833  * fsck: Incremental fsck uses sqlite to store its records, instead
3834    of abusing the sticky bit. Existing sticky bits are ignored;
3835    incremental fscks started by old versions won't be resumed by
3836    this version.
3837  * fsck: Multiple incremental fscks of different repos (including remotes)
3838    can now be running at the same time in the same repo without it
3839    getting confused about which files have been checked for which remotes.
3840  * unannex: Refuse to unannex when repo is too new to have a HEAD,
3841    since in this case there must be staged changes in the index
3842    (if there is anything to unannex), and the unannex code path
3843    needs to run with a clean index.
3844  * Linux standalone: Set LOCPATH=/dev/null to work around
3845    https://ghc.haskell.org/trac/ghc/ticket/7695
3846    This prevents localization from working, but git-annex
3847    is not localized anyway.
3848  * sync: As well as the synced/git-annex push, attempt a
3849    git-annex:git-annex push, as long as the remote branch
3850    is an ancestor of the local branch, to better support bare git repos.
3851    (This used to be done, but it forgot to do it since version 4.20130909.)
3852  * When re-execing git-annex, use current program location, rather than
3853    ~/.config/git-annex/program, when possible.
3854  * Submodules are now supported by git-annex!
3855  * metadata: Fix encoding problem that led to mojibake when storing
3856    metadata strings that contained both unicode characters and a space
3857    (or '!') character.
3858  * Also potentially fixes encoding problem when embedding credentials
3859    that contain unicode characters.
3860  * sync: Fix committing when in a direct mode repo that has no HEAD ref.
3861    (For example, a newly checked out git submodule.)
3862  * Added SETURIPRESENT and SETURIMISSING to external special remote protocol,
3863    useful for things like ipfs that don't use regular urls.
3864  * addurl: Added --raw option, which bypasses special handling of quvi,
3865    bittorrent etc urls.
3866  * git-annex-shell: Improve error message when the specified repository
3867    doesn't exist or git config fails for some reason.
3868  * fromkey --force: Skip test that the key has its content in the annex.
3869  * fromkey: Add stdin mode.
3870  * registerurl: New plumbing command for mass-adding urls to keys.
3871  * remotedaemon: Fixed support for notifications of changes to gcrypt
3872    remotes, which was never tested and didn't quite work before.
3873
3874 -- Joey Hess <id@joeyh.name>  Tue, 17 Mar 2015 13:02:36 -0400
3875
3876git-annex (5.20150219) unstable; urgency=medium
3877
3878  * glacier: Detect when the glacier command in PATH is the wrong one,
3879    from boto, rather than from glacier-cli, and refuse to use it,
3880    since the boto program fails to fail when passed
3881    parameters it does not understand.
3882  * groupwanted: New command to set the groupwanted preferred content
3883    expression.
3884  * import: Support file matching options such as --exclude, --include,
3885    --smallerthan, --largerthan
3886  * The file matching options are now only accepted by commands that
3887    can actually use them, instead of by all commands.
3888  * import: Avoid checksumming file twice when run in the default
3889    or --duplicate mode.
3890  * Windows: Fix bug in dropping an annexed file, which
3891    caused a symlink to be staged that contained backslashes.
3892  * webapp: Fix reversion in opening webapp when starting it manually
3893    inside a repository.
3894  * assistant: Improve sanity check for control characters when pairing.
3895  * Improve race recovery code when committing to git-annex branch.
3896  * addurl: Avoid crash if quvi is not installed, when git-annex was
3897    built with process-1.2
3898  * bittorrent: Fix mojibake introduced in parsing arai2c progress output.
3899  * fsck --from: If a download from a remote fails, propagate the failure.
3900  * metadata: When setting metadata, do not recurse into directories by
3901    default, since that can be surprising behavior and difficult to recover
3902    from. The old behavior is available by using --force.
3903  * sync, assistant: Include repository name in head branch commit message.
3904  * The ssh-options git config is now used by gcrypt, rsync, and ddar
3905    special remotes that use ssh as a transport.
3906  * sync, assistant: Use the ssh-options git config when doing git pull
3907    and push.
3908  * remotedaemon: Use the ssh-options git config.
3909  * Linux standalone: Improved process names of linker shimmed programs.
3910
3911 -- Joey Hess <id@joeyh.name>  Thu, 19 Feb 2015 14:16:03 -0400
3912
3913git-annex (5.20150205) unstable; urgency=medium
3914
3915  * info: Can now display info about a given uuid.
3916  * Added to remote/uuid info: Count of the number of keys present
3917    on the remote, and their size. This is rather expensive to calculate,
3918    so comes last and --fast will disable it.
3919  * info remote: Include the date of the last sync with the remote.
3920  * sync: Added --message/-m option like git commit.
3921  * remotedaemon: Fix problem that could prevent ssh connections being
3922    made after two LOSTNET messages were received in a row (perhaps due to
3923    two different network interfaces being brought down).
3924  * Fix build failure when wget is not installed.
3925  * Fix wording of message displayed when unable to get a file that
3926    is available in untrusted repositories.
3927  * addurl: When a Content-Disposition header suggests a filename to use,
3928    addurl will consider using it, if it's reasonable and doesn't conflict
3929    with an existing file. (--file overrides this)
3930  * Fix default repository description created by git annex init,
3931    which got broken by the relative path changes in the last release.
3932  * init: Repository tuning parameters can now be passed when initializing a
3933    repository for the first time. For details, see
3934    http://git-annex.branchable.com/tuning/
3935  * merge: Refuse to merge changes from a git-annex branch of a repo
3936    that has been tuned in incompatible ways.
3937  * Support annex.tune.objecthash1, annex.tune.objecthashlower, and
3938    annex.tune.branchhash1.
3939  * Remove support for building without cryptohash.
3940  * Added MD5 and MD5E backends.
3941  * assistant: Fix local pairing when ssh pubkey comment contains spaces.
3942  * Avoid using fileSize which maxes out at just 2 gb on Windows.
3943    Instead, use hFileSize, which doesn't have a bounded size.
3944    Fixes support for files > 2 gb on Windows.
3945  * Windows: Fix running of the pre-commit-annex hook.
3946  * Windows: Fix S3 special remote; need to call withSocketsDo. Thanks, Trent.
3947
3948 -- Joey Hess <id@joeyh.name>  Thu, 05 Feb 2015 14:08:33 -0400
3949
3950git-annex (5.20150113) unstable; urgency=medium
3951
3952  * unlock: Don't allow unlocking files that have never been committed to git
3953    before, to avoid an intractable problem that prevents the pre-commit
3954    hook from telling if such a file is intended to be an annexed file or not.
3955  * Avoid re-checksumming when migrating from hash to hashE backend.
3956    Closes: #774494
3957  * Fix build with process 1.2.1.0.
3958  * Android: Provide a version built with -fPIE -pie to support Android 5.0.
3959  * sync: Fix an edge case where syncing in a bare repository would try to
3960    merge and so fail.
3961  * Check git version at runtime, rather than assuming it will be the same
3962    as the git version used at build time when running git-checkattr and
3963    git-branch remove.
3964  * Switch to using relative paths to the git repository.
3965    - This allows the git repository to be moved while git-annex is running in
3966      it, with fewer problems.
3967    - On Windows, this avoids some of the problems with the absurdly small
3968      MAX_PATH of 260 bytes. In particular, git-annex repositories should
3969      work in deeper/longer directory structures than before.
3970  * Generate shorter keys for WORM and URL, avoiding keys that are longer
3971    than used for SHA256, so as to not break on systems like Windows that
3972    have very small maximum path length limits.
3973  * Bugfix: A file named HEAD in the work tree could confuse some git commands
3974    run by git-annex.
3975
3976 -- Joey Hess <id@joeyh.name>  Tue, 13 Jan 2015 12:10:08 -0400
3977
3978git-annex (5.20141231) unstable; urgency=medium
3979
3980  * vicfg: Avoid crashing on badly encoded config data.
3981  * Work around statfs() overflow on some XFS systems.
3982  * sync: Now supports remote groups, the same way git remote update does.
3983  * setpresentkey: A new plumbing-level command.
3984  * Run shutdown cleanup actions even if there were failures processing
3985    the command. Among other fixes, this means that addurl will stage
3986    added files even if adding one of the urls fails.
3987  * bittorrent: Fix locking problem when using addurl file://
3988  * Windows: Fix local rsync filepath munging (fixes 26 test suite failures).
3989  * Windows: Got the rsync special remote working.
3990  * Windows: Fix handling of views of filenames containing '%'
3991  * OSX: Switched away from deprecated statfs64 interface.
3992
3993 -- Joey Hess <id@joeyh.name>  Wed, 31 Dec 2014 15:15:46 -0400
3994
3995git-annex (5.20141219) unstable; urgency=medium
3996
3997  * Webapp: When adding a new box.com remote, use the new style chunking.
3998    Thanks, Jon Ander Peñalba.
3999  * External special remote protocol now includes commands for setting
4000    and getting the urls associated with a key.
4001  * Urls can now be claimed by remotes. This will allow creating,
4002    for example, a external special remote that handles magnet: and
4003    *.torrent urls.
4004  * Use wget -q --show-progress for less verbose wget output,
4005    when built with wget 1.16.
4006  * Added bittorrent special remote.
4007  * addurl behavior change: When downloading an url ending in .torrent,
4008    it will download files from bittorrent, instead of the old behavior
4009    of adding the torrent file to the repository.
4010  * Added Recommends on aria2.
4011  * When possible, build with the haskell torrent library for parsing
4012    torrent files. As a fallback, can instead use btshowmetainfo from
4013    bittornado | bittorrent.
4014  * Fix build with -f-S3.
4015
4016 -- Joey Hess <id@joeyh.name>  Fri, 19 Dec 2014 16:53:26 -0400
4017
4018git-annex (5.20141203) unstable; urgency=medium
4019
4020  * proxy: New command for direct mode repositories, allows bypassing
4021    the direct mode guard in a safe way to do all sorts of things
4022    including git revert, git mv, git checkout ...
4023  * undo: New command to undo the most recent change to a file
4024    or to the contents of a directory.
4025  * Add undo action to nautilus and konqueror integration.
4026  * diffdriver: New git-annex command, to make git external diff drivers
4027    work with annexed files.
4028  * pre-commit: Block partial commit of unlocked annexed file, since
4029    that left a typechange staged in index due to some infelicity of git's
4030    handling of partial commits.
4031  * Work around behavior change in lsof 4.88's -F output format.
4032  * S3: Switched to using the haskell aws library.
4033  * S3: No longer buffers entire files in memory when uploading without
4034    chunking.
4035  * S3: When built with a new enough version of the haskell aws library,
4036    supports doing multipart uploads, in order to store extremely large
4037    files in S3 when not using chunking.
4038  * Don't show "(gpg)" when decrypting the remote encryption cipher,
4039    since this could be taken to read that's the only time git-annex
4040    runs gpg, which is not the case.
4041  * Debian package is now maintained by Gergely Nagy.
4042  * Windows: Remove Alt+A keyboard shortcut, which turns out to have scope
4043    outside the menus.
4044  * Windows: Install ssh and other bundled programs to Git/cmd,
4045    instead of Git/bin, since the latter is not in the default msysgit PATH.
4046
4047 -- Joey Hess <id@joeyh.name>  Wed, 03 Dec 2014 15:16:52 -0400
4048
4049git-annex (5.20141125) unstable; urgency=medium
4050
4051  * Remove fixup code for bad bare repositories created by
4052    versions 5.20131118 through 5.20131127. That fixup code would
4053    accidentally fire when --git-dir was incorrectly
4054    pointed at the working tree of a git-annex repository,
4055    possibly resulting in data loss. Closes: #768093
4056  * Windows: Fix crash when user.name is not set in git config.
4057
4058 -- Joey Hess <joeyh@debian.org>  Wed, 05 Nov 2014 11:41:51 -0400
4059
4060git-annex (5.20141024) unstable; urgency=medium
4061
4062  * vicfg: Deleting configurations now resets to the default, where
4063    before it has no effect.
4064  * Remove hurd stuff from cabal file, since hackage currently rejects
4065    it, and the test suite fails on hurd.
4066  * initremote: Don't allow creating a special remote that has the same
4067    name as an existing git remote.
4068  * Windows: Use haskell setenv library to clean up several ugly workarounds
4069    for inability to manipulate the environment on windows. This includes
4070    making git-annex not re-exec itself on start on windows, and making the
4071    test suite on Windows run tests without forking.
4072  * glacier: Fix pipe setup when calling glacier-cli to retrieve an object.
4073  * info: When run on a single annexed file, displays some info about the
4074    file, including its key and size.
4075  * info: When passed the name or uuid of a remote, displays info about that
4076    remote. Remotes that support encryption, chunking, or embedded
4077    creds will include that in their info.
4078  * enableremote: When the remote has creds, update the local creds cache
4079    file. Before, the old version of the creds could be left there, and
4080    would continue to be used.
4081
4082 -- Joey Hess <joeyh@debian.org>  Fri, 24 Oct 2014 13:03:29 -0400
4083
4084git-annex (5.20141013) unstable; urgency=medium
4085
4086  * Adjust cabal file to support building w/o assistant on the hurd.
4087  * Support building with yesod 1.4.
4088  * S3: Fix embedcreds=yes handling for the Internet Archive.
4089  * map: Handle .git prefixed remote repos. Closes: #614759
4090  * repair: Prevent auto gc from happening when fetching from a remote.
4091
4092 -- Joey Hess <joeyh@debian.org>  Mon, 13 Oct 2014 10:13:06 -0400
4093
4094git-annex (5.20140927) unstable; urgency=medium
4095
4096  * Really depend (not just build-depend) on new enough git for --no-gpg-sign
4097    to work. Closes: #763057
4098  * Add temporary workaround for bug #763078 which broke building on armel
4099    and armhf.
4100
4101 -- Joey Hess <joeyh@debian.org>  Sat, 27 Sep 2014 14:25:09 -0400
4102
4103git-annex (5.20140926) unstable; urgency=high
4104
4105  * Depend on new enough git for --no-gpg-sign to work. Closes: #762446
4106  * Work around failure to build on mips by using cabal, not Setup,
4107    to build in debian/rules.
4108
4109 -- Joey Hess <joeyh@debian.org>  Fri, 26 Sep 2014 15:09:02 -0400
4110
4111git-annex (5.20140919) unstable; urgency=high
4112
4113  * Security fix for S3 and glacier when using embedcreds=yes with
4114    encryption=pubkey or encryption=hybrid. CVE-2014-6274
4115    The creds embedded in the git repo were *not* encrypted.
4116    git-annex enableremote will warn when used on a remote that has
4117    this problem. For details, see:
4118    https://git-annex.branchable.com/upgrades/insecure_embedded_creds/
4119  * assistant: Detect when repository has been deleted or moved, and
4120    automatically shut down the assistant. Closes: #761261
4121  * Windows: Avoid crashing trying to list gpg secret keys, for gcrypt
4122    which is not yet supported on Windows.
4123  * WebDav: Fix enableremote crash when the remote already exists.
4124    (Bug introduced in version 5.20140817.)
4125  * add: In direct mode, adding an annex symlink will check it into git,
4126    as was already done in indirect mode.
4127
4128 -- Joey Hess <joeyh@debian.org>  Fri, 19 Sep 2014 12:53:42 -0400
4129
4130git-annex (5.20140915) unstable; urgency=medium
4131
4132  * New annex.hardlink setting. Closes: #758593
4133  * init: Automatically detect when a repository was cloned with --shared,
4134    and set annex.hardlink=true, as well as marking the repository as
4135    untrusted.
4136  * Fix parsing of ipv6 address in git remote address when it was not
4137    formatted as an url.
4138  * The annex-rsync-transport configuration is now also used when checking
4139    if a key is present on a rsync remote, and when dropping a key from
4140    the remote.
4141  * Promote file not found warning message to an error.
4142  * Fix transfer lock file FD leak that could occur when two separate
4143    git-annex processes were both working to perform the same set of
4144    transfers.
4145  * sync: Ensure that pending changes to git-annex branch are committed
4146    before push when in direct mode. (Fixing a very minor reversion.)
4147  * WORM backend: Switched to include the relative path to the file inside
4148    the repository, rather than just the file's base name. Note that if you're
4149    relying on such things to keep files separate with WORM, you should really
4150    be using a better backend.
4151  * Rather than crashing when there's a problem with the requested bloomfilter
4152    capacity/accuracy, fall back to a reasonable default bloom filter size.
4153  * Fix build with optparse-applicative 0.10. Closes: #761484
4154  * webapp: Fixed visual glitch in xmpp pairing that was reported live by a
4155    user who tracked me down in front of a coffee cart in Portland.
4156    (New bug reporting method of choice?)
4157
4158 -- Joey Hess <joeyh@debian.org>  Mon, 15 Sep 2014 10:45:00 -0400
4159
4160git-annex (5.20140831) unstable; urgency=medium
4161
4162  * Make --help work when not in a git repository. Closes: #758592
4163  * Ensure that all lock fds are close-on-exec, fixing various problems with
4164    them being inherited by child processes such as git commands.
4165  * When accessing a local remote, shut down git-cat-file processes
4166    afterwards, to ensure that remotes on removable media can be unmounted.
4167    Closes: #758630
4168  * Fix handing of autocorrection when running outside a git repository.
4169  * Fix stub git-annex test support when built without tasty.
4170  * Do not preserve permissions and acls when copying files from
4171    one local git repository to another. Timestamps are still preserved
4172    as long as cp --preserve=timestamps is supported. Closes: #729757
4173
4174 -- Joey Hess <joeyh@debian.org>  Sun, 31 Aug 2014 12:30:08 -0700
4175
4176git-annex (5.20140817) unstable; urgency=medium
4177
4178  * New chunk= option to chunk files stored in special remotes.
4179    Supported by: directory, S3, webdav, gcrypt, rsync, and all external
4180    and hook special remotes.
4181  * Partially transferred files are automatically resumed when using
4182    chunked remotes!
4183  * The old chunksize= option is deprecated. Do not use for new remotes.
4184  * Legacy code for directory remotes using the old chunksize= option
4185    will keep them working, but more slowly than before.
4186  * webapp: Automatically install Konqueror integration scripts
4187    to get and drop files.
4188  * repair: Removing bad objects could leave fsck finding no more
4189    unreachable objects, but some branches no longer accessible.
4190    Fix this, including support for fixing up repositories that
4191    were incompletely repaired before.
4192  * Fix cost calculation for non-encrypted remotes.
4193  * Display exception message when a transfer fails due to an exception.
4194  * WebDAV: Sped up by avoiding making multiple http connections
4195    when storing a file.
4196  * WebDAV: Avoid buffering whole file in memory when uploading and
4197    downloading.
4198  * WebDAV: Dropped support for DAV before 1.0.
4199  * testremote: New command to test uploads/downloads to a remote.
4200  * Dropping an object from a bup special remote now deletes the git branch
4201    for the object, although of course the object's content cannot be deleted
4202    due to the nature of bup.
4203  * unlock: Better error handling; continue past files that are not available
4204    or cannot be unlocked due to disk space, and try all specified files.
4205  * Windows: Now uses actual inode equivilants in new direct mode
4206    repositories, for safer detection of eg, renaming of files with the same
4207    size and mtime.
4208  * direct: Fix ugly warning messages.
4209  * WORM backend: When adding a file in a subdirectory, avoid including the
4210    subdirectory in the key name.
4211  * S3, Glacier, WebDAV: Fix bug that prevented accessing the creds
4212    when the repository was configured with encryption=shared embedcreds=yes.
4213  * direct: Avoid leaving file content in misctemp if interrupted.
4214  * git-annex-shell sendkey: Don't fail if a remote asks for a key to be sent
4215    that already has a transfer lock file indicating it's being sent to that
4216    remote. The remote may have moved between networks, or reconnected.
4217  * Switched from the old haskell HTTP library to http-conduit.
4218
4219 -- Joey Hess <joeyh@debian.org>  Sun, 17 Aug 2014 10:30:58 -0400
4220
4221git-annex (5.20140717) unstable; urgency=high
4222
4223  * Fix minor FD leak in journal code. Closes: #754608
4224  * direct: Fix handling of case where a work tree subdirectory cannot
4225    be written to due to permissions.
4226  * migrate: Avoid re-checksumming when migrating from hashE to hash backend.
4227  * uninit: Avoid failing final removal in some direct mode repositories
4228    due to file modes.
4229  * S3: Deal with AWS ACL configurations that do not allow creating or
4230    checking the location of a bucket, but only reading and writing content to
4231    it.
4232  * resolvemerge: New plumbing command that runs the automatic merge conflict
4233    resolver.
4234  * Deal with change in git 2.0 that made indirect mode merge conflict
4235    resolution leave behind old files.
4236  * sync: Fix git sync with local git remotes even when they don't have an
4237    annex.uuid set. (The assistant already did so.)
4238  * Set gcrypt-publish-participants when setting up a gcrypt repository,
4239    to avoid unncessary passphrase prompts.
4240    This is a security/usability tradeoff. To avoid exposing the gpg key
4241    ids who can decrypt the repository, users can unset
4242    gcrypt-publish-participants.
4243  * Install nautilus hooks even when ~/.local/share/nautilus/ does not yet
4244    exist, since it is not automatically created for Gnome 3 users.
4245  * Windows: Move .vbs files out of git\bin, to avoid that being in the
4246    PATH, which caused some weird breakage. (Thanks, divB)
4247  * Windows: Fix locking issue that prevented the webapp starting
4248    (since 5.20140707).
4249
4250 -- Joey Hess <joeyh@debian.org>  Thu, 17 Jul 2014 11:27:25 -0400
4251
4252git-annex (5.20140709) unstable; urgency=medium
4253
4254  * Fix race in direct mode merge code that could cause all files in the
4255    repository to be removed. It should be able to recover repositories
4256    experiencing this bug without data loss. See:
4257    http://git-annex.branchable.com/bugs/bad_merge_commit_deleting_all_files/
4258  * Fix git version that supported --no-gpg-sign.
4259  * Fix bug in automatic merge conflict resolution, when one side is an
4260    annexed symlink, and the other side is a non-annexed symlink.
4261  * Really fix bug that caused the assistant to make many unncessary
4262    empty merge commits.
4263
4264 -- Joey Hess <joeyh@debian.org>  Wed, 09 Jul 2014 15:28:03 -0400
4265
4266git-annex (5.20140707) unstable; urgency=medium
4267
4268  * assistant: Fix bug, introduced in last release, that caused the assistant
4269    to make many unncessary empty merge commits.
4270  * assistant: Fix one-way assistant->assistant sync in direct mode.
4271  * Fix bug in annex.queuesize calculation that caused much more
4272    queue flushing than necessary.
4273  * importfeed: When annex.genmetadata is set, metadata from the feed
4274    is added to files that are imported from it.
4275  * Support users who have set commit.gpgsign, by disabling gpg signatures
4276    for git-annex branch commits and commits made by the assistant.
4277  * Fix memory leak when committing millions of changes to the git-annex
4278    branch, eg after git-annex add has run on 2 million files in one go.
4279  * Support building with bloomfilter 2.0.0.
4280  * Run standalone install process when the assistant is started
4281    (was only being run when the webapp was opened).
4282  * Android: patch git to avoid fchmod, which fails on /sdcard.
4283  * Windows: Got rid of that pesky DOS box when starting the webapp.
4284  * Windows: Added Startup menu item so assistant starts automatically
4285    on login.
4286  * Windows: Fix opening file browser from webapp when repo is in a
4287    directory with spaces.
4288  * Windows: Assistant now logs to daemon.log.
4289
4290 -- Joey Hess <joeyh@debian.org>  Mon, 07 Jul 2014 12:24:13 -0400
4291
4292git-annex (5.20140613) unstable; urgency=medium
4293
4294  * Ignore setsid failures.
4295  * Avoid leaving behind .tmp files when failing in some cases, including
4296    importing files to a disk that is full.
4297  * Avoid bad commits after interrupted direct mode sync (or merge).
4298  * Fix build with wai 0.3.0.
4299  * Deal with FAT's low resolution timestamps, which in combination with
4300    Linux's caching of higher res timestamps while a FAT is mounted, caused
4301    direct mode repositories on FAT to seem to have modified files after
4302    they were unmounted and remounted.
4303  * Windows: Fix opening webapp when repository is in a directory with
4304    spaces in the path.
4305  * Detect when Windows has lost its mind in a timezone change, and
4306    automatically apply a delta to the timestamps it returns, to get back to
4307    sane values.
4308
4309 -- Joey Hess <joeyh@debian.org>  Fri, 13 Jun 2014 09:58:07 -0400
4310
4311git-annex (5.20140606) unstable; urgency=medium
4312
4313  * webapp: When adding a new local repository, fix bug that caused its
4314    group and preferred content to be set in the current repository,
4315    even when not combining.
4316  * webapp: Avoid stomping on existing description, group and
4317    preferred content settings when enabling or combining with
4318    an already existing remote.
4319  * assistant: Make sanity checker tmp dir cleanup code more robust.
4320  * unused: Avoid checking view branches for unused files.
4321  * webapp: Include ssh port in mangled hostname.
4322  * Windows: Fix bug introduced in last release that caused files
4323    in the git-annex branch to have lines teminated with \r.
4324  * Windows: Fix retrieving of files from local bare git repositories.
4325
4326 -- Joey Hess <joeyh@debian.org>  Fri, 06 Jun 2014 12:54:06 -0400
4327
4328git-annex (5.20140529) unstable; urgency=medium
4329
4330  * Fix encoding of data written to git-annex branch. Avoid truncating
4331    unicode characters to 8 bits. Allow any encoding to be used, as with
4332    filenames (but utf8 is the sane choice). Affects metadata and repository
4333    descriptions, and preferred content expressions.
4334  * assistant: When there are multiple remotes giving different ways
4335    to access the same repository, honor remote cost settings and use
4336    the cheapest available.
4337  * webapp: More robust startup when annex directory is not a git repo.
4338  * initremote/enableremote: Basic support for using with regular git remotes;
4339    initremote stores the location of an already existing git remote,
4340    and enableremote setups up a remote using its stored location.
4341  * webapp: Support for enabling known git repositories on ssh servers.
4342    The repository must have been added using initremote.
4343  * webapp: When setting up a ssh remote, record it using initremote,
4344    so that it can be easily enabled elsewhere.
4345  * webapp: When setting up a ssh remote, if the user inputs ~/foo,
4346    normalize that to foo, since it's in the home directory by default.
4347  * Use exceptions in place of deprecated MonadCatchIO-transformers
4348    Thanks, Ben Gamari.
4349  * android: Run busybox install with -s, since some versions of Android
4350    prohibit making hard links.
4351  * Android webapp: Fix EvilSplicer bugs that mangled the css files,
4352    preventing icons from displaying, and also slightly broke the js files.
4353
4354 -- Joey Hess <joeyh@debian.org>  Thu, 29 May 2014 14:41:56 -0400
4355
4356git-annex (5.20140517) unstable; urgency=medium
4357
4358  * webapp: Switched to bootstrap 3.
4359    Thanks, Sören Brunk.
4360  * Standalone builds now check gpg signatures before upgrading.
4361  * Simplified repository description line format. The remote name,
4362    if any, is always in square brackets after the description.
4363  * assistant: Clean up stale tmp files on startup.
4364  * webapp: Better ssh password prompting.
4365  * Depend on git-remote-gcrypt 0.20130908-6. Older versions
4366    fail when the assistant is run with no controlling tty.
4367  * Added ddar special remote.
4368    Thanks, Robie Basak.
4369  * webapp: Fixed drag and drop to reorder the list of remotes.
4370  * group: When no groups are specified to set, lists the current groups
4371    of a repository.
4372  * Add remote.$name.annex-shell configuration.
4373    Thanks, Fraser Tweedale
4374  * Support symlinking git-annex and git-annex-shell
4375    from the Linux standalone bundle into PATH.
4376    Thanks, jlebar.
4377
4378 -- Joey Hess <joeyh@debian.org>  Sat, 17 May 2014 13:30:39 -0400
4379
4380git-annex (5.20140421) unstable; urgency=medium
4381
4382  * assistant: Now detects immediately when other repositories push
4383    changes to a ssh remote, and pulls.
4384    ** XMPP is no longer needed in this configuration! **
4385    This requires the remote server have git-annex-shell with
4386    notifychanges support (>= 5.20140405)
4387  * webapp: Show a network signal icon next to ssh and xmpp remotes that
4388    it's currently connected with.
4389  * webapp: Rework xmpp nudge to prompt for either xmpp or a ssh remote
4390    to be set up.
4391  * sync, assistant, remotedaemon: Use ssh connection caching for git pushes
4392    and pulls.
4393  * remotedaemon: When network connection is lost, close all cached ssh
4394    connections.
4395  * Improve handling of monthly/yearly scheduling.
4396  * Avoid depending on shakespeare except for when building the webapp.
4397  * uninit: Avoid making unncessary copies of files.
4398  * info: Allow use in a repository where annex.uuid is not set.
4399  * reinit: New command that can initialize a new repository using
4400    the configuration of a previously known repository.
4401    Useful if a repository got deleted and you want
4402    to clone it back the way it was.
4403  * drop --from: When local repository is untrusted, its copy of a file does
4404    not count.
4405  * Bring back rsync -p, but only when git-annex is running on a non-crippled
4406    file system. This is a better approach to fix #700282 while not
4407    unncessarily losing file permissions on non-crippled systems.
4408  * webapp: Start even if the current directory is listed in
4409    ~/.config/git-annex/autostart but no longer has a git repository in it.
4410  * findref: New command, like find but shows files in a specified git ref.
4411  * webapp: Fix UI for removing XMPP connection.
4412  * When init detects that git is not configured to commit, and sets
4413    user.email to work around the problem, also make it set user.name.
4414  * webapp: Support using git-annex on a remote server, which was installed
4415    from the standalone tarball or OSX app, and so does not have
4416    git-annex in PATH (and may also not have git or rsync in PATH).
4417  * standalone tarball, OSX app: Install a ~/.ssh/git-annex-wrapper, which
4418    can be used to run git-annex, git, rsync, etc.
4419
4420 -- Joey Hess <joeyh@debian.org>  Sun, 20 Apr 2014 19:43:14 -0400
4421
4422git-annex (5.20140412) unstable; urgency=high
4423
4424  * Last release didn't quite fix the high cpu issue in all cases, this should.
4425
4426 -- Joey Hess <joeyh@debian.org>  Fri, 11 Apr 2014 17:14:38 -0400
4427
4428git-annex (5.20140411) unstable; urgency=high
4429
4430  * importfeed: Filename template can now contain an itempubdate variable.
4431    Needs feed 0.3.9.2.
4432  * Fix rsync progress parsing in locales that use comma in number display.
4433    Closes: #744148
4434  * assistant: Fix high CPU usage triggered when a monthly fsck is scheduled,
4435    and the last time the job ran was a day of the month > 12. This caused a
4436    runaway loop. Thanks to Anarcat for his assistance, and to Maximiliano
4437    Curia for identifying the cause of this bug.
4438  * Remove wget from OSX dmg, due to issues with cert paths that broke
4439    git-annex automatic upgrading. Instead, curl is used, unless the
4440    OSX system has wget installed, which will then be used.
4441
4442 -- Joey Hess <joeyh@debian.org>  Fri, 11 Apr 2014 14:59:49 -0400
4443
4444git-annex (5.20140405) unstable; urgency=medium
4445
4446  * git-annex-shell: Added notifychanges command.
4447  * Improve display of dbus notifications. Thanks, Johan Kiviniemi.
4448  * Fix nautilus script installation to not crash when the nautilus script dir
4449    does not exist. Instead, only install scripts when the directory already
4450    exists.
4451
4452 -- Joey Hess <joeyh@debian.org>  Sat, 05 Apr 2014 16:54:33 -0400
4453
4454git-annex (5.20140402) unstable; urgency=medium
4455
4456  * unannex, uninit: Avoid committing after every file is unannexed,
4457    for massive speedup.
4458  * --notify-finish switch will cause desktop notifications after each
4459    file upload/download/drop completes
4460    (using the dbus Desktop Notifications Specification)
4461  * --notify-start switch will show desktop notifications when each
4462    file upload/download starts.
4463  * webapp: Automatically install Nautilus integration scripts
4464    to get and drop files.
4465  * tahoe: Pass -d parameter before subcommand; putting it after
4466    the subcommand no longer works with tahoe-lafs version 1.10.
4467    (Thanks, Alberto Berti)
4468  * forget --drop-dead: Avoid removing the dead remote from the trust.log,
4469    so that if git remotes for it still exist anywhere, git annex info
4470    will still know it's dead and not show it.
4471  * git-annex-shell: Make configlist automatically initialize
4472    a remote git repository, as long as a git-annex branch has
4473    been pushed to it, to simplify setup of remote git repositories,
4474    including via gitolite.
4475  * add --include-dotfiles: New option, perhaps useful for backups.
4476  * Version 5.20140227 broke creation of glacier repositories,
4477    not including the datacenter and vault in their configuration.
4478    This bug is fixed, but glacier repositories set up with the broken
4479    version of git-annex need to have the datacenter and vault set
4480    in order to be usable. This can be done using git annex enableremote
4481    to add the missing settings. For details, see
4482    http://git-annex.branchable.com/bugs/problems_with_glacier/
4483  * Added required content configuration.
4484  * assistant: Improve ssh authorized keys line generated in local pairing
4485    or for a remote ssh server to set environment variables in an
4486    alternative way that works with the non-POSIX fish shell, as well
4487    as POSIX shells.
4488
4489 -- Joey Hess <joeyh@debian.org>  Wed, 02 Apr 2014 16:42:53 -0400
4490
4491git-annex (5.20140320) unstable; urgency=medium
4492
4493  * Fix zombie leak and general inneficiency when copying files to a
4494    local git repo.
4495  * Fix ssh connection caching stop method to work with openssh 6.5p1,
4496    which broke the old method.
4497  * webapp: Added a "Sync now" item to each repository's menu.
4498  * webapp: Use securemem for constant time auth token comparisons.
4499  * copy --fast --to remote: Avoid printing anything for files that
4500    are already believed to be present on the remote.
4501  * Commands that allow specifying which repository to act on using
4502    the repository's description will now fail when multiple repositories
4503    match, rather than picking a repository at random.
4504    (So will --in=)
4505  * Better workaround for problem umasks when eg, setting up ssh keys.
4506  * "standard" can now be used as a first-class keyword in preferred content
4507    expressions. For example "standard or (include=otherdir/*)"
4508  * groupwanted can be used in preferred content expressions.
4509  * vicfg: Allows editing preferred content expressions for groups.
4510  * Improve behavior when unable to parse a preferred content expression
4511    (thanks, ion).
4512  * metadata: Add --get
4513  * metadata: Support --key option (and some other ones like --all)
4514  * For each metadata field, there's now an automatically maintained
4515    "$field-lastchanged" that gives the date of the last change to that
4516    field. Also the "lastchanged" field for the date of the last change
4517    to any of a file's metadata.
4518  * unused: In direct mode, files that are deleted from the work tree
4519    and so have no content present are no longer incorrectly detected as
4520    unused.
4521  * Avoid encoding errors when using the unused log file.
4522  * map: Fix crash when one of the remotes of a repo is a local directory
4523    that does not exist, or is not a git repo.
4524  * repair: Improve memory usage when git fsck finds a great many broken
4525    objects.
4526  * Windows: Fix some filename encoding bugs.
4527  * rsync special remote: Fix slashes when used on Windows.
4528
4529 -- Joey Hess <joeyh@debian.org>  Thu, 20 Mar 2014 13:21:12 -0400
4530
4531git-annex (5.20140306) unstable; urgency=high
4532
4533  * sync: Fix bug in direct mode that caused a file that was not
4534    checked into git to be deleted when there was a conflicting
4535    merge with a remote.
4536  * webapp: Now supports HTTPS.
4537  * webapp: No longer supports a port specified after --listen, since
4538    it was buggy, and that use case is better supported by setting up HTTPS.
4539  * annex.listen can be configured, instead of using --listen
4540  * annex.startupscan can be set to false to disable the assistant's startup
4541    scan.
4542  * Probe for quvi version at run time.
4543  * webapp: Filter out from Switch Repository list any
4544    repositories listed in autostart file that don't have a
4545    git directory anymore. (Or are bare)
4546  * webapp: Refuse to start in a bare git repository.
4547  * assistant --autostart: Refuse to start in a bare git repository.
4548  * webapp: Don't list the public repository group when editing a
4549    git repository; it only makes sense for special remotes.
4550  * view, vfilter: Add support for filtering tags and values out of a view,
4551    using !tag and field!=value.
4552  * vadd: Allow listing multiple desired values for a field.
4553  * view: Refuse to enter a view when no branch is currently checked out.
4554  * metadata: To only set a field when it's not already got a value, use
4555    -s field?=value
4556  * Run .git/hooks/pre-commit-annex whenever a commit is made.
4557  * sync: Automatically resolve merge conflict between and annexed file
4558    and a regular git file.
4559  * glacier: Pass --region to glacier checkpresent.
4560  * webdav: When built with a new enough haskell DAV (0.6), disable
4561    the http response timeout, which was only 5 seconds.
4562  * webapp: Include no-pty in ssh authorized_keys lines.
4563  * assistant: Smarter log file rotation, which takes free disk space
4564    into account.
4565
4566 -- Joey Hess <joeyh@debian.org>  Thu, 06 Mar 2014 12:28:04 -0400
4567
4568git-annex (5.20140227) unstable; urgency=medium
4569
4570  * metadata: Field names limited to alphanumerics and a few whitelisted
4571    punctuation characters to avoid issues with views, etc.
4572  * metadata: Field names are now case insensative.
4573  * When constructing views, metadata is available about the location of the
4574    file in the view's reference branch. Allows incorporating parts of the
4575    directory hierarchy in a view.
4576    For example `git annex view tag=* podcasts/=*` makes a view in the form
4577    tag/showname.
4578  * --metadata field=value can now use globs to match, and matches
4579    case insensatively, the same as git annex view field=value does.
4580  * annex.genmetadata can be set to make git-annex automatically set
4581    metadata (year and month) when adding files.
4582  * Make annex.web-options be used in several places that call curl.
4583  * Fix handling of rsync remote urls containing a username,
4584    including rsync.net.
4585  * Preserve metadata when staging a new version of an annexed file.
4586  * metadata: Support --json
4587  * webapp: Fix creation of box.com and Amazon S3 and Glacier
4588    repositories, broken in 5.20140221.
4589  * webdav: When built with DAV 0.6.0, use the new DAV monad to avoid
4590    locking files, which is not needed by git-annex's use of webdav, and
4591    does not work on Box.com.
4592  * webdav: Fix path separator bug when used on Windows.
4593  * repair: Optimise unpacking of pack files, and avoid repeated error
4594    messages about corrupt pack files.
4595  * Add build dep on regex-compat to fix build on mipsel, which lacks
4596    regex-tdfa.
4597  * Disable test suite on sparc, which is missing optparse-applicative.
4598  * Put non-object tmp files in .git/annex/misctmp, leaving .git/annex/tmp
4599    for only partially transferred objects.
4600
4601 -- Joey Hess <joeyh@debian.org>  Thu, 27 Feb 2014 11:34:19 -0400
4602
4603git-annex (5.20140221) unstable; urgency=medium
4604
4605  * metadata: New command that can attach metadata to files.
4606  * --metadata can be used to limit commands to acting on files
4607    that have particular metadata.
4608  * Preferred content expressions can use metadata=field=value
4609    to limit them to acting on files that have particular metadata.
4610  * view: New command that creates and checks out a branch that provides
4611    a structured view of selected metadata.
4612  * vfilter, vadd, vpop, vcycle: New commands for operating within views.
4613  * pre-commit: Update metadata when committing changes to locations
4614    of annexed files within a view.
4615  * Add progress display for transfers to/from external special remotes.
4616  * unused: Fix to actually detect unused keys when in direct mode.
4617  * fsck: When run with --all or --unused, while .gitattributes
4618    annex.numcopies cannot be honored since it's operating on keys
4619    instead of files, make it honor the global numcopies setting,
4620    and the annex.numcopies git config setting.
4621  * trust, untrust, semitrust, dead: Warn when the trust level is
4622    overridden in .git/config.
4623  * glacier: Do not try to run glacier value create when an existing glacier
4624    remote is enabled.
4625  * fsck: Refuse to do anything if more than one of --incremental, --more,
4626    and --incremental-schedule are given, since it's not clear which option
4627    should win.
4628  * Windows webapp: Can set up box.com, Amazon S3, and rsync.net remotes
4629  * Windows webapp: Can create repos on removable drives.
4630  * Windows: Ensure HOME is set, as needed by bundled cygwin utilities.
4631
4632 -- Joey Hess <joeyh@debian.org>  Fri, 21 Feb 2014 11:23:59 -0400
4633
4634git-annex (5.20140210) unstable; urgency=medium
4635
4636  * --in can now refer to files that were located in a repository at
4637    some past date. For example, --in="here@{yesterday}"
4638  * Fixed direct mode annexed content locking code, which is used to
4639    guard against recursive file drops.
4640  * This is the first beta-level release of the Windows port with important
4641    fixes (see below).
4642    (The webapp and assistant are still alpha-level on Windows.)
4643  * sync --content: Honor annex-ignore configuration.
4644  * sync: Don't try to sync with xmpp remotes, which are only currently
4645    supported when using the assistant.
4646  * sync --content: Re-pull from remotes after downloading content,
4647    since that can take a while and other changes may be pushed in the
4648    meantime.
4649  * sync --content: Reuse smart copy code from copy command, including
4650    handling and repairing out of date location tracking info.
4651    Closes: #737480
4652  * sync --content: Drop files from remotes that don't want them after
4653    getting them.
4654  * sync: Fix bug in automatic merge conflict resolution code when used
4655    on a filesystem not supporting symlinks, which resulted in it losing
4656    track of the symlink bit of annexed files.
4657  * Added ways to configure rsync options to be used only when uploading
4658    or downloading from a remote. Useful to eg limit upload bandwidth.
4659  * Fix initremote with encryption=pubkey to work with S3, glacier, webdav,
4660    and external special remotes.
4661  * Avoid building with DAV 0.6 which is badly broken (see #737902).
4662  * Fix dropping of unused keys with spaces in their name.
4663  * Fix build on platforms not supporting the webapp.
4664  * Document in man page that sshcaching uses ssh ControlMaster.
4665    Closes: #737476
4666  * Windows: It's now safe to run multiple git-annex processes concurrently
4667    on Windows; the lock files have been sorted out.
4668  * Windows: Avoid using unix-compat's rename, which refuses to rename
4669    directories.
4670  * Windows: Fix deletion of repositories by test suite and webapp.
4671  * Windows: Test suite 100% passes again.
4672  * Windows: Fix bug in symlink calculation code.
4673  * Windows: Fix handling of absolute unix-style git repository paths.
4674  * Android: Avoid crashing when unable to set file mode for ssh config file
4675    due to Android filesystem horribleness.
4676
4677 -- Joey Hess <joeyh@debian.org>  Mon, 10 Feb 2014 12:54:57 -0400
4678
4679git-annex (5.20140127) unstable; urgency=medium
4680
4681  * sync --content: New option that makes the content of annexed files be
4682    transferred. Similar to the assistant, this honors any configured
4683    preferred content expressions.
4684  * Remove --json option from commands not supporting it.
4685  * status: Support --json.
4686  * list: Fix specifying of files to list.
4687  * Allow --all to be mixed with matching options like --copies and --in
4688    (but not --include and --exclude).
4689  * numcopies: New command, sets global numcopies value that is seen by all
4690    clones of a repository.
4691  * The annex.numcopies git config setting is deprecated. Once the numcopies
4692    command is used to set the global number of copies, any annex.numcopies
4693    git configs will be ignored.
4694  * assistant: Make the prefs page set the global numcopies.
4695  * Add lackingcopies, approxlackingcopies, and unused to
4696    preferred content expressions.
4697  * Client, transfer, incremental backup, and archive repositories
4698    now want to get content that does not yet have enough copies.
4699  * Client, transfer, and source repositories now do not want to retain
4700    unused file contents.
4701  * assistant: Checks daily for unused file contents, and when possible
4702    moves them to a repository (such as a backup repository) that
4703    wants to retain them.
4704  * assistant: annex.expireunused can be configured to cause unused
4705    file contents to be deleted after some period of time.
4706  * webapp: Nudge user to see if they want to expire old unused file
4707    contents when a lot of them seem to be piling up in the repository.
4708  * repair: Check git version at run time.
4709  * assistant: Run the periodic git gc in batch mode.
4710  * added annex.secure-erase-command config option.
4711  * test suite: Use tasty-rerun, and expose tasty command-line options.
4712  * Optimise non-bare http remotes; no longer does a 404 to the wrong
4713    url every time before trying the right url. Needs annex-bare to be
4714    set to false, which is done when initially probing the uuid of a
4715    http remote.
4716  * webapp: After upgrading a git repository to git-annex, fix
4717    bug that made it temporarily not be synced with.
4718  * whereis: Support --all.
4719  * All commands that support --all also support a --key option,
4720    which limits them to acting on a single key.
4721
4722 -- Joey Hess <joeyh@debian.org>  Mon, 27 Jan 2014 13:43:28 -0400
4723
4724git-annex (5.20140117) unstable; urgency=medium
4725
4726  * Really fix FTBFS on mipsel and sparc due to test suite not being available
4727    on those architectures.
4728
4729 -- Joey Hess <joeyh@debian.org>  Fri, 17 Jan 2014 14:46:27 -0400
4730
4731git-annex (5.20140116) unstable; urgency=medium
4732
4733  * Added tahoe special remote.
4734  * external special remote protocol: Added GETGITDIR, and GETAVAILABILITY.
4735  * Refuse to build with git older than 1.7.1.1, which is needed for
4736    git checkout -B
4737  * map: Fix display of v5 direct mode repos.
4738  * repair: Support old git versions from before git fsck --no-dangling was
4739    implemented.
4740  * Fix a long-standing bug that could cause the wrong index file to be used
4741    when committing to the git-annex branch, if GIT_INDEX_FILE is set in the
4742    environment. This typically resulted in git-annex branch log files being
4743    committed to the master branch and later showing up in the work tree.
4744    (These log files can be safely removed.)
4745  * assistant: Detect if .git/annex/index is corrupt at startup, and
4746    recover.
4747  * repair: Fix bug in packed refs file exploding code that caused a .gitrefs
4748    directory to be created instead of .git/refs
4749  * Fix FTBFS on mipsel and sparc due to test suite not being available
4750    on those architectures.
4751  * Android: Avoid passing --clobber to busybox wget.
4752
4753 -- Joey Hess <joeyh@debian.org>  Thu, 16 Jan 2014 11:34:54 -0400
4754
4755git-annex (5.20140107) unstable; urgency=medium
4756
4757  * mirror: Support --all (and --unused).
4758  * external special remote protocol: Added GETUUID, GETWANTED, SETWANTED,
4759    SETSTATE, GETSTATE, DEBUG.
4760  * Windows: Fix bug in direct mode merge code that could cause files
4761    in subdirectories to go missing.
4762  * Windows: Avoid eating stdin when running ssh to add a authorized key,
4763    since this is used for password prompting.
4764  * Avoid looping if long-running git cat-file or git hash-object crashes
4765    and keeps crashing when restarted.
4766  * Assistant: Remove stale MERGE_HEAD files in lockfile cleanup.
4767  * Remotes can now be made read-only, by setting remote.<name>.annex-readonly
4768  * wanted, schedule: Avoid printing "ok" after requested value.
4769  * assistant: Ensure that .ssh/config and .ssh/authorized_keys are not
4770    group or world writable when writing to those files, as that can make
4771    ssh refuse to use them, if it allows another user to write to them.
4772  * addurl, importfeed: Honor annex.diskreserve as long as the size of the
4773    url can be checked.
4774  * add: Fix rollback when disk is completely full.
4775  * assistant: Fixed several minor memory leaks that manifested when
4776    adding a large number of files.
4777  * assistant: Start a new git-annex transferkeys process
4778    after a network connection change, so that remotes that use a persistent
4779    network connection are restarted.
4780  * Adjust Debian build deps to match current state of sparc, mipsel.
4781
4782 -- Joey Hess <joeyh@debian.org>  Tue, 07 Jan 2014 12:22:18 -0400
4783
4784git-annex (5.20131230) unstable; urgency=medium
4785
4786  * Added new external special remote interface.
4787  * importfeed: Support youtube playlists.
4788  * Add tasty to build-depends, so that test suite builds again.
4789    (tasty was stuck in incoming.)
4790  * Fix typo in test suite.
4791  * Fix bug in Linux standalone build's shimming that broke git-annex-shell.
4792  * Include git-receive-pack, git-upload-pack, git, and git-shell wrappers
4793    in the Linux standalone build, and OSX app, so they will be available
4794    when it's added to PATH.
4795  * addurl, importfeed: Sanitize | and some other symbols and special
4796    characters.
4797  * Auto-upgrade v3 indirect repos to v5 with no changes.
4798    This also fixes a problem when a direct mode repo was somehow set to v3
4799    rather than v4, and so the automatic direct mode upgrade to v5 was not
4800    done.
4801  * Android: Avoid trying to use Android's own ionice, which does not
4802    allow specifying a command to run. Fixes transferring files to/from
4803    android and probably a few other things.
4804
4805 -- Joey Hess <joeyh@debian.org>  Mon, 30 Dec 2013 14:13:40 -0400
4806
4807git-annex (5.20131221) unstable; urgency=low
4808
4809  * assistant: Fix OSX-specific bug that caused the startup scan to try to
4810    follow symlinks to other directories, and add their contents to the annex.
4811  * assistant: Set StrictHostKeyChecking yes when creating ssh remotes,
4812    and add it to the configuration for any ssh remotes previously created
4813    by the assistant. This avoids repeated prompts by ssh if the host key
4814    changes, instead syncing with such a remote will fail. Closes: #732602
4815  * Fix test suite to cover lock --force change.
4816  * Add plumbing-level lookupkey and examinekey commands.
4817  * find --format: Added hashdirlower, hashdirmixed, keyname, and mtime
4818    format variables.
4819  * assistant: Always batch changes found in startup scan.
4820  * An armel Linux standalone build is now available, which includes the
4821    webapp.
4822  * Programs from Linux and OSX standalone builds can now be symlinked
4823    into a directory in PATH as an alternative installation method, and will
4824    use readlink to find where the build was unpacked.
4825  * Include man pages in Linux and OSX standalone builds.
4826  * Linux standalone build now includes its own glibc and forces the linker to
4827    use it, to remove dependence on the host glibc.
4828
4829 -- Joey Hess <joeyh@debian.org>  Sat, 21 Dec 2013 12:00:17 -0400
4830
4831git-annex (5.20131213) unstable; urgency=low
4832
4833  * Avoid using git commit in direct mode, since in some situations
4834    it will read the full contents of files in the tree.
4835  * assistant: Batch jobs are now run with ionice and nocache, when
4836    those commands are available.
4837  * assistant: Run transferkeys as batch jobs.
4838  * Automatically fix up bad bare repositories created by
4839    versions 5.20131118 through 5.20131127.
4840  * rsync special remote: Fix fallback mode for rsync remotes that
4841    use hashDirMixed. Closes: #731142
4842  * copy --from, get --from: When --force is used, ignore the
4843    location log and always try to get the file from the remote.
4844  * Deal with box.com changing the url of their webdav endpoint.
4845  * Android: Fix SRV record lookups for XMPP to use android getprop
4846    command to find DNS server, since there is no resolv.conf.
4847  * import: Add --skip-duplicates option.
4848  * lock: Require --force. Closes: #731606
4849  * import: better handling of overwriting an existing file/directory/broken
4850    link when importing
4851  * Windows: assistant and webapp work! (very experimental)
4852  * Windows: Support annex.diskreserve.
4853  * Fix bad behavior in Firefox, which was caused by an earlier fix to
4854    bad behavior in Chromium.
4855  * repair: Improve repair of git-annex index file.
4856  * repair: Remove damaged git-annex sync branches.
4857  * status: Ignore new files that are gitignored.
4858  * Fix direct mode's handling when modifications to non-annexed files
4859    are pulled from a remote. A bug prevented the files from being updated
4860    in the work tree, and this caused the modification to be reverted.
4861  * OSX: Remove ssh and ssh-keygen from dmg as they're included in OSX by
4862    default.
4863
4864 -- Joey Hess <joeyh@debian.org>  Fri, 13 Dec 2013 14:20:32 -0400
4865
4866git-annex (5.20131130) unstable; urgency=low
4867
4868  * init: Fix a bug that caused git annex init, when run in a bare
4869    repository, to set core.bare=false.
4870
4871 -- Joey Hess <joeyh@debian.org>  Sat, 30 Nov 2013 16:32:35 -0400
4872
4873git-annex (5.20131127.1) unstable; urgency=low
4874
4875  * Rebuild that does not try to use quvi 0.9 from experimental.
4876
4877 -- Joey Hess <joeyh@debian.org>  Thu, 28 Nov 2013 07:57:36 -0400
4878
4879git-annex (5.20131127) unstable; urgency=low
4880
4881  * webapp: Detect when upgrades are available, and upgrade if the user
4882    desires.
4883    (Only when git-annex is installed using the prebuilt binaries
4884    from git-annex upstream, not from eg Debian.)
4885  * assistant: Detect when the git-annex binary is modified or replaced,
4886    and either prompt the user to restart the program, or automatically
4887    restart it.
4888  * annex.autoupgrade configures both the above upgrade behaviors.
4889  * Added support for quvi 0.9. Slightly suboptimal due to limitations in its
4890    interface compared with the old version.
4891  * Bug fix: annex.version did not get set on automatic upgrade to v5 direct
4892    mode repo, so the upgrade was performed repeatedly, slowing commands down.
4893  * webapp: Fix bug that broke switching between local repositories
4894    that use the new guarded direct mode.
4895  * Android: Fix stripping of the git-annex binary.
4896  * Android: Make terminal app show git-annex version number.
4897  * Android: Re-enable XMPP support.
4898  * reinject: Allow to be used in direct mode.
4899  * Futher improvements to git repo repair. Has now been tested in tens
4900    of thousands of intentionally damaged repos, and successfully
4901    repaired them all.
4902  * Allow use of --unused in bare repository.
4903
4904 -- Joey Hess <joeyh@debian.org>  Wed, 27 Nov 2013 18:41:44 -0400
4905
4906git-annex (5.20131120) unstable; urgency=low
4907
4908  * Fix Debian package to not try to run test suite, since haskell-tasty
4909    is not out of new or in Build-Depends yet.
4910  * dropunused, addunused: Allow "all" instead of a range to
4911    act on all unused data.
4912  * Ensure execute bit is set on directories when core.sharedrepository is set.
4913  * Ensure that core.sharedrepository is honored when creating the .git/annex
4914    directory.
4915  * Improve repair code in the case where the index file is corrupt,
4916    and this hides other problems from git fsck.
4917
4918 -- Joey Hess <joeyh@debian.org>  Wed, 20 Nov 2013 12:54:18 -0400
4919
4920git-annex (5.20131118) unstable; urgency=low
4921
4922  * Direct mode repositories now have core.bare=true set, to prevent
4923    accidentally running git commands that try to operate on the work tree,
4924    and so do the wrong thing in direct mode.
4925  * annex.version is now set to 5 for direct mode repositories.
4926    This upgrade is handled fully automatically, no need to run
4927    git annex upgrade
4928  * The "status" command has been renamed to "info", to allow
4929    "git annex status" to be used in direct mode repositories, now that
4930    "git status" won't work in them.
4931  * The -c option now not only modifies the git configuration seen by
4932    git-annex, but it is passed along to every git command git-annex runs.
4933  * watcher: Avoid loop when adding a file owned by someone else fails
4934    in indirect mode because its permissions cannot be modified.
4935  * webapp: Avoid encoding problems when displaying the daemon log file.
4936  * webapp: Improve UI around remote that have no annex.uuid set,
4937    either because setup of them is incomplete, or because the remote
4938    git repository is not a git-annex repository.
4939  * Include ssh-keygen in standalone bundle.
4940  * Allow optionally configuring git-annex with -fEKG to enable awesome
4941    remote monitoring interfaceat http://localhost:4242/
4942  * Fix bug that caused bad information to be written to the git-annex branch
4943    when running describe or other commands with a remote that has no uuid.
4944  * Work around Android linker problem that had prevented git-annex from
4945    running on Android 4.3 and 4.4.
4946  * repair: Handle case where index file is corrupt, but all objects are ok.
4947  * assistant: Notice on startup when the index file is corrupt, and
4948    auto-repair.
4949  * Fix direct mode merge bug when a direct mode file was deleted and replaced
4950    with a directory. An ordering problem caused the directory to not get
4951    created in this case.
4952    Thanks to Tim for the test case.
4953  * Direct mode .git/annex/objects directories are no longer left writable,
4954    because that allowed writing to symlinks of files that are not present,
4955    which followed the link and put bad content in an object location.
4956    Thanks to Tim for the test case.
4957  * fsck: Fix up .git/annex/object directory permissions.
4958  * Switched to the tasty test framework.
4959  * Android: Adjust default .gitignore to ignore .thumbnails at any location
4960    in the tree, not just at its top.
4961  * webapp: Check annex.version.
4962
4963 -- Joey Hess <joeyh@debian.org>  Mon, 18 Nov 2013 10:45:43 -0400
4964
4965git-annex (4.20131106) unstable; urgency=low
4966
4967  * Improve local pairing behavior when two computers both try to start
4968    the pairing process separately.
4969  * sync: Work even when the local git repository is new and empty,
4970    with no master branch.
4971  * gcrypt, bup: Fix bug that prevented using these special remotes
4972    with encryption=pubkey.
4973  * Fix enabling of gcrypt repository accessed over ssh;
4974    git-annex-shell gcryptsetup had a bug that caused it to fail
4975    with permission denied.
4976  * Fix zombie process that occurred when switching between repository
4977    views in the webapp.
4978  * map: Work when there are gcrypt remotes.
4979  * Fix build w/o webapp.
4980  * Fix exception handling bug that could cause .git/annex/index to be used
4981    for git commits outside the git-annex branch. Known to affect git-annex
4982    when used with the git shipped with Ubuntu 13.10.
4983
4984 -- Joey Hess <joeyh@debian.org>  Wed, 06 Nov 2013 11:17:47 -0400
4985
4986git-annex (4.20131101) unstable; urgency=low
4987
4988  * The "git annex content" command is renamed to "git annex wanted".
4989  * New --want-get and --want-drop options which can be used to
4990    test preferred content settings.
4991    For example, "git annex find --in . --want-drop"
4992  * assistant: When autostarted, wait 5 seconds before running the startup
4993    scan, to avoid contending with the user's desktop login process.
4994  * webapp: When setting up a bare shared repository, enable non-fast-forward
4995    pushes.
4996  * sync: Show a hint about receive.denyNonFastForwards when a push fails.
4997  * directory, webdav: Fix bug introduced in version 4.20131002 that
4998    caused the chunkcount file to not be written. Work around repositories
4999    without such a file, so files can still be retreived from them.
5000  * assistant: Automatically repair damanged git repository, if it can
5001    be done without losing data.
5002  * assistant: Support repairing git remotes that are locally accessible
5003    (eg, on removable drives).
5004  * add: Fix reversion in 4.20130827 when adding unlocked files that have
5005    not yet been committed.
5006  * unannex: New, much slower, but more safe behavior: Copies files out of
5007    the annex. This avoids an unannex of one file breaking other files that
5008    link to the same content. Also, it means that the content
5009    remains in the annex using up space until cleaned up with
5010    "git annex unused".
5011    (The behavior of unannex --fast has not changed; it still hard links
5012    to content in the annex. --fast was not made the default because it is
5013    potentially unsafe; editing such a hard linked file can unexpectedly
5014    change content stored in the annex.)
5015
5016 -- Joey Hess <joeyh@debian.org>  Fri, 01 Nov 2013 11:34:27 -0400
5017
5018git-annex (4.20131024) unstable; urgency=low
5019
5020  * webapp: Fix bug when adding a remote and git-remote-gcrypt
5021    is not installed.
5022  * The assitant can now run scheduled incremental fsck jobs on the local
5023    repository and remotes. These can be configured using vicfg or with the
5024    webapp.
5025  * repair: New command, which can repair damaged git repositories
5026    (even ones not using git-annex).
5027  * webapp: When git repository damange is detected, repairs can be
5028    done using the webapp UI.
5029  * Automatically and safely detect and recover from dangling
5030    .git/annex/index.lock files, which would prevent git from
5031    committing to the git-annex branch, eg after a crash.
5032  * assistant: Detect stale git lock files at startup time, and remove them.
5033  * addurl: Better sanitization of generated filenames.
5034  * Better sanitization of problem characters when generating URL and WORM
5035    keys.
5036  * The control socket path passed to ssh needs to be 17 characters
5037    shorter than the maximum unix domain socket length, because ssh
5038    appends stuff to it to make a temporary filename. Closes: #725512
5039  * status: Fix space leak in local mode, introduced in version 4.20130920.
5040  * import: Skip .git directories.
5041  * Remove bogus runshell loop check.
5042  * addurl: Improve message when adding url with wrong size to existing file.
5043  * Fixed handling of URL keys that have no recorded size.
5044  * status: Fix a crash if a temp file went away while its size was
5045    being checked for status.
5046  * Deal with git check-attr -z output format change in git 1.8.5.
5047  * Work around sed output difference that led to version containing a newline
5048    on OSX.
5049  * sync: Fix automatic resolution of merge conflicts where one side is an
5050    annexed file, and the other side is a non-annexed file, or a directory.
5051  * S3: Try to ensure bucket name is valid for archive.org.
5052  * assistant: Bug fix: When run in a subdirectory, files from incoming merges
5053    were wrongly added to that subdirectory, and removed from their original
5054    locations.
5055  * Windows: Deal with strange msysgit 1.8.4 behavior of not understanding
5056    DOS formatted paths for --git-dir and --work-tree.
5057  * Removed workaround for bug in git 1.8.4r0.
5058  * Added git-recover-repository command to git-annex source
5059    (not built by default; this needs to move to someplace else).
5060  * webapp: Move sidebar to the right hand side of the screen.
5061
5062 -- Joey Hess <joeyh@debian.org>  Thu, 24 Oct 2013 12:59:55 -0400
5063
5064git-annex (4.20131002) unstable; urgency=low
5065
5066  * Note that the layout of gcrypt repositories has changed, and
5067    if you created one you must manually upgrade it.
5068    See http://git-annex.branchable.com/upgrades/gcrypt/
5069  * webapp: Support setting up and using encrypted git repositories on
5070    any ssh server, as well as on rsync.net.
5071  * git-annex-shell: Added support for operating inside gcrypt repositories.
5072  * Disable receive.denyNonFastForwards when setting up a gcrypt special
5073    remote, since gcrypt needs to be able to fast-forward the master branch.
5074  * import: Preserve top-level directory structure.
5075  * Use cryptohash rather than SHA for hashing when no external hash program
5076    is available. This is a significant speedup for SHA256 on OSX, for
5077    example.
5078  * Added SKEIN256 and SKEIN512 backends.
5079  * Android build redone from scratch, many dependencies updated,
5080    and entire build can now be done using provided scripts.
5081  * assistant: Clear the list of failed transfers when doing a full transfer
5082    scan. This prevents repeated retries to download files that are not
5083    available, or are not referenced by the current git tree.
5084  * indirect, direct: Better behavior when a file is not owned by
5085    the user running the conversion.
5086  * add, import, assistant: Better preserve the mtime of symlinks,
5087    when when adding content that gets deduplicated.
5088  * Send a git-annex user-agent when downloading urls.
5089    Overridable with --user-agent option.
5090    (Not yet done for S3 or WebDAV due to limitations of libraries used.)
5091  * webapp: Fixed a bug where when a new remote is added, one file
5092    may fail to sync to or from it due to the transferrer process not
5093    yet knowing about the new remote.
5094  * OSX: Bundled gpg upgraded, now compatible with config files
5095    written by MacGPG.
5096  * assistant: More robust inotify handling; avoid crashing if a directory
5097    cannot be read.
5098  * Moved list of backends and remote types from status to version
5099    command.
5100
5101 -- Joey Hess <joeyh@debian.org>  Wed, 02 Oct 2013 16:00:39 -0400
5102
5103git-annex (4.20130920) unstable; urgency=low
5104
5105  * webapp: Initial support for setting up encrypted removable drives.
5106  * Recommend using my patched gcrypt, which fixes some bugs:
5107    https://github.com/joeyh/git-remote-gcrypt
5108  * Support hot-swapping of removable drives containing gcrypt repositories.
5109  * list: New command, displays a compact table of remotes that
5110    contain files.
5111    (Thanks, anarcat for display code and mastensg for inspiration.)
5112  * fsck: Fix detection and fixing of present direct mode files that are
5113    wrongly represented as standin symlinks on crippled filesystems.
5114  * sync: Fix bug that caused direct mode mappings to not be updated
5115    when merging files into the tree on Windows.
5116  * sync: Don't fail if the directory it is run in gets removed by the
5117    sync.
5118  * addurl: Fix quvi audodetection, broken in last release.
5119  * status: In local mode, displays information about variance from configured
5120    numcopies levels. (--fast avoids calculating these)
5121  * gcrypt: Ensure that signing key is set to one of the participants keys.
5122  * webapp: Show encryption information when editing a remote.
5123  * Avoid unnecessarily catting non-symlink files from git, which can be
5124    so large it runs out of memory.
5125
5126 -- Joey Hess <joeyh@debian.org>  Fri, 20 Sep 2013 10:34:51 -0400
5127
5128git-annex (4.20130911) unstable; urgency=low
5129
5130  * Fix problem with test suite in non-unicode locale.
5131
5132 -- Joey Hess <joeyh@debian.org>  Wed, 11 Sep 2013 12:14:16 -0400
5133
5134git-annex (4.20130909) unstable; urgency=low
5135
5136  * initremote: Syntax change when setting up an encrypted special remote.
5137    Now use keyid=$KEYID rather than the old encryption=$KEYID
5138  * forget: New command, causes git-annex branch history to be forgotten
5139    in a way that will spread to other clones of the repository.
5140    (As long as they're running this version or newer of git-annex.)
5141  * forget --drop-dead: Completely removes mentions of repositories that
5142    have been marked as dead from the git-annex branch.
5143  * sync, assistant: Force push of the git-annex branch. Necessary
5144    to ensure it gets pushed to remotes after being rewritten by forget.
5145  * Added gcrypt support. This combines a fully encrypted git
5146    repository (using git-remote-gcrypt) with an encrypted git-annex special
5147    remote.
5148  * sync: Support syncing with gcrypt remotes.
5149  * importfeed: Also ignore transient problems with downloading content
5150    from feeds.
5151  * Honor core.sharedrepository when receiving and adding files in direct
5152    mode.
5153  * enableremote: gpg keys can be removed from those a remote encrypts
5154    to by passing "keyid-=$KEYID". keyid+= is also provided.
5155    (Thanks, guilhem for the patch.)
5156  * Added encryption=pubkey scheme, which encrypts to public keys directly
5157    rather than the hybrid approach. See documentation for advantages
5158    and disadvantages, but encryption=hybrid is the recommended scheme still.
5159    (Thanks, guilhem for the patch.)
5160  * Fix Feeds display in build flags.
5161  * Remind user when annex-ignore is set for some remotes, if unable to
5162    get or drop a file, possibly because it's on an ignored remote.
5163  * gpg: Force --no-textmode in case the user has it turned on in config.
5164  * webapp: Improve javascript's handling of longpolling connection
5165    failures, by reloading the current page in this case.
5166    Works around chromium behavior where ajax connections to urls
5167    that were already accessed are denied after navigating back to
5168    a previous page.
5169  * Allow building without quvi support.
5170
5171 -- Joey Hess <joeyh@debian.org>  Mon, 09 Sep 2013 09:47:02 -0400
5172
5173git-annex (4.20130827) unstable; urgency=low
5174
5175  * Youtube support! (And 53 other video hosts). When quvi is installed,
5176    git-annex addurl automatically uses it to detect when an page is
5177    a video, and downloads the video file.
5178  * web special remote: Also support using quvi, for getting files,
5179    or checking if files exist in the web.
5180  * unused: Is now a minimum of 30 times faster, and typically many
5181    more times than that (when a repository has several branches).
5182    (Thanks, guilhem for the patch.)
5183  * unused: Fix bugs in two edge cases involving manually staged changes.
5184    (Thanks, guilhem for the patch.)
5185  * Android: Fix bug in terminal app that caused it to spin using much
5186    CPU and battery. This problem was introduced in version 4.20130601.
5187  * sync, merge: Bug fix: Don't try to merge into master when in a bare repo.
5188  * import: Add options to control handling of duplicate files:
5189    --duplicate, --deduplicate, and --clean-duplicates
5190  * mirror: New command, makes two repositories contain the same set of files.
5191  * Set --clobber when running wget to ensure resuming works properly.
5192  * Unescape characters in 'file://...' URIs. (Thanks, guilhem for the patch.)
5193  * Better error message when trying to use a git remote that has annex.ignore
5194    set.
5195  * Fix bug that caused typechanged symlinks to be assumed to be unlocked
5196    files, so they were added to the annex by the pre-commit hook.
5197  * Debian: Run the builtin test suite as an autopkgtest.
5198  * Debian: Recommend ssh-askpass, which ssh will use when the assistant
5199    is run w/o a tty. Closes: #719832
5200
5201 -- Joey Hess <joeyh@debian.org>  Tue, 27 Aug 2013 11:03:00 -0400
5202
5203git-annex (4.20130815) unstable; urgency=low
5204
5205  * assistant, watcher: .gitignore files and other git ignores are now
5206    honored, when git 1.8.4 or newer is installed.
5207    (Thanks, Adam Spiers, for getting the necessary support into git for this.)
5208  * importfeed: Ignores transient problems with feeds. Only exits nonzero
5209    when a feed has repeatedly had a problems for at least 1 day.
5210  * importfeed: Fix handling of dots in extensions.
5211  * Windows: Added support for encrypted special remotes.
5212  * Windows: Fixed permissions problem that prevented removing files
5213    from directory special remote. Directory special remotes now fully usable.
5214
5215 -- Joey Hess <joeyh@debian.org>  Thu, 15 Aug 2013 10:14:33 +0200
5216
5217git-annex (4.20130802) unstable; urgency=low
5218
5219  * dropunused behavior change: Now refuses to drop the last copy of a
5220    file, unless you use the --force.
5221    This was the last place in git-annex that could remove data referred
5222    to by the git history, without being forced.
5223    Like drop, dropunused checks remotes, and honors the global
5224    annex.numcopies setting. (However, .gitattributes settings cannot
5225    apply to unused files.)
5226  * Fix inverted logic in last release's fix for data loss bug,
5227    that caused git-annex sync on FAT or other crippled filesystems to add
5228    symlink standin files to the annex.
5229  * importfeed can be used to import files from podcast feeds.
5230  * webapp: When setting up a dedicated ssh key to access the annex
5231    on a host, set IdentitiesOnly to prevent the ssh-agent from forcing
5232    use of a different ssh key. That could result in unncessary password
5233    prompts, or prevent git-annex-shell from being run on the remote host.
5234  * webapp: Improve handling of remotes whose setup has stalled.
5235  * Add status message to XMPP presence tag, to identify to others that
5236    the client is a git-annex client. Closes: #717652
5237  * webapp: When creating a repository on a removable drive, set
5238    core.fsyncobjectfiles, to help prevent data loss when the drive is yanked.
5239  * Always build with -threaded, to avoid a deadlock when communicating with
5240    gpg.
5241  * unused: No longer shows as unused tmp files that are actively being
5242    transferred.
5243  * assistant: Fix NetWatcher to not sync with remotes that have
5244    remote.<name>.annex-sync set to false.
5245  * assistant: Fix deadlock that could occur when adding a lot of files
5246    at once in indirect mode.
5247  * assistant: Fix bug that caused it to stall when adding a very large
5248    number of files at once (around 5 thousand).
5249  * OSX: Make git-annex-webapp run in the background, so that the app icon
5250    can be clicked on the open a new webapp when the assistant is already
5251    running.
5252  * Improve test suite on Windows; now tests git annex sync.
5253  * Fix a few bugs involving filenames that are at or near the filesystem's
5254    maximum filename length limit.
5255  * find: Avoid polluting stdout with progress messages. Closes: #718186
5256  * Escape ':' in file/directory names to avoid it being treated
5257    as a pathspec by some git commands. Closes: #718185
5258  * Slow and ugly work around for bug #718517 in git 1.8.4~rc0, which broke
5259    git-cat-file --batch for filenames containing spaces.
5260    (Will be reverted after next git pre-release fixes the problem.)
5261
5262 -- Joey Hess <joeyh@debian.org>  Fri, 02 Aug 2013 11:35:16 -0400
5263
5264git-annex (4.20130723) unstable; urgency=low
5265
5266  * Fix data loss bug when adding an (uncompressed) tarball of a
5267    git-annex repository, or other file that begins with something
5268    that can be mistaken for a git-annex link. Closes: #717456
5269  * New improved version of the git-annex logo, contributed by
5270    John Lawrence.
5271  * Rsync.net have committed to support git-annex and offer a special
5272    discounted rate for git-annex users. Updated the webapp to reflect this.
5273    http://www.rsync.net/products/git-annex-pricing.html
5274  * Install XDG desktop icon files.
5275  * Support unannex and uninit in direct mode.
5276  * Support import in direct mode.
5277  * webapp: Better display of added files.
5278  * fix: Preserve the original mtime of fixed symlinks.
5279  * uninit: Preserve .git/annex/objects at the end, if it still
5280    has content, so that old versions of files and deleted files
5281    are not deleted. Print a message with some suggested actions.
5282  * When a transfer is already being run by another process,
5283    proceed on to the next file, rather than dying.
5284  * Fix checking when content is present in a non-bare repository
5285    accessed via http.
5286  * Display byte sizes with more precision.
5287  * watcher: Fixed a crash that could occur when a directory was renamed
5288    or deleted before it could be scanned.
5289  * watcher: Partially worked around a bug in hinotify, no longer crashes
5290    if hinotify cannot process a directory (but can't detect changes in it)
5291  * directory special remote: Fix checking that there is enough disk space
5292    to hold an object, was broken when using encryption.
5293  * webapp: Differentiate between creating a new S3/Glacier/WebDav remote,
5294    and initializing an existing remote. When creating a new remote, avoid
5295    conflicts with other existing (or deleted) remotes with the same name.
5296  * When an XMPP server has SRV records, try them, but don't then fall
5297    back to the regular host if they all fail.
5298  * For long hostnames, use a hash of the hostname to generate the socket
5299    file for ssh connection caching.
5300
5301 -- Joey Hess <joeyh@debian.org>  Tue, 23 Jul 2013 10:46:05 -0400
5302
5303git-annex (4.20130709) unstable; urgency=low
5304
5305  * --all: New switch that makes git-annex operate on all data stored
5306    in the git annex, including old versions of files. Supported by
5307    fsck, get, move, copy.
5308  * --unused: New switch that makes git-annex operate on all data found
5309    by the last run of git annex unused. Supported by fsck, move, copy.
5310  * get, move, copy: Can now be run in a bare repository,
5311    like fsck already could. --all is enabled automatically in this case.
5312  * merge: Now also merges synced/master or similar branches, which
5313    makes it useful to put in a post-receive hook to make a repository
5314    automatically update its working copy when git annex sync or the assistant
5315    sync with it.
5316  * webapp: Fix ssh setup with nonstandard port, broken in last release.
5317  * init: Detect systems on which git commit fails due to not being able to
5318    determine the FQDN, and put in a workaround so committing to the git-annex
5319    branch works.
5320  * addurl --pathdepth: Fix failure when the pathdepth specified is deeper
5321    than the urls's path.
5322  * Windows: Look for .exe extension when searching for a command in path.
5323  * Pass -f to curl when downloading a file with it, so it propigates failure.
5324  * Windows: Fix url to object when using a http remote.
5325  * webapp: Fix authorized_keys line added when setting up a rsync remote
5326    on a server that also supports git-annex, to not force running
5327    git-annex-shell.
5328  * OSX Mountain Lion: Fixed gpg bundled in dmg to not fail due to a missing
5329    gpg-agent.
5330  * Android: gpg is built without --enable-minimal, so it interoperates
5331    better with other gpg builds that may default to using other algorithms
5332    for encryption.
5333  * dropunused, addunused: Complain when asked to operate on a number that
5334    does not correspond to any unused key.
5335  * fsck: Don't claim to fix direct mode when run on a symlink whose content
5336    is not present.
5337  * Make --numcopies override annex.numcopies set in .gitattributes.
5338
5339 -- Joey Hess <joeyh@debian.org>  Tue, 09 Jul 2013 13:55:39 -0400
5340
5341git-annex (4.20130627) unstable; urgency=low
5342
5343  * assistant --autostart: Automatically ionices the daemons it starts.
5344  * assistant: Daily sanity check thread is run niced.
5345  * bup: Handle /~/ in bup remote paths.
5346    Thanks, Oliver Matthews
5347  * fsck: Ensures that direct mode is used for files when it's enabled.
5348  * webapp: Fix bug when setting up a remote ssh repo repeatedly on the same
5349    server.
5350  * webapp: Ensure that ssh keys generated for different directories
5351    on a server are always different.
5352  * webapp: Fix bug setting up ssh repo if the user enters "~/" at the start
5353    of the path.
5354  * assistant: Fix bug that prevented adding files written by gnucash,
5355    and more generally support adding hard links to files. However,
5356    other operations on hard links are still unsupported.
5357  * webapp: Fix bug that caused the webapp to hang when built with yesod 1.2.
5358
5359 -- Joey Hess <joeyh@debian.org>  Thu, 27 Jun 2013 14:21:55 -0400
5360
5361git-annex (4.20130621) unstable; urgency=low
5362
5363  * Supports indirect mode on encfs in paranoia mode, and other
5364    filesystems that do not support hard links, but do support
5365    symlinks and other POSIX filesystem features.
5366  * Android: Add .thumbnails to .gitignore when setting up a camera
5367    repository.
5368  * Android: Make the "Open webapp" menu item open the just created
5369    repository when a new repo is made.
5370  * webapp: When the user switches to display a different repository,
5371    that repository becomes the default repository to be displayed next time
5372    the webapp gets started.
5373  * glacier: Better handling of the glacier inventory, which avoids
5374    duplicate uploads to the same glacier repository by `git annex copy`.
5375  * Direct mode: No longer temporarily remove write permission bit of files
5376    when adding them.
5377  * sync: Better support for bare git remotes. Now pushes directly to the
5378    master branch on such a remote, instead of to synced/master. This
5379    makes it easier to clone from a bare git remote that has been populated
5380    with git annex sync or by the assistant.
5381  * Android: Fix use of cp command to not try to use features present
5382    only on build system.
5383  * Windows: Fix hang when adding several files at once.
5384  * assistant: In direct mode, objects are now only dropped when all
5385    associated files are unwanted. This avoids a repreated drop/get loop
5386    of a file that has a copy in an archive directory, and a copy not in an
5387    archive directory. (Indirect mode still has some buggy behavior in this
5388    area, since it does not keep track of associated files.)
5389    Closes: #712060
5390  * status: No longer shows dead repositories.
5391  * annex.debug can now be set to enable debug logging by default.
5392    The webapp's debugging check box does this.
5393  * fsck: Avoid getting confused by Windows path separators
5394  * Windows: Multiple bug fixes, including fixing the data written to the
5395    git-annex branch.
5396  * Windows: The test suite now passes on Windows (a few broken parts are
5397    disabled).
5398  * assistant: On Linux, the expensive transfer scan is run niced.
5399  * Enable assistant and WebDAV support on powerpc and sparc architectures,
5400    which now have the necessary dependencies built.
5401
5402 -- Joey Hess <joeyh@debian.org>  Fri, 21 Jun 2013 10:18:41 -0400
5403
5404git-annex (4.20130601) unstable; urgency=medium
5405
5406  * XMPP: Git push over xmpp made much more robust.
5407  * XMPP: Avoid redundant and unncessary pushes. Note that this breaks
5408    compatibility with previous versions of git-annex, which will refuse
5409    to accept any XMPP pushes from this version.
5410  * XMPP: Send pings and use them to detect when contact with the server
5411    is lost.
5412  * hook special remote: Added combined hook program support.
5413  * Android app: Avoid using hard links to app's lib directory, which
5414    is sometimes on a different filesystem than the data directory.
5415  * Fix bug in parsing of parens in some preferred content expressions.
5416    This fixes the behavior of the manual mode group.
5417  * assistant: Work around git-cat-file's not reloading the index after files
5418    are staged.
5419  * Improve error handling when getting uuid of http remotes to auto-ignore,
5420    like with ssh remotes.
5421  * content: New command line way to view and configure a repository's
5422    preferred content settings.
5423  * sync: Fix double merge conflict resolution handling.
5424  * XMPP: Fix a file descriptor leak.
5425  * Android: Added an "Open WebApp" item to the terminal's menu.
5426  * Android: Work around Android devices where the `am` command doesn't work.
5427  * Can now restart certain long-running git processes if they crash, and
5428    continue working.
5429
5430 -- Joey Hess <joeyh@debian.org>  Sat, 01 Jun 2013 19:16:04 -0400
5431
5432git-annex (4.20130521) unstable; urgency=low
5433
5434  * Sanitize debian changelog version before putting it into cabal file.
5435    Closes: #708619
5436  * Switch to MonadCatchIO-transformers for better handling of state while
5437    catching exceptions.
5438  * Fix a zombie that could result when running a process like gpg to
5439    read and write to it.
5440  * Allow building with gpg2.
5441  * Disable building with the haskell threaded runtime when the webapp
5442    is not built. This may fix builds on mips, s390x and sparc, which are
5443    failing to link -lHSrts_thr
5444  * Temporarily build without webapp on kfreebsd-i386, until yesod is
5445    installable there again.
5446  * Direct mode bug fix: After a conflicted merge was automatically resolved,
5447    the content of a file that was already present could incorrectly
5448    be replaced with a symlink.
5449  * Fix a bug in the git-annex branch handling code that could
5450    cause info from a remote to not be merged and take effect immediately.
5451  * Direct mode is now fully tested by the test suite.
5452  * Detect bad content in ~/.config/git-annex/program and look in PATH instead.
5453  * OSX: Fixed gpg included in dmg.
5454  * Linux standalone: Back to being built with glibc 2.13 for maximum
5455    portability.
5456
5457 -- Joey Hess <joeyh@debian.org>  Tue, 21 May 2013 13:10:26 -0400
5458
5459git-annex (4.20130516) unstable; urgency=low
5460
5461  * Android: The webapp is ported and working.
5462  * Windows: There is a very rough Windows port. Do not trust it with
5463    important data.
5464  * git-annex-shell: Ensure that received files can be read. Files
5465    transferred from some Android devices may have very broken permissions
5466    as received.
5467  * direct mode: Direct mode commands now work on files staged in the index,
5468    they do not need to be committed to git.
5469  * Temporarily add an upper bound to the version of yesod that can be built
5470    with, since yesod 1.2 has a great many changes that will require extensive
5471    work on the webapp.
5472  * Disable building with the haskell threaded runtime when the assistant
5473    is not built. This may fix builds on s390x and sparc, which are failing
5474    to link -lHSrts_thr
5475  * Avoid depending on regex-tdfa on mips, mipsel, and s390, where it fails
5476    to build.
5477  * direct: Fix a bug that could cause some files to be left in indirect mode.
5478  * When initializing a directory special remote with a relative path,
5479    the path is made absolute.
5480  * SHA: Add a runtime sanity check that sha commands output something
5481    that appears to be a real sha.
5482  * configure: Better checking that sha commands output in the desired format.
5483  * rsync special remotes: When sending from a crippled filesystem, use
5484    the destination's default file permissions, as the local ones can
5485    be arbitrarily broken. (Ie, ----rwxr-x for files on Android)
5486  * migrate: Detect if a file gets corrupted while it's being migrated.
5487  * Debian: Add a menu file.
5488
5489 -- Joey Hess <joeyh@debian.org>  Thu, 16 May 2013 11:03:35 -0400
5490
5491git-annex (4.20130501) unstable; urgency=low
5492
5493  * sync, assistant: Behavior changes: Sync with remotes that have
5494    annex-ignore set, so that git remotes on servers without git-annex
5495    installed can be used to keep clients' git repos in sync.
5496  * assistant: Work around misfeature in git 1.8.2 that makes
5497    `git commit --alow-empty -m ""` run an editor.
5498  * sync: Bug fix, avoid adding to the annex the
5499    dummy symlinks used on crippled filesystems.
5500  * Add public repository group.
5501    (And inpreferreddir to preferred content expressions.)
5502  * webapp: Can now set up Internet Archive repositories.
5503  * S3: Dropping content from the Internet Archive doesn't work, but
5504    their API indicates it does. Always refuse to drop from there.
5505  * Automatically register public urls for files uploaded to the
5506    Internet Archive.
5507  * To enable an existing special remote, the new enableremote command
5508    must be used. The initremote command now is used only to create
5509    new special remotes.
5510  * initremote: If two existing remotes have the same name,
5511    prefer the one with a higher trust level.
5512  * assistant: Improved XMPP protocol to better support multiple repositories
5513    using the same XMPP account. Fixes bad behavior when sharing with a friend
5514    when you or the friend have multiple reposotories on an XMPP account.
5515    Note that XMPP pairing with your own devices still pairs with all
5516    repositories using your XMPP account.
5517  * assistant: Fix bug that could cause incoming pushes to not get
5518    merged into the local tree. Particularly affected XMPP pushes.
5519  * webapp: Display some additional information about a repository on
5520    its edit page.
5521  * webapp: Install FDO desktop menu file when started in standalone mode.
5522  * webapp: Don't default to making repository in cwd when started
5523    from within a directory containing a git-annex file (eg, standalone
5524    tarball directory).
5525  * Detect systems that have no user name set in GECOS, and also
5526    don't have user.name set in git config, and put in a workaround
5527    so that commits to the git-annex branch (and the assistant)
5528    will still succeed despite git not liking the system configuration.
5529  * webapp: When told to add a git repository on a remote server, and
5530    the repository already exists as a non-bare repository, use it,
5531    rather than initializing a bare repository in the same directory.
5532  * direct, indirect: Refuse to do anything when the assistant
5533    or git-annex watch daemon is running.
5534  * assistant: When built with git before 1.8.0, use `git remote rm`
5535    to delete a remote. Newer git uses `git remote remove`.
5536  * rmurl: New command, removes one of the recorded urls for a file.
5537  * Detect when the remote is broken like bitbucket is, and exits 0 when
5538    it fails to run git-annex-shell.
5539  * assistant: Several improvements to performance and behavior when
5540    performing bulk adds of a large number of files (tens to hundreds
5541    of thousands).
5542  * assistant: Sanitize XMPP presence information logged for debugging.
5543  * webapp: Now automatically fills in any creds used by an existing remote
5544    when creating a new remote of the same type. Done for Internet Archive,
5545    S3, Glacier, and Box.com remotes.
5546  * Store an annex-uuid file in the bucket when setting up a new S3 remote.
5547  * Support building with DAV 0.4.
5548
5549 -- Joey Hess <joeyh@debian.org>  Wed, 01 May 2013 01:42:46 -0400
5550
5551git-annex (4.20130417) unstable; urgency=low
5552
5553  * initremote: Generates encryption keys with high quality entropy.
5554    This can be disabled using --fast to get the old behavior.
5555    The assistant still uses low-quality entropy when creating encrypted
5556    remotes, to avoid delays. (Thanks, guilhem for the patch.)
5557  * Bugfix: Direct mode no longer repeatedly checksums duplicated files.
5558  * assistant: Work around horrible, terrible, very bad behavior of
5559    gnome-keyring, by not storing special-purpose ssh keys in ~/.ssh/*.pub.
5560    Apparently gnome-keyring apparently will load and indiscriminately use
5561    such keys in some cases, even if they are not using any of the standard
5562    ssh key names. Instead store the keys in ~/.ssh/annex/,
5563    which gnome-keyring will not check.
5564  * addurl: Bugfix: Did not properly add file in direct mode.
5565  * assistant: Bug fix to avoid annexing the files that git uses
5566    to stand in for symlinks on FAT and other filesystem not supporting
5567    symlinks.
5568  * Adjust preferred content expressions so that content in archive
5569    directories is preferred until it has reached an archive or smallarchive
5570    repository.
5571  * webapp: New --listen= option allows running the webapp on one computer
5572    and connecting to it from another. (Note: Does not yet use HTTPS.)
5573  * Added annex.web-download-command setting.
5574  * Added per-remote annex-rsync-transport option. (guilhem again)
5575  * Ssh connection caching is now also used by rsync special remotes.
5576    (guilhem yet again)
5577  * The version number is now derived from git, unless built with
5578    VERSION_FROM_CHANGELOG.
5579  * assistant: Stop any transfers the assistant initiated on shutdown.
5580  * assistant: Added sequence numbers to XMPP git push packets. (Not yet used.)
5581  * addurl: Register transfer so the webapp can see it.
5582  * addurl: Automatically retry downloads that fail, as long as some
5583    additional content was downloaded.
5584  * webapp: Much improved progress bar display for downloads from encrypted
5585    remotes.
5586  * Avoid using runghc, as that needs ghci.
5587  * webapp: When a repository's group is changed, rescan for transfers.
5588  * webapp: Added animations.
5589  * webapp: Include the repository directory in the mangled hostname and
5590    ssh key name, so that a locked down ssh key for one repository is not
5591    re-used when setting up additional repositories on the same server.
5592  * Fall back to internal url downloader when built without curl.
5593  * fsck: Check content of direct mode files (only when the inode cache
5594    thinks they are unmodified).
5595
5596 -- Joey Hess <joeyh@debian.org>  Wed, 17 Apr 2013 09:07:38 -0400
5597
5598git-annex (4.20130405) unstable; urgency=low
5599
5600  * Group subcommands into sections in usage. Closes: #703797
5601  * Per-command usage messages.
5602  * webapp: Fix a race that sometimes caused alerts or other notifications
5603    to be missed if they occurred while a page was loading.
5604  * webapp: Progess bar fixes for many types of special remotes.
5605  * Build debian package without using cabal, which writes to HOME.
5606    Closes: #704205
5607  * webapp: Run ssh server probes in a way that will work when the
5608    login shell is a monstrosity that should have died 25 years ago,
5609    such as csh.
5610  * New annex.largefiles setting, which configures which files
5611    `git annex add` and the assistant add to the annex.
5612  * assistant: Check small files into git directly.
5613  * Remotes can be configured to use other MAC algorithms than HMACSHA1
5614    to encrypt filenames.
5615    Thanks, guilhem for the patch.
5616  * git-annex-shell: Passes rsync --bwlimit options on rsync.
5617    Thanks, guilhem for the patch.
5618  * webapp: Added UI to delete repositories. Closes: #689847
5619  * Adjust built-in preferred content expressions to make most types
5620    of repositories want content that is only located on untrusted, dead,
5621    and unwanted repositories.
5622  * drop --auto: Fix bug that prevented dropping files from untrusted
5623    repositories.
5624  * assistant: Fix bug that could cause direct mode files to be unstaged
5625    from git.
5626  * Update working tree files fully atomically.
5627  * webapp: Improved transfer queue management.
5628  * init: Probe whether the filesystem supports fifos, and if not,
5629    disable ssh connection caching.
5630  * Use lower case hash directories for storing files on crippled filesystems,
5631    same as is already done for bare repositories.
5632
5633 -- Joey Hess <joeyh@debian.org>  Fri, 05 Apr 2013 10:42:18 -0400
5634
5635git-annex (4.20130323) unstable; urgency=low
5636
5637  * webapp: Repository list is now included in the dashboard, and other
5638    UI tweaks.
5639  * webapp: Improved UI for pairing your own devices together using XMPP.
5640  * webapp: Display an alert when there are XMPP remotes, and a cloud
5641    transfer repository needs to be configured.
5642  * Add incrementalbackup repository group.
5643  * webapp: Encourage user to install git-annex on a server when adding
5644    a ssh server, rather than just funneling them through to rsync.
5645  * xmpp: --debug now enables a sanitized dump of the XMPP protocol
5646  * xmpp: Try harder to detect presence of clients when there's a git push
5647    to send.
5648  * xmpp: Re-enable XA flag, since disabling it did not turn out to help
5649    with the problems Google Talk has with not always sending presence
5650    messages to clients.
5651  * map: Combine duplicate repositories, for a nicer looking map.
5652  * Fix several bugs caused by a bad Ord instance for Remote.
5653  * webapp: Switch all forms to POST.
5654  * assistant: Avoid syncing with annex-ignored remotes when reconnecting
5655    to the network, or connecting a drive.
5656  * assistant: Fix OSX bug that prevented committing changed files to a
5657    repository when in indirect mode.
5658  * webapp: Improved alerts displayed when syncing with remotes, and
5659    when syncing with a remote fails.
5660  * webapp: Force wrap long filenames in transfer display.
5661  * assistant: The ConfigMonitor left one zombie behind each time
5662    it checked for changes, now fixed.
5663  * get, copy, move: Display an error message when an identical transfer
5664    is already in progress, rather than failing with no indication why.
5665  * assistant: Several optimisations to file transfers.
5666  * OSX app and standalone Linux tarball now both support being added to
5667    PATH; no need to use runshell to start git-annex.
5668  * webapp: When adding a removable drive, you can now specify the
5669    directory inside it to use.
5670  * webapp: Confirm whether user wants to combine repositories when
5671    adding a removable drive that already has a repository on it.
5672
5673 -- Joey Hess <joeyh@debian.org>  Fri, 22 Mar 2013 18:54:05 -0400
5674
5675git-annex (4.20130314) unstable; urgency=low
5676
5677  * Bugfix: git annex add, when ran without any file or directory specified,
5678    should add files in the current directory, but not act on unlocked files
5679    elsewhere in the tree.
5680  * Bugfix: drop --from an unavailable remote no longer updates the location
5681    log, incorrectly, to say the remote does not have the key.
5682  * Bugfix: If the UUID of a remote is not known, prevent --from, --to,
5683    and other ways of specifying remotes by name from selecting it,
5684    since it is not possible to sanely use it.
5685  * Bugfix: Fix bug in inode cache sentinal check, which broke
5686    copying to local repos if the repo being copied from had moved
5687    to a different filesystem or otherwise changed all its inodes
5688
5689  * Switch from using regex-compat to regex-tdfa, as the C regex library
5690    is rather buggy.
5691  * status: Can now be run with a directory path to show only the
5692    status of that directory, rather than the whole annex.
5693  * Added remote.<name>.annex-gnupg-options setting.
5694    Thanks, guilhem for the patch.
5695  * addurl: Add --relaxed option.
5696  * addurl: Escape invalid characters in urls, rather than failing to
5697    use an invalid url.
5698  * addurl: Properly handle url-escaped characters in file:// urls.
5699
5700  * assistant: Fix dropping content when a file is moved to an archive
5701    directory, and getting contennt when a file is moved back out.
5702  * assistant: Fix bug in direct mode that could occur when a symlink is
5703    moved out of an archive directory, and resulted in the file not being
5704    set to direct mode when it was transferred.
5705  * assistant: Generate better commits for renames.
5706  * assistant: Logs are rotated to avoid them using too much disk space.
5707  * assistant: Avoid noise in logs from git commit about typechanged
5708    files in direct mode repositories.
5709  * assistant: Set gc.auto=0 when creating repositories to prevent
5710    automatic commits from causing git-gc runs.
5711  * assistant: If gc.auto=0, run git-gc once a day, packing loose objects
5712    very non-aggressively.
5713  * assistant: XMPP git pull and push requests are cached and sent when
5714    presence of a new client is detected.
5715  * assistant: Sync with all git remotes on startup.
5716  * assistant: Get back in sync with XMPP remotes after network reconnection,
5717    and on startup.
5718  * assistant: Fix syncing after XMPP pairing.
5719  * assistant: Optimised handling of renamed files in direct mode,
5720    avoiding re-checksumming.
5721  * assistant: Detects most renames, including directory renames, and
5722    combines all their changes into a single commit.
5723  * assistant: Fix ~/.ssh/git-annex-shell wrapper to work when the
5724    ssh key does not force a command.
5725  * assistant: Be smarter about avoiding unncessary transfers.
5726
5727  * webapp: Work around bug in Warp's slowloris attack prevention code,
5728    that caused regular browsers to stall when they reuse a connection
5729    after leaving it idle for 30 seconds.
5730    (See https://github.com/yesodweb/wai/issues/146)
5731  * webapp: New preferences page allows enabling/disabling debug logging
5732    at runtime, as well as configuring numcopies and diskreserve.
5733  * webapp: Repository costs can be configured by dragging repositories around
5734    in the repository list.
5735  * webapp: Proceed automatically on from "Configure jabber account"
5736    to pairing.
5737  * webapp: Only show up to 10 queued transfers.
5738  * webapp: DTRT when told to create a git repo that already exists.
5739  * webapp: Set locally paired repositories to a lower cost than other
5740    network remotes.
5741
5742  * Run ssh with -T to avoid tty allocation and any login scripts that
5743    may do undesired things with it.
5744  * Several improvements to Makefile and cabal file. Thanks, Peter Simmons
5745  * Stop depending on testpack.
5746  * Android: Enable test suite.
5747
5748 -- Joey Hess <joeyh@debian.org>  Thu, 14 Mar 2013 15:29:20 -0400
5749
5750git-annex (4.20130227) unstable; urgency=low
5751
5752  * annex.version is now set to 4 for direct mode repositories.
5753  * Should now fully support git repositories with core.symlinks=false;
5754    always using git's pseudosymlink files in such repositories.
5755  * webapp: Allow creating repositories on filesystems that lack support for
5756    symlinks.
5757  * webapp: Can now add a new local repository, and make it sync with
5758    the main local repository.
5759  * Android: Bundle now includes openssh.
5760  * Android: Support ssh connection caching.
5761  * Android: Assistant is fully working. (But no webapp yet.)
5762  * Direct mode: Support filesystems like FAT which can change their inodes
5763    each time they are mounted.
5764  * Direct mode: Fix support for adding a modified file.
5765  * Avoid passing -p to rsync, to interoperate with crippled filesystems.
5766    Closes: #700282
5767  * Additional GIT_DIR support bugfixes. May actually work now.
5768  * webapp: Display any error message from git init if it fails to create
5769    a repository.
5770  * Fix a reversion in matching globs introduced in the last release,
5771    where "*" did not match files inside subdirectories. No longer uses
5772    the Glob library.
5773  * copy: Update location log when no copy was performed, if the location
5774    log was out of date.
5775  * Makefile now builds using cabal, taking advantage of cabal's automatic
5776    detection of appropriate build flags.
5777  * test: The test suite is now built into the git-annex binary, and can
5778    be run at any time.
5779
5780 -- Joey Hess <joeyh@debian.org>  Wed, 27 Feb 2013 14:07:24 -0400
5781
5782git-annex (3.20130216) unstable; urgency=low
5783
5784  * Now uses the Haskell uuid library, rather than needing a uuid program.
5785  * Now uses the Haskell Glob library, rather than pcre-light, avoiding
5786    the need to install libpcre. Currently done only for Cabal or when
5787    the Makefile is made to use -DWITH_GLOB
5788  * Android port now available (command-line only).
5789  * New annex.crippledfilesystem setting, allows use of git-annex
5790    repositories on FAT and even worse filesystems; avoiding use of
5791    hard links and locked down permissions settings. (Support is incomplete.)
5792  * init: Detect when the repository is on a filesystem that does not
5793    support hard links, or symlinks, or unix permissions, and set
5794    annex.crippledfilesystem, as well as annex.direct.
5795  * add: Improved detection of files that are modified while being added.
5796  * Fix a bug in direct mode, introduced in the previous release, where
5797    if a file was dropped and then got back, it would be stored in indirect
5798    mode.
5799
5800 -- Joey Hess <joeyh@debian.org>  Sat, 16 Feb 2013 10:03:26 -0400
5801
5802git-annex (3.20130207) unstable; urgency=low
5803
5804  * webapp: Now allows restarting any threads that crash.
5805  * Adjust debian package to only build-depend on DAV on architectures
5806    where it is available.
5807  * addurl --fast: Use curl, rather than haskell HTTP library, to support https.
5808  * annex.autocommit: New setting, can be used to disable autocommit
5809    of changed files by the assistant, while it still does data syncing
5810    and other tasks.
5811  * assistant: Ignore .DS_Store on OSX.
5812  * assistant: Fix location log when adding new file in direct mode.
5813  * Deal with stale mappings for deleted file in direct mode.
5814  * pre-commit: Update direct mode mappings.
5815  * uninit, unannex --fast: If hard link creation fails, fall back to slow
5816    mode.
5817  * Clean up direct mode cache and mapping info when dropping keys.
5818  * dropunused: Clean up stale direct mode cache and mapping info not
5819    removed before.
5820
5821 -- Joey Hess <joeyh@debian.org>  Thu, 07 Feb 2013 12:45:25 -0400
5822
5823git-annex (3.20130124) unstable; urgency=low
5824
5825  * Added source repository group, that only retains files until they've
5826    been transferred to another repository. Useful for things like
5827    repositories on cameras.
5828  * Added manual repository group. Use to prevent the assistant from
5829    downloading any file contents to keep things in sync. Instead
5830    `git annex get`, `git annex drop` etc can be used manually as desired.
5831  * webapp: More adjustments to longpoll code to deal with changes in
5832    variable quoting in different versions of shakespeare-js.
5833  * webapp: Avoid an error if a transfer is stopped just as it finishes.
5834    Closes: #698184
5835  * webapp: Now always logs to .git/annex/daemon.log
5836  * webapp: Has a page to view the log, accessed from the control menu.
5837  * webapp: Fix crash adding removable drive that has an annex directory
5838    in it that is not a git repository.
5839  * Deal with incompatibility in gpg2, which caused prompts for encryption
5840    passphrases rather than using the supplied --passphrase-fd.
5841  * bugfix: Union merges involving two or more repositories could sometimes
5842    result in data from one repository getting lost. This could result
5843    in the location log data becoming wrong, and fsck being needed to fix it.
5844  * sync: Automatic merge conflict resolution now stages deleted files.
5845  * Depend on git 1.7.7.6 for --no-edit. Closes: #698399
5846  * Fix direct mode mapping code to always store direct mode filenames
5847    relative to the top of the repository, even when operating inside a
5848    subdirectory.
5849  * fsck: Detect and fix consistency errors in direct mode mapping files.
5850  * Avoid filename encoding errors when writing direct mode mappings.
5851
5852 -- Joey Hess <joeyh@debian.org>  Tue, 22 Jan 2013 07:11:59 +1100
5853
5854git-annex (3.20130114) unstable; urgency=low
5855
5856  * Now handles the case where a file that's being transferred to a remote
5857    is modified in place, which direct mode allows. When this
5858    happens, the transfer now fails, rather than allow possibly corrupt
5859    data into the remote.
5860  * fsck: Better checking of file content in direct mode.
5861  * drop: Suggest using git annex move when numcopies prevents dropping a file.
5862  * webapp: Repo switcher filters out repos that do not exist any more
5863    (or are on a drive that's not mounted).
5864  * webapp: Use IP address, rather than localhost, since some systems may
5865    have configuration problems or other issues that prevent web browsers
5866    from connecting to the right localhost IP for the webapp.
5867  * webapp: Adjust longpoll code to work with recent versions of
5868    shakespeare-js.
5869  * assistant: Support new gvfs dbus names used in Gnome 3.6.
5870  * In direct mode, files with the same key are no longer hardlinked, as
5871    that would cause a surprising behavior if modifying one, where the other
5872    would also change.
5873  * webapp: Avoid illegal characters in hostname when creating S3 or
5874    Glacier remote.
5875  * assistant: Avoid committer crashing if a file is deleted at the wrong
5876    instant.
5877
5878 -- Joey Hess <joeyh@debian.org>  Mon, 14 Jan 2013 15:25:18 -0400
5879
5880git-annex (3.20130107) unstable; urgency=low
5881
5882  * webapp: Add UI to stop and restart assistant.
5883  * committer: Fix a file handle leak.
5884  * assistant: Make expensive transfer scan work fully in direct mode.
5885  * More commands work in direct mode repositories: find, whereis, move, copy,
5886    drop, log, fsck, add, addurl.
5887  * sync: No longer automatically adds files in direct mode.
5888  * assistant: Detect when system is not configured with a user name,
5889    and set environment to prevent git from failing.
5890  * direct: Avoid hardlinking symlinks that point to the same content
5891    when the content is not present.
5892  * Fix transferring files to special remotes in direct mode.
5893
5894 -- Joey Hess <joeyh@debian.org>  Mon, 07 Jan 2013 01:01:41 -0400
5895
5896git-annex (3.20130102) unstable; urgency=low
5897
5898  * direct, indirect: New commands, that switch a repository to and from
5899    direct mode. In direct mode, files are accessed directly, rather than
5900    via symlinks. Note that direct mode is currently experimental. Many
5901    git-annex commands do not work in direct mode. Some git commands can
5902    cause data loss when used in direct mode repositories.
5903  * assistant: Now uses direct mode by default when setting up a new
5904    local repository.
5905  * OSX assistant: Uses the FSEvents API to detect file changes.
5906    This avoids issues with running out of file descriptors on large trees,
5907    as well as allowing detection of modification of files in direct mode.
5908    Other BSD systems still use kqueue.
5909  * kqueue: Fix bug that made broken symlinks not be noticed.
5910  * vicfg: Quote filename. Closes: #696193
5911  * Bugfix: Fixed bug parsing transfer info files, where the newline after
5912    the filename was included in it. This was generally benign, but in
5913    the assistant, it caused unexpected dropping of preferred content.
5914  * Bugfix: Remove leading \ from checksums output by sha*sum commands,
5915    when the filename contains \ or a newline. Closes: #696384
5916  * fsck: Still accept checksums with a leading \ as valid, now that
5917    above bug is fixed.
5918  * SHA*E backends: Exclude non-alphanumeric characters from extensions.
5919  * migrate: Remove leading \ in SHA* checksums, and non-alphanumerics
5920    from extensions of SHA*E keys.
5921
5922 -- Joey Hess <joeyh@debian.org>  Wed, 02 Jan 2013 13:21:34 -0400
5923
5924git-annex (3.20121211) unstable; urgency=low
5925
5926  * webapp: Defaults to sharing box.com account info with friends, allowing
5927    one-click enabling of the repository.
5928  * Fix broken .config/git-annex/program installed by standalone tarball.
5929  * assistant: Retrival from glacier now handled.
5930  * Include ssh in standalone tarball and OSX app.
5931  * watch: Avoid leaving hard links to files behind in .git/annex/tmp
5932    if a file is deleted or moved while it's being quarantined in preparation
5933    to being added to the annex.
5934  * Allow `git annex drop --from web`; of course this does not remove
5935    any file from the web, but it does make git-annex remove all urls
5936    associated with a file.
5937  * webapp: S3 and Glacier forms now have a select list of all
5938    currently-supported AWS regions.
5939  * webdav: Avoid trying to set props, avoiding incompatibility with
5940    livedrive.com. Needs DAV version 0.3.
5941  * webapp: Prettify error display.
5942  * webapp: Fix bad interaction between required fields and modals.
5943  * webapp: Added help buttons and links next to fields that require
5944    explanations.
5945  * webapp: Encryption can be disabled when setting up remotes.
5946  * assistant: Avoid trying to drop content from remotes that don't have it.
5947  * assistant: Allow periods in ssh key comments.
5948  * get/copy --auto: Transfer data even if it would exceed numcopies,
5949    when preferred content settings want it.
5950  * drop --auto: Fix dropping content when there are no preferred content
5951    settings.
5952  * webapp: Allow user to specify the port when setting up a ssh or rsync
5953    remote.
5954  * assistant: Fix syncing to just created ssh remotes.
5955  * Enable WebDAV support in Debian package. Closes: #695532
5956
5957 -- Joey Hess <joeyh@debian.org>  Tue, 11 Dec 2012 11:25:03 -0400
5958
5959git-annex (3.20121127) unstable; urgency=low
5960
5961  * Fix dirContentsRecursive, which had missed some files in deeply nested
5962    subdirectories. Could affect various parts of git-annex.
5963  * rsync: Fix bug introduced in last release that broke encrypted rsync
5964    special remotes.
5965  * The standalone builds now unset their special path and library path
5966    variables before running the system web browser.
5967
5968 -- Joey Hess <joeyh@debian.org>  Tue, 27 Nov 2012 17:07:32 -0400
5969
5970git-annex (3.20121126) unstable; urgency=low
5971
5972  * New webdav and Amazon glacier special remotes.
5973  * Display a warning when a non-existing file or directory is specified.
5974  * webapp: Added configurator for Box.com.
5975  * webapp: Show error messages to user when testing XMPP creds.
5976  * Fix build of assistant without yesod.
5977  * webapp: The list of repositiories refreshes when new repositories are
5978    added, including when new repository configurations are pushed in from
5979    remotes.
5980  * OSX: Fix RunAtLoad value in plist file.
5981  * Getting a file from chunked directory special remotes no longer buffers
5982    it all in memory.
5983  * S3: Added progress display for uploading and downloading.
5984  * directory special remote: Made more efficient and robust.
5985  * Bugfix: directory special remote could loop forever storing a key
5986    when a too small chunksize was configured.
5987  * Allow controlling whether login credentials for S3 and webdav are
5988    committed to the repository, by setting embedcreds=yes|no when running
5989    initremote.
5990  * Added smallarchive repository group, that only archives files that are
5991    in archive directories. Used by default for glacier when set up in the
5992    webapp.
5993  * assistant: Fixed handling of toplevel archive directory and
5994    client repository group.
5995  * assistant: Apply preferred content settings when a new symlink
5996    is created, or a symlink gets renamed. Made archive directories work.
5997
5998 -- Joey Hess <joeyh@debian.org>  Mon, 26 Nov 2012 11:37:49 -0400
5999
6000git-annex (3.20121112) unstable; urgency=low
6001
6002  * assistant: Can use XMPP to notify other nodes about pushes made to other
6003    repositories, as well as pushing to them directly over XMPP.
6004  * wepapp: Added an XMPP configuration interface.
6005  * webapp: Supports pairing over XMPP, with both friends, and other repos
6006    using the same account.
6007  * assistant: Drops non-preferred content when possible.
6008  * assistant: Notices, and applies config changes as they are made to
6009    the git-annex branch, including config changes pushed in from remotes.
6010  * git-annex-shell: GIT_ANNEX_SHELL_DIRECTORY can be set to limit it
6011    to operating on a specified directory.
6012  * webapp: When setting up authorized_keys, use GIT_ANNEX_SHELL_DIRECTORY.
6013  * Preferred content path matching bugfix.
6014  * Preferred content expressions cannot use "in=".
6015  * Preferred content expressions can use "present".
6016  * Fix handling of GIT_DIR when it refers to a git submodule.
6017  * Depend on and use the Haskell SafeSemaphore library, which provides
6018    exception-safe versions of SampleVar and QSemN.
6019    Thanks, Ben Gamari for an excellent patch set.
6020  * file:/// URLs can now be used with the web special remote.
6021  * webapp: Allow dashes in ssh key comments when pairing.
6022  * uninit: Check and abort if there are symlinks to annexed content that
6023    are not checked into git.
6024  * webapp: Switched to using the same multicast IP address that avahi uses.
6025  * bup: Don't pass - to bup-split to make it read stdin; bup 0.25
6026    does not accept that.
6027  * bugfix: Don't fail transferring content from read-only repos.
6028    Closes: #691341
6029  * configure: Check that checksum programs produce correct checksums.
6030  * Re-enable dbus, using a new version of the library that fixes the memory
6031    leak.
6032  * NetWatcher: When dbus connection is lost, try to reconnect.
6033  * Use USER and HOME environment when set, and only fall back to getpwent,
6034    which doesn't work with LDAP or NIS.
6035  * rsync special remote: Include annex-rsync-options when running rsync
6036    to test a key's presence.
6037  * The standalone tarball's runshell now takes care of installing a
6038    ~/.ssh/git-annex-shell wrapper the first time it's run.
6039  * webapp: Make an initial, empty commit so there is a master branch
6040  * assistant: Fix syncing local drives.
6041  * webapp: Fix creation of rsync.net repositories.
6042  * webapp: Fix renaming of special remotes.
6043  * webapp: Generate better git remote names.
6044  * webapp: Ensure that rsync special remotes are enabled using the same
6045    name they were originally created using.
6046  * Bugfix: Fix hang in webapp when setting up a ssh remote with an absolute
6047    path.
6048
6049 -- Joey Hess <joeyh@debian.org>  Mon, 12 Nov 2012 10:39:47 -0400
6050
6051git-annex (3.20121017) unstable; urgency=low
6052
6053  * Fix zombie cleanup reversion introduced in 3.20121009.
6054  * Additional fix to support git submodules.
6055
6056 -- Joey Hess <joeyh@debian.org>  Tue, 16 Oct 2012 21:10:14 -0400
6057
6058git-annex (3.20121016) unstable; urgency=low
6059
6060  * vicfg: New file format, avoids ambiguity with repos that have the same
6061    description, or no description.
6062  * Bug fix: A recent change caused git-annex-shell to crash.
6063  * Better preferred content expression for transfer repos.
6064  * webapp: Repository edit form can now edit the name of a repository.
6065  * webapp: Make bare repositories on removable drives, as there is nothing
6066    to ensure non-bare repos get updated when syncing.
6067  * webapp: Better behavior when pausing syncing to a remote when a transfer
6068    scan is running and queueing new transfers for that remote.
6069  * The standalone binaries are now built to not use ssh connection caching,
6070    in order to work with old versions of ssh.
6071  * A relative core.worktree is relative to the gitdir. Now that this is
6072    handled correctly, git-annex can be used in git submodules.
6073  * Temporarily disable use of dbus, as the haskell dbus library blows up
6074    when losing connection, which will need to be fixed upstream.
6075
6076 -- Joey Hess <joeyh@debian.org>  Tue, 16 Oct 2012 15:25:22 -0400
6077
6078git-annex (3.20121010) unstable; urgency=low
6079
6080  * Renamed --ingroup to --inallgroup.
6081  * Standard groups changed to client, transfer, archive, and backup.
6082    Each of these has its own standard preferred content setting.
6083  * dead: Remove dead repository from all groups.
6084  * Avoid unsetting HOME when running certian git commands. Closes: #690193
6085  * test: Fix threaded runtime hang.
6086  * Makefile: Avoid building with -threaded if the ghc threaded runtime does
6087    not exist.
6088  * webapp: Improve wording of intro display. Closes: #689848
6089  * webapp: Repositories can now be configured, to change their description,
6090    their group, or even to disable syncing to them.
6091  * git config remote.name.annex-sync can be used to control whether
6092    a remote gets synced.
6093  * Fix a crash when merging files in the git-annex branch that contain
6094    invalid utf8.
6095  * Automatically detect when a ssh remote does not have git-annex-shell
6096    installed, and set annex-ignore.
6097
6098 -- Joey Hess <joeyh@debian.org>  Fri, 12 Oct 2012 13:45:21 -0400
6099
6100git-annex (3.20121009) unstable; urgency=low
6101
6102  * watch, assistant: It's now safe to git annex unlock files while
6103    the watcher is running, as well as modify files checked into git
6104    as normal files. Additionally, .gitignore settings are now honored.
6105    Closes: #689979
6106  * group, ungroup: New commands to indicate groups of repositories.
6107  * webapp: Adds newly created repositories to one of these groups:
6108    clients, drives, servers
6109  * vicfg: New command, allows editing (or simply viewing) most
6110    of the repository configuration settings stored in the git-annex branch.
6111  * Added preferred content expressions, configurable using vicfg.
6112  * get --auto: If the local repository has preferred content
6113    configured, only get that content.
6114  * drop --auto: If the repository the content is dropped from has
6115    preferred content configured, drop only content that is not preferred.
6116  * copy --auto: Only transfer content that the destination repository prefers.
6117  * assistant: Now honors preferred content settings when deciding what to
6118    transfer.
6119  * --copies=group:number can now be used to match files that are present
6120    in a specified number of repositories in a group.
6121  * Added --smallerthan, --largerthan, and --inall limits.
6122  * Only build-depend on libghc-clientsession-dev on arches that will have
6123    the webapp.
6124  * uninit: Unset annex.version. Closes: #689852
6125
6126 -- Joey Hess <joeyh@debian.org>  Tue, 09 Oct 2012 15:13:23 -0400
6127
6128git-annex (3.20121001) unstable; urgency=low
6129
6130  * fsck: Now has an incremental mode. Start a new incremental fsck pass
6131    with git annex fsck --incremental. Now the fsck can be interrupted
6132    as desired, and resumed with git annex fsck --more.
6133    Thanks, Justin Azoff
6134  * New --time-limit option, makes long git-annex commands stop after
6135    a specified amount of time.
6136  * fsck: New --incremental-schedule option which is nice for scheduling
6137    eg, monthly incremental fsck runs in cron jobs.
6138  * Fix fallback to ~/Desktop when xdg-user-dir is not available.
6139    Closes: #688833
6140  * S3: When using a shared cipher, S3 credentials are not stored encrypted
6141    in the git repository, as that would allow anyone with access to
6142    the repository access to the S3 account. Instead, they're stored
6143    in a 600 mode file in the local git repo.
6144  * webapp: Avoid crashing when ssh-keygen -F chokes on an invalid known_hosts
6145    file.
6146  * Always do a system wide installation when DESTDIR is set. Closes: #689052
6147  * The Makefile now builds with the new yesod by default.
6148    Systems like Debian that have the old yesod 1.0.1 should set
6149    GIT_ANNEX_LOCAL_FEATURES=-DWITH_OLD_YESOD
6150  * copy: Avoid updating the location log when no copy is performed.
6151  * configure: Test that uuid -m works, falling back to plain uuid if not.
6152  * Avoid building the webapp on Debian architectures that do not yet
6153    have template haskell and thus yesod. (Should be available for arm soonish
6154    I hope).
6155
6156 -- Joey Hess <joeyh@debian.org>  Mon, 01 Oct 2012 13:56:55 -0400
6157
6158git-annex (3.20120924) unstable; urgency=low
6159
6160  * assistant: New command, a daemon which does everything watch does,
6161    as well as automatically syncing file contents between repositories.
6162  * webapp: An interface for managing and configuring the assistant.
6163  * The default backend used when adding files to the annex is changed
6164    from SHA256 to SHA256E, to simplify interoperability with OSX, media
6165    players, and various programs that needlessly look at symlink targets.
6166    To get old behavior, add a .gitattributes containing: * annex.backend=SHA256
6167  * init: If no description is provided for a new repository, one will
6168    automatically be generated, like "joey@gnu:~/foo"
6169  * test: Set a lot of git environment variables so testing works in strange
6170    environments that normally need git config to set names, etc.
6171    Closes: #682351 Thanks, gregor herrmann
6172  * Disable ssh connection caching if the path to the control socket would be
6173    too long (and use relative path to minimise path to the control socket).
6174  * migrate: Check content before generating the new key, to avoid generating
6175    a key for corrupt data.
6176  * Support repositories created with --separate-git-dir. Closes: #684405
6177  * reinject: When the provided file doesn't match, leave it where it is,
6178    rather than moving to .git/annex/bad/
6179  * Avoid crashing on encoding errors in filenames when writing transfer info
6180    files and reading from checksum commands.
6181  * sync: Pushes the git-annex branch to remote/synced/git-annex, rather
6182    than directly to remote/git-annex.
6183  * Now supports matching files that are present on a number of remotes
6184    with a specified trust level. Example: --copies=trusted:2
6185    Thanks, Nicolas Pouillard
6186
6187 -- Joey Hess <joeyh@debian.org>  Mon, 24 Sep 2012 13:47:48 -0400
6188
6189git-annex (3.20120825) unstable; urgency=low
6190
6191  * S3: Add fileprefix setting.
6192  * Pass --use-agent to gpg when in no tty mode. Thanks, Eskild Hustvedt.
6193  * Bugfix: Fix fsck in SHA*E backends, when the key contains composite
6194    extensions, as added in 3.20120721.
6195
6196 -- Joey Hess <joeyh@debian.org>  Sat, 25 Aug 2012 10:00:10 -0400
6197
6198git-annex (3.20120807) unstable; urgency=low
6199
6200  * initremote: Avoid recording remote's description before checking
6201    that its config is valid.
6202  * unused, status: Avoid crashing when ran in bare repo.
6203  * Avoid crashing when "git annex get" fails to download from one
6204    location, and falls back to downloading from a second location.
6205
6206 -- Joey Hess <joeyh@debian.org>  Tue, 07 Aug 2012 13:35:07 -0400
6207
6208git-annex (3.20120721) unstable; urgency=low
6209
6210  * get, move, copy: Now refuse to do anything when the requested file
6211    transfer is already in progress by another process.
6212  * status: Lists transfers that are currently in progress.
6213  * Fix passing --uuid to git-annex-shell.
6214  * When shaNsum commands cannot be found, use the Haskell SHA library
6215    (already a dependency) to do the checksumming. This may be slower,
6216    but avoids portability problems.
6217  * Use SHA library for files less than 50 kb in size, at which point it's
6218    faster than forking the more optimised external program.
6219  * SHAnE backends are now smarter about composite extensions, such as
6220    .tar.gz Closes: #680450
6221  * map: Write map.dot to .git/annex, which avoids watch trying to annex it.
6222
6223 -- Joey Hess <joeyh@debian.org>  Sat, 21 Jul 2012 16:52:48 -0400
6224
6225git-annex (3.20120629) unstable; urgency=low
6226
6227  * cabal: Only try to use inotify on Linux.
6228  * Version build dependency on STM, and allow building without it,
6229    which disables the watch command.
6230  * Avoid ugly failure mode when moving content from a local repository
6231    that is not available.
6232  * Got rid of the last place that did utf8 decoding.
6233  * Accept arbitrarily encoded repository filepaths etc when reading
6234    git config output. This fixes support for remotes with unusual characters
6235    in their names.
6236  * sync: Automatically resolves merge conflicts.
6237
6238 -- Joey Hess <joeyh@debian.org>  Fri, 29 Jun 2012 10:17:49 -0400
6239
6240git-annex (3.20120624) unstable; urgency=low
6241
6242  * watch: New subcommand, a daemon which notices changes to
6243    files and automatically annexes new files, etc, so you don't
6244    need to manually run git commands when manipulating files.
6245    Available on Linux, BSDs, and OSX!
6246  * Enable diskfree on kfreebsd, using kqueue.
6247  * unused: Fix crash when key names contain invalid utf8.
6248  * sync: Avoid recent git's interactive merge.
6249
6250 -- Joey Hess <joeyh@debian.org>  Sun, 24 Jun 2012 12:36:50 -0400
6251
6252git-annex (3.20120614) unstable; urgency=medium
6253
6254  * addurl: Was broken by a typo introduced 2 released ago, now fixed.
6255    Closes: #677576
6256  * Install man page when run by cabal, in a location where man will
6257    find it, even when installing under $HOME. Thanks, Nathan Collins
6258
6259 -- Joey Hess <joeyh@debian.org>  Thu, 14 Jun 2012 20:21:29 -0400
6260
6261git-annex (3.20120611) unstable; urgency=medium
6262
6263  * add: Prevent (most) modifications from being made to a file while it
6264    is being added to the annex.
6265  * initremote: Automatically describe a remote when creating it.
6266  * uninit: Refuse to run in a subdirectory. Closes: #677076
6267
6268 -- Joey Hess <joeyh@debian.org>  Mon, 11 Jun 2012 10:32:01 -0400
6269
6270git-annex (3.20120605) unstable; urgency=low
6271
6272  * sync: Show a nicer message if a user tries to sync to a special remote.
6273  * lock: Reset unlocked file to index, rather than to branch head.
6274  * import: New subcommand, pulls files from a directory outside the annex
6275    and adds them.
6276  * Fix display of warning message when encountering a file that uses an
6277    unsupported backend.
6278  * Require that the SHA256 backend can be used when building, since it's the
6279    default.
6280  * Preserve parent environment when running hooks of the hook special remote.
6281
6282 -- Joey Hess <joeyh@debian.org>  Tue, 05 Jun 2012 14:03:39 -0400
6283
6284git-annex (3.20120522) unstable; urgency=low
6285
6286  * Pass -a to cp even when it supports --reflink=auto, to preserve
6287    permissions.
6288  * Clean up handling of git directory and git worktree.
6289  * Add support for core.worktree, and fix support for GIT_WORK_TREE and
6290    GIT_DIR.
6291
6292 -- Joey Hess <joeyh@debian.org>  Tue, 22 May 2012 11:16:13 -0400
6293
6294git-annex (3.20120511) unstable; urgency=low
6295
6296  * Rsync special remotes can be configured with shellescape=no
6297    to avoid shell quoting that is normally done when using rsync over ssh.
6298    This is known to be needed for certian rsync hosting providers
6299    (specificially hidrive.strato.com) that use rsync over ssh but do not
6300    pass it through the shell.
6301  * dropunused: Allow specifying ranges to drop.
6302  * addunused: New command, the opposite of dropunused, it relinks unused
6303    content into the git repository.
6304  * Fix use of several config settings: annex.ssh-options,
6305    annex.rsync-options, annex.bup-split-options. (And adjust types to avoid
6306    the bugs that broke several config settings.)
6307
6308 -- Joey Hess <joeyh@debian.org>  Fri, 11 May 2012 12:29:30 -0400
6309
6310git-annex (3.20120430) unstable; urgency=low
6311
6312  * Fix use of annex.diskreserve config setting.
6313  * Directory special remotes now check annex.diskreserve.
6314  * Support git's core.sharedRepository configuration.
6315  * Add annex.http-headers and annex.http-headers-command config
6316    settings, to allow custom headers to be sent with all HTTP requests.
6317    (Requested by the Internet Archive)
6318  * uninit: Clear annex.uuid from .git/config. Closes: #670639
6319  * Added shared cipher mode to encryptable special remotes. This option
6320    avoids gpg key distribution, at the expense of flexibility, and with
6321    the requirement that all clones of the git repository be equally trusted.
6322
6323 -- Joey Hess <joeyh@debian.org>  Mon, 30 Apr 2012 13:16:10 -0400
6324
6325git-annex (3.20120418) unstable; urgency=low
6326
6327  * bugfix: Adding a dotfile also caused all non-dotfiles to be added.
6328  * bup: Properly handle key names with spaces or other things that are
6329    not legal git refs.
6330  * git-annex (but not git-annex-shell) supports the git help.autocorrect
6331    configuration setting, doing fuzzy matching using the restricted
6332    Damerau-Levenshtein edit distance, just as git does. This adds a build
6333    dependency on the haskell edit-distance library.
6334  * Renamed diskfree.c to avoid OSX case insensativity bug.
6335  * cabal now installs git-annex-shell as a symlink to git-annex.
6336  * cabal file now autodetects whether S3 support is available.
6337
6338 -- Joey Hess <joeyh@debian.org>  Wed, 18 Apr 2012 12:11:32 -0400
6339
6340git-annex (3.20120406) unstable; urgency=low
6341
6342  * Disable diskfree on kfreebsd, as I have a build failure on kfreebsd-i386
6343    that is quite likely caused by it.
6344
6345 -- Joey Hess <joeyh@debian.org>  Sat, 07 Apr 2012 15:50:36 -0400
6346
6347git-annex (3.20120405) unstable; urgency=low
6348
6349  * Rewrote free disk space checking code, moving the portability
6350    handling into a small C library.
6351  * status: Display amount of free disk space.
6352
6353 -- Joey Hess <joeyh@debian.org>  Thu, 05 Apr 2012 16:19:10 -0400
6354
6355git-annex (3.20120315) unstable; urgency=low
6356
6357  * fsck: Fix up any broken links and misplaced content caused by the
6358    directory hash calculation bug fixed in the last release.
6359  * sync: Sync to lower cost remotes first.
6360  * status: Fixed to run in constant space.
6361  * status: More accurate display of sizes of tmp and bad keys.
6362  * unused: Now uses a bloom filter, and runs in constant space.
6363    Use of a bloom filter does mean it will not notice a small
6364    number of unused keys. For repos with up to half a million keys,
6365    it will miss one key in 1000.
6366  * Added annex.bloomcapacity and annex.bloomaccuracy, which can be
6367    adjusted as desired to tune the bloom filter.
6368  * status: Display amount of memory used by bloom filter, and
6369    detect when it's too small for the number of keys in a repository.
6370  * git-annex-shell: Runs hooks/annex-content after content is received
6371    or dropped.
6372  * Work around a bug in rsync (IMHO) introduced by openSUSE's SIP patch.
6373  * git-annex now behaves as git-annex-shell if symlinked to and run by that
6374    name. The Makefile sets this up, saving some 8 mb of installed size.
6375  * git-union-merge is a demo program, so it is no longer built by default.
6376
6377 -- Joey Hess <joeyh@debian.org>  Thu, 15 Mar 2012 11:05:28 -0400
6378
6379git-annex (3.20120309) unstable; urgency=low
6380
6381  * Fix key directory hash calculation code to behave as it did before
6382    version 3.20120227 when a key contains non-ascii characters (only
6383    WORM backend is likely to have been affected).
6384
6385 -- Joey Hess <joeyh@debian.org>  Fri, 09 Mar 2012 20:05:09 -0400
6386
6387git-annex (3.20120230) unstable; urgency=low
6388
6389  * "here" can be used to refer to the current repository,
6390    which can read better than the old "." (which still works too).
6391  * Directory special remotes now support chunking files written to them,
6392    avoiding writing files larger than a specified size.
6393  * Add progress bar display to the directory special remote.
6394  * Add configurable hooks that are run when git-annex starts and stops
6395    using a remote: remote.name.annex-start-command and
6396    remote.name.annex-stop-command
6397  * Fix a bug in symlink calculation code, that triggered in rare
6398    cases where an annexed file is in a subdirectory that nearly
6399    matched to the .git/annex/object/xx/yy subdirectories.
6400
6401 -- Joey Hess <joeyh@debian.org>  Mon, 05 Mar 2012 13:38:13 -0400
6402
6403git-annex (3.20120229) unstable; urgency=low
6404
6405  * Fix test suite to not require a unicode locale.
6406  * Fix cabal build failure. Thanks, Sergei Trofimovich
6407
6408 -- Joey Hess <joeyh@debian.org>  Wed, 29 Feb 2012 02:31:31 -0400
6409
6410git-annex (3.20120227) unstable; urgency=low
6411
6412  * Modifications to support ghc 7.4's handling of filenames.
6413    This version can only be built with ghc 7.4 or newer. See the ghc7.0
6414    branch for older ghcs.
6415  * S3: Fix irrefutable pattern failure when accessing encrypted S3
6416    credentials.
6417  * Use the haskell IfElse library.
6418  * Fix teardown of stale cached ssh connections.
6419  * Fixed to use the strict state monad, to avoid leaking all kinds of memory
6420    due to lazy state update thunks when adding/fixing many files.
6421  * Fixed some memory leaks that occurred when committing journal files.
6422  * Added a annex.queuesize setting, useful when adding hundreds of thousands
6423    of files on a system with plenty of memory.
6424  * whereis: Prints the urls of files that the web special remote knows about.
6425  * addurl --fast: Verifies that the url can be downloaded (only getting
6426    its head), and records the size in the key.
6427  * When checking that an url has a key, verify that the Content-Length,
6428    if available, matches the size of the key.
6429  * addurl: Added a --file option, which can be used to specify what
6430    file the url is added to. This can be used to override the default
6431    filename that is used when adding an url, which is based on the url.
6432    Or, when the file already exists, the url is recorded as another
6433    location of the file.
6434  * addurl: Normalize badly encoded urls.
6435  * addurl: Add --pathdepth option.
6436  * rekey: New plumbing level command, can be used to change the keys used
6437    for files en masse.
6438  * Store web special remote url info in a more efficient location.
6439    (Urls stored with this version will not be visible to older versions.)
6440  * Deal with NFS problem that caused a failure to remove a directory
6441    when removing content from the annex.
6442  * Make a single location log commit after a remote has received or
6443    dropped files. Uses a new "git-annex-shell commit" command when available.
6444  * To avoid commits of data to the git-annex branch after each command
6445    is run, set annex.alwayscommit=false. Its data will then be committed
6446    less frequently, when a merge or sync is done.
6447  * configure: Check if ssh connection caching is supported by the installed
6448    version of ssh and default annex.sshcaching accordingly.
6449  * move --from, copy --from: Now 10 times faster when scanning to find
6450    files in a remote on a local disk; rather than go through the location log
6451    to see which files are present on the remote, it simply looks at the
6452    disk contents directly.
6453
6454 -- Joey Hess <joeyh@debian.org>  Mon, 27 Feb 2012 12:58:21 -0400
6455
6456git-annex (3.20120123) unstable; urgency=low
6457
6458  * fsck --from: Fscking a remote is now supported. It's done by retrieving
6459    the contents of the specified files from the remote, and checking them,
6460    so can be an expensive operation. Still, if the remote is a special
6461    remote, or a git repository that you cannot run fsck in locally, it's
6462    nice to have the ability to fsck it.
6463  * If you have any directory special remotes, now would be a good time to
6464    fsck them, in case you were hit by the data loss bug fixed in the
6465    previous release!
6466  * fsck --from remote --fast: Avoids expensive file transfers, at the
6467    expense of not checking file size and/or contents.
6468  * Ssh connection caching is now enabled automatically by git-annex.
6469    Only one ssh connection is made to each host per git-annex run, which
6470    can speed some things up a lot, as well as avoiding repeated password
6471    prompts. Concurrent git-annex processes also share ssh connections.
6472    Cached ssh connections are shut down when git-annex exits.
6473  * To disable the ssh caching (if for example you have your own broader
6474    ssh caching configuration), set annex.sshcaching=false.
6475
6476 -- Joey Hess <joeyh@debian.org>  Mon, 23 Jan 2012 13:48:48 -0400
6477
6478git-annex (3.20120116) unstable; urgency=medium
6479
6480  * Fix data loss bug in directory special remote, when moving a file
6481    to the remote failed, and partially transferred content was left
6482    behind in the directory, re-running the same move would think it
6483    succeeded and delete the local copy.
6484
6485 -- Joey Hess <joeyh@debian.org>  Mon, 16 Jan 2012 16:43:45 -0400
6486
6487git-annex (3.20120115) unstable; urgency=low
6488
6489  * Add a sanity check for bad StatFS results. On architectures
6490    where StatFS does not currently work (s390, mips, powerpc, sparc),
6491    this disables the diskreserve checking code, and attempting to
6492    configure an annex.diskreserve will result in an error.
6493  * Fix QuickCheck dependency in cabal file.
6494  * Minor optimisations.
6495
6496 -- Joey Hess <joeyh@debian.org>  Sun, 15 Jan 2012 13:54:20 -0400
6497
6498git-annex (3.20120113) unstable; urgency=low
6499
6500  * log: Add --gource mode, which generates output usable by gource.
6501  * map: Fix display of remote repos
6502  * Add annex-trustlevel configuration settings, which can be used to
6503    override the trust level of a remote.
6504  * git-annex, git-union-merge: Support GIT_DIR and GIT_WORK_TREE.
6505  * Add libghc-testpack-dev to build depends on all arches.
6506
6507 -- Joey Hess <joeyh@debian.org>  Fri, 13 Jan 2012 15:35:17 -0400
6508
6509git-annex (3.20120106) unstable; urgency=low
6510
6511  * Support unescaped repository urls, like git does.
6512  * log: New command that displays the location log for files,
6513    showing each repository they were added to and removed from.
6514  * Fix overbroad gpg --no-tty fix from last release.
6515
6516 -- Joey Hess <joeyh@debian.org>  Sat, 07 Jan 2012 13:16:23 -0400
6517
6518git-annex (3.20120105) unstable; urgency=low
6519
6520  * Added annex-web-options configuration settings, which can be
6521    used to provide parameters to whichever of wget or curl git-annex uses
6522    (depends on which is available, but most of their important options
6523    suitable for use here are the same).
6524  * Dotfiles, and files inside dotdirs are not added by "git annex add"
6525    unless the dotfile or directory is explicitly listed. So "git annex add ."
6526    will add all untracked files in the current directory except for those in
6527    dotdirs.
6528  * Added quickcheck to build dependencies, and fail if test suite cannot be
6529    built.
6530  * fsck: Do backend-specific check before checking numcopies is satisfied.
6531  * Run gpg with --no-tty. Closes: #654721
6532
6533 -- Joey Hess <joeyh@debian.org>  Thu, 05 Jan 2012 13:44:12 -0400
6534
6535git-annex (3.20111231) unstable; urgency=low
6536
6537  * sync: Improved to work well without a central bare repository.
6538    Thanks to Joachim Breitner.
6539  * Rather than manually committing, pushing, pulling, merging, and git annex
6540    merging, we encourage you to give "git annex sync" a try.
6541  * sync --fast: Selects some of the remotes with the lowest annex.cost
6542    and syncs those, in addition to any specified at the command line.
6543  * Union merge now finds the least expensive way to represent the merge.
6544  * reinject: Add a sanity check for using an annexed file as the source file.
6545  * Properly handle multiline git config values.
6546  * Fix the hook special remote, which bitrotted a while ago.
6547  * map: --fast disables use of dot to display map
6548  * Test suite improvements. Current top-level test coverage: 75%
6549  * Improve deletion of files from rsync special remotes. Closes: #652849
6550  * Add --include, which is the same as --not --exclude.
6551  * Format strings can be specified using the new --format option, to control
6552    what is output by git annex find.
6553  * Support git annex find --json
6554  * Fixed behavior when multiple insteadOf configs are provided for the
6555    same url base.
6556  * Can now be built with older git versions (before 1.7.7); the resulting
6557    binary should only be used with old git.
6558  * Updated to build with monad-control 0.3.
6559
6560 -- Joey Hess <joeyh@debian.org>  Sat, 31 Dec 2011 14:55:29 -0400
6561
6562git-annex (3.20111211) unstable; urgency=medium
6563
6564  * Fix bug in last version in getting contents from bare repositories.
6565  * Ensure that git-annex branch changes are merged into git-annex's index,
6566    which fixes a bug that could cause changes that were pushed to the
6567    git-annex branch to get reverted. As a side effect, it's now safe
6568    for users to check out and commit changes directly to the git-annex
6569    branch.
6570  * map: Fix a failure to detect a loop when both repositories are local
6571    and refer to each other with relative paths.
6572  * Prevent key names from containing newlines.
6573  * add: If interrupted, add can leave files converted to symlinks but not
6574    yet added to git. Running the add again will now clean up this situtation.
6575  * Fix caching of decrypted ciphers, which failed when drop had to check
6576    multiple different encrypted special remotes.
6577  * unannex: Can be run on files that have been added to the annex, but not
6578    yet committed.
6579  * sync: New command that synchronises the local repository and default
6580    remote, by running git commit, pull, and push for you.
6581  * Version monad-control dependency in cabal file.
6582
6583 -- Joey Hess <joeyh@debian.org>  Sun, 11 Dec 2011 21:24:39 -0400
6584
6585git-annex (3.20111203) unstable; urgency=low
6586
6587  * The VFAT filesystem on recent versions of Linux, when mounted with
6588    shortname=mixed, does not get along well with git-annex's mixed case
6589    .git/annex/objects hash directories. To avoid this problem, new content
6590    is now stored in all-lowercase hash directories. Except for non-bare
6591    repositories which would be a pain to transition and cannot be put on FAT.
6592    (Old mixed-case hash directories are still tried for backwards
6593    compatibility.)
6594  * Flush json output, avoiding a buffering problem that could result in
6595    doubled output.
6596  * Avoid needing haskell98 and other fixes for new ghc. Thanks, Mark Wright.
6597  * Bugfix: dropunused did not drop keys with two spaces in their name.
6598  * Support for storing .git/annex on a different device than the rest of the
6599    git repository.
6600  * --inbackend can be used to make git-annex only operate on files
6601    whose content is stored using a specified key-value backend.
6602  * dead: A command which says that a repository is gone for good
6603    and you don't want git-annex to mention it again.
6604
6605 -- Joey Hess <joeyh@debian.org>  Sat, 03 Dec 2011 21:01:45 -0400
6606
6607git-annex (3.20111122) unstable; urgency=low
6608
6609  * merge: Improve commit messages to mention what was merged.
6610  * Avoid doing auto-merging in commands that don't need fully current
6611    information from the git-annex branch. In particular, git annex add
6612    no longer needs to auto-merge.
6613  * init: When run in an already initalized repository, and without
6614    a description specified, don't delete the old description.
6615  * Optimised union merging; now only runs git cat-file once, and runs
6616    in constant space.
6617  * status: Now displays trusted, untrusted, and semitrusted repositories
6618    separately.
6619  * status: Include all special remotes in the list of repositories.
6620  * status: Fix --json mode.
6621  * status: --fast is back
6622  * Fix support for insteadOf url remapping. Closes: #644278
6623  * When not run in a git repository, git-annex can still display a usage
6624    message, and "git annex version" even works.
6625  * migrate: Don't fall over a stale temp file.
6626  * Avoid excessive escaping for rsync special remotes that are not accessed
6627    over ssh.
6628  * find: Support --print0
6629
6630 -- Joey Hess <joeyh@debian.org>  Tue, 22 Nov 2011 14:31:45 -0400
6631
6632git-annex (3.20111111) unstable; urgency=low
6633
6634  * Handle a case where an annexed file is moved into a gitignored directory,
6635    by having fix --force add its change.
6636  * Avoid cyclic drop problems.
6637  * Optimized copy --from and get --from to avoid checking the location log
6638    for files that are already present.
6639  * Automatically fix up badly formatted uuid.log entries produced by
6640    3.20111105, whenever the uuid.log is changed (ie, by init or describe).
6641  * map: Support remotes with /~/ and /~user/
6642
6643 -- Joey Hess <joeyh@debian.org>  Fri, 11 Nov 2011 13:44:18 -0400
6644
6645git-annex (3.20111107) unstable; urgency=low
6646
6647  * merge: Use fast-forward merges when possible.
6648    Thanks Valentin Haenel for a test case showing how non-fast-forward
6649    merges could result in an ongoing pull/merge/push cycle.
6650  * Don't try to read config from repos with annex-ignore set.
6651  * Bugfix: In the past two releases, git-annex init has written the uuid.log
6652    in the wrong format, with the UUID and description flipped.
6653
6654 -- Joey Hess <joeyh@debian.org>  Mon, 07 Nov 2011 12:47:44 -0400
6655
6656git-annex (3.20111105) unstable; urgency=low
6657
6658  * The default backend used when adding files to the annex is changed
6659    from WORM to SHA256.
6660    To get old behavior, add a .gitattributes containing: * annex.backend=WORM
6661  * Sped up some operations on remotes that are on the same host.
6662  * copy --to: Fixed leak when copying many files to a remote on the same
6663    host.
6664  * uninit: Add guard against being run with the git-annex branch checked out.
6665  * Fail if --from or --to is passed to commands that do not support them.
6666  * drop --from is now supported to remove file content from a remote.
6667  * status: Now always shows the current repository, even when it does not
6668    appear in uuid.log.
6669  * fsck: Now works in bare repositories. Checks location log information,
6670    and file contents. Does not check that numcopies is satisfied, as
6671    .gitattributes information about numcopies is not available in a bare
6672    repository.
6673  * unused, dropunused: Now work in bare repositories.
6674  * Removed the setkey command, and added a reinject command with a more
6675    useful interface.
6676  * The fromkey command now takes the key as its first parameter. The --key
6677    option is no longer used.
6678  * Built without any filename containing .git being excluded. Closes: #647215
6679  * Record uuid when auto-initializing a remote so it shows in status.
6680  * Bugfix: Fixed git-annex init crash in a bare repository when there was
6681    already an existing git-annex branch.
6682  * Pass -t to rsync to preserve timestamps.
6683
6684 -- Joey Hess <joeyh@debian.org>  Sat, 05 Nov 2011 15:47:52 -0400
6685
6686git-annex (3.20111025) unstable; urgency=low
6687
6688  * A remote can have a annexUrl configured, that is used by git-annex
6689    instead of its usual url. (Similar to pushUrl.)
6690  * migrate: Copy url logs for keys when migrating.
6691  * git-annex-shell: GIT_ANNEX_SHELL_READONLY and GIT_ANNEX_SHELL_LIMITED
6692    environment variables can be set to limit what commands can be run.
6693    This is used by gitolite's new git-annex support!
6694
6695 -- Joey Hess <joeyh@debian.org>  Tue, 25 Oct 2011 13:03:08 -0700
6696
6697git-annex (3.20111011) unstable; urgency=low
6698
6699  * This version of git-annex only works with git 1.7.7 and newer.
6700    The breakage with old versions is subtle, and affects the
6701    annex.numcopies settings in .gitattributes, so be sure to upgrade git
6702    to 1.7.7. (Debian package now depends on that version.)
6703  * Don't pass absolute paths to git show-attr, as it started following
6704    symlinks when that's done in 1.7.7. Instead, use relative paths,
6705    which show-attr only handles 100% correctly in 1.7.7. Closes: #645046
6706  * Fix referring to remotes by uuid.
6707  * New or changed repository descriptions in uuid.log now have a timestamp,
6708    which is used to ensure the newest description is used when the uuid.log
6709    has been merged.
6710  * Note that older versions of git-annex will display the timestamp as part
6711    of the repository description, which is ugly but otherwise harmless.
6712  * Add timestamps to trust.log and remote.log too.
6713  * git-annex-shell: Added the --uuid option.
6714  * git-annex now asks git-annex-shell to verify that it's operating in
6715    the expected repository.
6716  * Note that this git-annex will not interoperate with remotes using
6717    older versions of git-annex-shell.
6718  * Now supports git's insteadOf configuration, to modify the url
6719    used to access a remote. Note that pushInsteadOf is not used;
6720    that and pushurl are reserved for actual git pushes. Closes: #644278
6721  * status: List all known repositories.
6722  * When displaying a list of repositories, show git remote names
6723    in addition to their descriptions.
6724  * Add locking to avoid races when changing the git-annex branch.
6725  * Various speed improvements gained by using ByteStrings.
6726  * Contain the zombie hordes.
6727
6728 -- Joey Hess <joeyh@debian.org>  Tue, 11 Oct 2011 23:00:02 -0400
6729
6730git-annex (3.20110928) unstable; urgency=low
6731
6732  * --in can be used to make git-annex only operate on files
6733    believed to be present in a given repository.
6734  * Arbitrarily complex expressions can be built to limit the files git-annex
6735    operates on, by combining the options --not --and --or -( and -)
6736    Example: git annex get --exclude '*.mp3' --and --not -( --in usbdrive --or --in archive -)
6737  * --copies=N can be used to make git-annex only operate on files with
6738    the specified number of copies. (And --not --copies=N for the inverse.)
6739  * find: Rather than only showing files whose contents are present,
6740    when used with --exclude --copies or --in, displays all files that
6741    match the specified conditions.
6742  * Note that this is a behavior change for git-annex find! Old behavior
6743    can be gotten by using: git-annex find --in .
6744  * status: Massively sped up; remove --fast mode.
6745  * unused: File contents used by branches and tags are no longer
6746    considered unused, even when not used by the current branch. This is
6747    the final piece of the puzzle needed for git-annex to to play nicely
6748    with branches.
6749
6750 -- Joey Hess <joeyh@debian.org>  Wed, 28 Sep 2011 18:14:02 -0400
6751
6752git-annex (3.20110915) unstable; urgency=low
6753
6754  * whereis: Show untrusted locations separately and do not include in
6755    location count.
6756  * Fix build without S3.
6757  * addurl: Always use whole url as destination filename, rather than
6758    only its file component.
6759  * get, drop, copy: Added --auto option, which decides whether
6760    to get/drop content as needed to work toward the configured numcopies.
6761  * bugfix: drop and fsck did not honor --exclude
6762
6763 -- Joey Hess <joeyh@debian.org>  Thu, 15 Sep 2011 22:25:46 -0400
6764
6765git-annex (3.20110906) unstable; urgency=low
6766
6767  * Improve display of newlines around error and warning messages.
6768  * Fix Makefile to work with cabal again.
6769
6770 -- Joey Hess <joeyh@debian.org>  Tue, 06 Sep 2011 13:45:16 -0400
6771
6772git-annex (3.20110902) unstable; urgency=low
6773
6774  * Set EMAIL when running test suite so that git does not need to be
6775    configured first. Closes: #638998
6776  * The wget command will now be used in preference to curl, if available.
6777  * init: Make description an optional parameter.
6778  * unused, status: Sped up by avoiding unnecessary stats of annexed files.
6779  * unused --remote: Reduced memory use to 1/4th what was used before.
6780  * Add --json switch, to produce machine-consumable output.
6781
6782 -- Joey Hess <joeyh@debian.org>  Fri, 02 Sep 2011 21:20:37 -0400
6783
6784git-annex (3.20110819) unstable; urgency=low
6785
6786  * Now "git annex init" only has to be run once, when a git repository
6787    is first being created. Clones will automatically notice that git-annex
6788    is in use and automatically perform a basic initalization. It's
6789    still recommended to run "git annex init" in any clones, to describe them.
6790  * Added annex-cost-command configuration, which can be used to vary the
6791    cost of a remote based on the output of a shell command.
6792  * Fix broken upgrade from V1 repository. Closes: #638584
6793
6794 -- Joey Hess <joeyh@debian.org>  Fri, 19 Aug 2011 20:34:09 -0400
6795
6796git-annex (3.20110817) unstable; urgency=low
6797
6798  * Fix shell escaping in rsync special remote.
6799  * addurl: --fast can be used to avoid immediately downloading the url.
6800  * Added support for getting content from git remotes using http (and https).
6801  * Added curl to Debian package dependencies.
6802
6803 -- Joey Hess <joeyh@debian.org>  Wed, 17 Aug 2011 01:29:02 -0400
6804
6805git-annex (3.20110719) unstable; urgency=low
6806
6807  * add: Be even more robust to avoid ever leaving the file seemingly deleted.
6808    Closes: #634233
6809  * Bugfix: Make add ../ work.
6810  * Support the standard git -c name=value
6811  * unannex: Clean up use of git commit -a.
6812
6813 -- Joey Hess <joeyh@debian.org>  Tue, 19 Jul 2011 23:39:53 -0400
6814
6815git-annex (3.20110707) unstable; urgency=low
6816
6817  * Fix sign bug in disk free space checking.
6818  * Bugfix: Forgot to de-escape keys when upgrading. Could result in
6819    bad location log data for keys that contain [&:%] in their names.
6820    (A workaround for this problem is to run git annex fsck.)
6821  * add: Avoid a failure mode that resulted in the file seemingly being
6822    deleted (content put in the annex but no symlink present).
6823
6824 -- Joey Hess <joeyh@debian.org>  Thu, 07 Jul 2011 19:29:39 -0400
6825
6826git-annex (3.20110705) unstable; urgency=low
6827
6828  * uninit: Delete the git-annex branch and .git/annex/
6829  * unannex: In --fast mode, file content is left in the annex, and a
6830    hard link made to it.
6831  * uninit: Use unannex in --fast mode, to support unannexing multiple
6832    files that link to the same content.
6833  * Drop the dependency on the haskell curl bindings, use regular haskell HTTP.
6834  * Fix a pipeline stall when upgrading (caused by #624389).
6835
6836 -- Joey Hess <joeyh@debian.org>  Tue, 05 Jul 2011 14:37:39 -0400
6837
6838git-annex (3.20110702) unstable; urgency=low
6839
6840  * Now the web can be used as a special remote.
6841    This feature replaces the old URL backend.
6842  * addurl: New command to download an url and store it in the annex.
6843  * Sped back up fsck, copy --from, and other commands that often
6844    have to read a lot of information from the git-annex branch. Such
6845    commands are now faster than they were before introduction of the
6846    git-annex branch.
6847  * Always ensure git-annex branch exists.
6848  * Modify location log parser to allow future expansion.
6849  * --force will cause add, etc, to operate on ignored files.
6850  * Avoid mangling encoding when storing the description of repository
6851    and other content.
6852  * cabal can now be used to build git-annex. This is substantially
6853    slower than using make, does not build or install documentation,
6854    does not run the test suite, and is not particularly recommended,
6855    but could be useful to some.
6856
6857 -- Joey Hess <joeyh@debian.org>  Sat, 02 Jul 2011 15:00:18 -0400
6858
6859git-annex (3.20110624) experimental; urgency=low
6860
6861  * New repository format, annex.version=3. Use `git annex upgrade` to migrate.
6862  * git-annex now stores its logs in a git-annex branch.
6863  * merge: New subcommand. Auto-merges the new git-annex branch.
6864  * Improved handling of bare git repos with annexes. Many more commands will
6865    work in them.
6866  * git-annex is now more robust; it will never leave state files
6867    uncommitted when some other git process comes along and locks the index
6868    at an inconvenient time.
6869  * rsync is now used when copying files from repos on other filesystems.
6870    cp is still used when copying file from repos on the same filesystem,
6871    since --reflink=auto can make it significantly faster on filesystems
6872    such as btrfs.
6873  * Allow --trust etc to specify a repository by name, for temporarily
6874    trusting repositories that are not configured remotes.
6875  * unlock: Made atomic.
6876  * git-union-merge: New git subcommand, that does a generic union merge
6877    operation, and operates efficiently without touching the working tree.
6878
6879 -- Joey Hess <joeyh@debian.org>  Fri, 24 Jun 2011 14:32:18 -0400
6880
6881git-annex (0.20110610) unstable; urgency=low
6882
6883  * Add --numcopies option.
6884  * Add --trust, --untrust, and --semitrust options.
6885  * get --from is the same as copy --from
6886  * Bugfix: Fix fsck to not think all SHAnE keys are bad.
6887
6888 -- Joey Hess <joeyh@debian.org>  Fri, 10 Jun 2011 11:48:40 -0400
6889
6890git-annex (0.20110601) unstable; urgency=low
6891
6892  * Minor bugfixes and error message improvements.
6893  * Massively sped up `git annex lock` by avoiding use of the uber-slow
6894    `git reset`, and only running `git checkout` once, even when many files
6895    are being locked.
6896  * Fix locking of files with staged changes.
6897  * Somewhat sped up `git commit` of modifications to unlocked files.
6898  * Build fix for older ghc.
6899
6900 -- Joey Hess <joeyh@debian.org>  Wed, 01 Jun 2011 11:50:47 -0400
6901
6902git-annex (0.20110522) unstable; urgency=low
6903
6904  * Closer emulation of git's behavior when told to use "foo/.git" as a
6905    git repository instead of just "foo". Closes: #627563
6906  * Fix bug in --exclude introduced in 0.20110516.
6907
6908 -- Joey Hess <joeyh@debian.org>  Fri, 27 May 2011 20:20:41 -0400
6909
6910git-annex (0.20110521) unstable; urgency=low
6911
6912  * status: New subcommand to show info about an annex, including its size.
6913  * --backend now overrides any backend configured in .gitattributes files.
6914  * Add --debug option. Closes: #627499
6915
6916 -- Joey Hess <joeyh@debian.org>  Sat, 21 May 2011 11:52:53 -0400
6917
6918git-annex (0.20110516) unstable; urgency=low
6919
6920  * Add a few tweaks to make it easy to use the Internet Archive's variant
6921    of S3. In particular, munge key filenames to comply with the IA's filename
6922    limits, disable encryption, support their nonstandard way of creating
6923    buckets, and allow x-archive-* headers to be specified in initremote to
6924    set item metadata.
6925  * Added filename extension preserving variant backends SHA1E, SHA256E, etc.
6926  * migrate: Use current filename when generating new key, for backends
6927    where the filename affects the key name.
6928  * Work around a bug in Network.URI's handling of bracketed ipv6 addresses.
6929
6930 -- Joey Hess <joeyh@debian.org>  Mon, 16 May 2011 14:16:52 -0400
6931
6932git-annex (0.20110503) unstable; urgency=low
6933
6934  * Fix hasKeyCheap setting for bup and rsync special remotes.
6935  * Add hook special remotes.
6936  * Avoid crashing when an existing key is readded to the annex.
6937  * unused: Now also lists files fsck places in .git/annex/bad/
6938  * S3: When encryption is enabled, the Amazon S3 login credentials
6939    are stored, encrypted, in .git-annex/remotes.log, so environment
6940    variables need not be set after the remote is initialized.
6941
6942 -- Joey Hess <joeyh@debian.org>  Tue, 03 May 2011 20:56:01 -0400
6943
6944git-annex (0.20110427) unstable; urgency=low
6945
6946  * Switch back to haskell SHA library, so git-annex remains buildable on
6947    Debian stable.
6948  * Added rsync special remotes. This could be used, for example, to
6949    store annexed content on rsync.net (encrypted naturally). Or anywhere else.
6950  * Bugfix: Avoid pipeline stall when running git annex drop or fsck on a
6951    lot of files. Possibly only occured with ghc 7.
6952
6953 -- Joey Hess <joeyh@debian.org>  Wed, 27 Apr 2011 22:50:26 -0400
6954
6955git-annex (0.20110425) unstable; urgency=low
6956
6957  * Use haskell Crypto library instead of haskell SHA library.
6958  * Remove testpack from build depends for non x86 architectures where it
6959    is not available. The test suite will not be run if it cannot be compiled.
6960  * Avoid using absolute paths when staging location log, as that can
6961    confuse git when a remote's path contains a symlink. Closes: #621386
6962
6963 -- Joey Hess <joeyh@debian.org>  Mon, 25 Apr 2011 15:47:00 -0400
6964
6965git-annex (0.20110420) unstable; urgency=low
6966
6967  * Update Debian build dependencies for ghc 7.
6968  * Debian package is now built with S3 support.
6969    Thanks Joachim Breitner for making this possible.
6970  * Somewhat improved memory usage of S3, still work to do.
6971    Thanks Greg Heartsfield for ongoing work to improve the hS3 library
6972    for git-annex.
6973
6974 -- Joey Hess <joeyh@debian.org>  Thu, 21 Apr 2011 15:00:48 -0400
6975
6976git-annex (0.20110419) unstable; urgency=low
6977
6978  * Don't run gpg in batch mode, so it can prompt for passphrase when
6979    there is no agent.
6980  * Add missing build dep on dataenc.
6981  * S3: Fix stalls when transferring encrypted data.
6982  * bup: Avoid memory leak when transferring encrypted data.
6983
6984 -- Joey Hess <joeyh@debian.org>  Tue, 19 Apr 2011 21:26:51 -0400
6985
6986git-annex (0.20110417) unstable; urgency=low
6987
6988  * bup is now supported as a special type of remote.
6989  * The data sent to special remotes (Amazon S3, bup, etc) can be encrypted
6990    using GPG for privacy.
6991  * Use lowercase hash directories for locationlog files, to avoid
6992    some issues with git on OSX with the mixed-case directories.
6993    No migration is needed; the old mixed case hash directories are still
6994    read; new information is written to the new directories.
6995  * Unused files on remotes, particulary special remotes, can now be
6996    identified and dropped, by using "--from remote" with git annex unused
6997    and git annex dropunused.
6998  * Clear up short option confusion between --from and --force (-f is now
6999    --from, and there is no short option for --force).
7000  * Add build depend on perlmagick so docs are consistently built.
7001    Closes: #621410
7002  * Add doc-base file. Closes: #621408
7003  * Periodically flush git command queue, to avoid boating memory usage
7004    too much.
7005  * Support "sha1" and "sha512" commands on FreeBSD, and allow building
7006    if any/all SHA commands are not available. Thanks, Fraser Tweedale
7007
7008 -- Joey Hess <joeyh@debian.org>  Sun, 17 Apr 2011 12:00:24 -0400
7009
7010git-annex (0.20110401) experimental; urgency=low
7011
7012  * Amazon S3 is now supported as a special type of remote.
7013    Warning: Encrypting data before sending it to S3 is not yet supported.
7014  * Note that Amazon S3 support is not built in by default on Debian yet,
7015    as hS3 is not packaged.
7016  * fsck: Ensure that files and directories in .git/annex/objects
7017    have proper permissions.
7018  * Added a special type of remote called a directory remote, which
7019    simply stores files in an arbitrary local directory.
7020  * Bugfix: copy --to --fast never really copied, fixed.
7021
7022 -- Joey Hess <joeyh@debian.org>  Fri, 01 Apr 2011 21:27:22 -0400
7023
7024git-annex (0.20110328) experimental; urgency=low
7025
7026  * annex.diskreserve can be given in arbitrary units (ie "0.5 gigabytes")
7027  * Generalized remotes handling, laying groundwork for remotes that are
7028    not regular git remotes. (Think Amazon S3.)
7029  * Provide a less expensive version of `git annex copy --to`, enabled
7030    via --fast. This assumes that location tracking information is correct,
7031    rather than contacting the remote for every file.
7032  * Bugfix: Keys could be received into v1 annexes from v2 annexes, via
7033    v1 git-annex-shell. This results in some oddly named keys in the v1
7034    annex. Recognise and fix those keys when upgrading, instead of crashing.
7035
7036 -- Joey Hess <joeyh@debian.org>  Mon, 28 Mar 2011 10:47:29 -0400
7037
7038git-annex (0.20110325) experimental; urgency=low
7039
7040  * Free space checking is now done, for transfers of data for keys
7041    that have free space metadata. (Notably, not for SHA* keys generated
7042    with git-annex 0.2x or earlier.) The code is believed to work on
7043    Linux, FreeBSD, and OSX; check compile-time messages to see if it
7044    is not enabled for your OS.
7045  * Add annex.diskreserve config setting, to control how much free space
7046    to reserve for other purposes and avoid using (defaults to 1 mb).
7047  * Add --fast flag, that can enable less expensive, but also less thorough
7048    versions of some commands.
7049  * fsck: In fast mode, avoid checking checksums.
7050  * unused: In fast mode, just show all existing temp files as unused,
7051    and avoid expensive scan for other unused content.
7052  * migrate: Support migrating v1 SHA keys to v2 SHA keys with
7053    size information that can be used for free space checking.
7054  * Fix space leak in fsck and drop commands.
7055  * migrate: Bugfix for case when migrating a file results in a key that
7056    is already present in .git/annex/objects.
7057  * dropunused: Significantly sped up; only read unused log file once.
7058
7059 -- Joey Hess <joeyh@debian.org>  Fri, 25 Mar 2011 00:47:37 -0400
7060
7061git-annex (0.20110320) experimental; urgency=low
7062
7063  * Fix dropping of files using the URL backend.
7064  * Fix support for remotes with '.' in their names.
7065  * Add version command to show git-annex version as well as repository
7066    version information.
7067  * No longer auto-upgrade to repository format 2, to avoid accidental
7068    upgrades, etc. Use git-annex upgrade when you're ready to run this
7069    version.
7070
7071 -- Joey Hess <joeyh@debian.org>  Sun, 20 Mar 2011 16:36:33 -0400
7072
7073git-annex (0.20110316) experimental; urgency=low
7074
7075  * New repository format, annex.version=2.
7076  * The first time git-annex is run in an old format repository, it
7077    will automatically upgrade it to the new format, staging all
7078    necessary changes to git. Also added a "git annex upgrade" command.
7079  * Colons are now avoided in filenames, so bare clones of git repos
7080    can be put on USB thumb drives formatted with vFAT or similar
7081    filesystems.
7082  * Added two levels of hashing to object directory and .git-annex logs,
7083    to improve scalability with enormous numbers of annexed
7084    objects. (With one hundred million annexed objects, each
7085    directory would contain fewer than 1024 files.)
7086  * The setkey, fromkey, and dropkey subcommands have changed how
7087    the key is specified. --backend is no longer used with these.
7088
7089 -- Joey Hess <joeyh@debian.org>  Wed, 16 Mar 2011 16:20:23 -0400
7090
7091git-annex (0.24) unstable; urgency=low
7092
7093  Branched the 0.24 series, which will be maintained for a while to
7094  support v1 git-annex repos, while main development moves to the 0.2011
7095  series, with v2 git-annex repos.
7096
7097  * Add Suggests on graphviz. Closes: #618039
7098  * When adding files to the annex, the symlinks pointing at the annexed
7099    content are made to have the same mtime as the original file.
7100    While git does not preserve that information, this allows a tool
7101    like metastore to be used with annexed files.
7102    (Currently this is only done on systems supporting POSIX 200809.)
7103
7104 -- Joey Hess <joeyh@debian.org>  Wed, 16 Mar 2011 18:35:13 -0400
7105
7106git-annex (0.23) unstable; urgency=low
7107
7108  * Support ssh remotes with a port specified.
7109  * whereis: New subcommand to show where a file's content has gotten to.
7110  * Rethink filename encoding handling for display. Since filename encoding
7111    may or may not match locale settings, any attempt to decode filenames
7112    will fail for some files. So instead, do all output in binary mode.
7113
7114 -- Joey Hess <joeyh@debian.org>  Sat, 12 Mar 2011 15:02:49 -0400
7115
7116git-annex (0.22) unstable; urgency=low
7117
7118  * Git annexes can now be attached to bare git repositories.
7119    (Both the local and remote host must have this version of git-annex
7120    installed for it to work.)
7121  * Support filenames that start with a dash; when such a file is passed
7122    to a utility it will be escaped to avoid it being interpreted as an
7123    option. (I went a little overboard and got the type checker involved
7124    in this, so such files are rather comprehensively supported now.)
7125  * New backends: SHA512 SHA384 SHA256 SHA224
7126    (Supported on systems where corresponding shaNsum commands are available.)
7127  * describe: New subcommand that can set or change the description of
7128    a repository.
7129  * Fix test suite to reap zombies.
7130    (Zombies can be particularly annoying on OSX; thanks to Jimmy Tang
7131    for his help eliminating the infestation... for now.)
7132  * Make test suite not rely on a working cp -pr.
7133    (The Unix wars are still ON!)
7134  * Look for dir.git directories the same as git does.
7135  * Support remote urls specified as relative paths.
7136  * Support non-ssh remote paths that contain tilde expansions.
7137  * fsck: Check for and repair location log damage.
7138  * Bugfix: When fsck detected and moved away corrupt file content, it did
7139    not update the location log.
7140
7141 -- Joey Hess <joeyh@debian.org>  Fri, 04 Mar 2011 15:10:57 -0400
7142
7143git-annex (0.21) unstable; urgency=low
7144
7145  * test: Don't rely on chmod -R working.
7146  * unannex: Fix recently introduced bug when attempting to unannex more
7147    than one file at a time.
7148  * test: Set git user name and email in case git can't guess values.
7149  * Fix display of unicode filenames.
7150
7151 -- Joey Hess <joeyh@debian.org>  Fri, 11 Feb 2011 23:21:08 -0400
7152
7153git-annex (0.20) unstable; urgency=low
7154
7155  * Preserve specified file ordering when instructed to act on multiple
7156    files or directories. For example, "git annex get a b" will now always
7157    get "a" before "b". Previously it could operate in either order.
7158  * unannex: Commit staged changes at end, to avoid some confusing behavior
7159    with the pre-commit hook, which would see some types of commits after
7160    an unannex as checking in of an unlocked file.
7161  * map: New subcommand that uses graphviz to display a nice map of
7162    the git repository network.
7163  * Deal with the mtl/monads-fd conflict.
7164  * configure: Check for sha1sum.
7165
7166 -- Joey Hess <joeyh@debian.org>  Tue, 08 Feb 2011 18:57:24 -0400
7167
7168git-annex (0.19) unstable; urgency=low
7169
7170  * configure: Support using the uuidgen command if the uuid command is
7171    not available.
7172  * Allow --exclude to be specified more than once.
7173  * There are now three levels of repository trust.
7174  * untrust: Now marks the current repository as untrusted.
7175  * semitrust: Now restores the default trust level. (What untrust used to do.)
7176  * fsck, drop: Take untrusted repositories into account.
7177  * Bugfix: Files were copied from trusted remotes first even if their
7178    annex.cost was higher than other remotes.
7179  * Improved temp file handling. Transfers of content can now be resumed
7180    from temp files later; the resume does not have to be the immediate
7181    next git-annex run.
7182  * unused: Include partially transferred content in the list.
7183  * Bugfix: Running a second git-annex while a first has a transfer in
7184    progress no longer deletes the first processes's temp file.
7185
7186 -- Joey Hess <joeyh@debian.org>  Fri, 28 Jan 2011 14:31:37 -0400
7187
7188git-annex (0.18) unstable; urgency=low
7189
7190  * Bugfix: `copy --to` and `move --to` forgot to stage location log changes
7191    after transferring the file to the remote repository.
7192    (Did not affect ssh remotes.)
7193  * fsck: Fix bug in moving of corrupted files to .git/annex/bad/
7194  * migrate: Fix support for --backend option.
7195  * unlock: Fix behavior when file content is not present.
7196  * Test suite improvements. Current top-level test coverage: 80%
7197
7198 -- Joey Hess <joeyh@debian.org>  Fri, 14 Jan 2011 14:17:44 -0400
7199
7200git-annex (0.17) unstable; urgency=low
7201
7202  * unannex: Now skips files whose content is not present, rather than
7203    it being an error.
7204  * New migrate subcommand can be used to switch files to using a different
7205    backend, safely and with no duplication of content.
7206  * bugfix: Fix crash caused by empty key name. (Thanks Henrik for reporting.)
7207
7208 -- Joey Hess <joeyh@debian.org>  Sun, 09 Jan 2011 10:04:11 -0400
7209
7210git-annex (0.16) unstable; urgency=low
7211
7212  * git-annex-shell: Avoid exposing any git repo config except for the
7213    annex.uuid when doing configlist.
7214  * bugfix: Running `move --to` with a remote whose UUID was not yet known
7215    could result in git-annex not recording on the local side where the
7216    file was moved to. This could not result in data loss, or even a
7217    significant problem, since the remote *did* record that it had the file.
7218  * Also, add a general guard to detect attempts to record information
7219    about repositories with missing UUIDs.
7220  * bugfix: Running `move --to` with a non-ssh remote failed.
7221  * bugfix: Running `copy --to` with a non-ssh remote actually did a move.
7222  * Many test suite improvements. Current top-level test coverage: 65%
7223
7224 -- Joey Hess <joeyh@debian.org>  Fri, 07 Jan 2011 14:33:13 -0400
7225
7226git-annex (0.15) unstable; urgency=low
7227
7228  * Support scp-style urls for remotes (host:path).
7229  * Support ssh urls containing "~".
7230  * Add trust and untrust subcommands, to allow configuring repositories
7231    that are trusted to retain files without explicit checking.
7232  * Fix bug in numcopies handling when multiple remotes pointed to the
7233    same repository.
7234  * Introduce the git-annex-shell command. It's now possible to make
7235    a user have it as a restricted login shell, similar to git-shell.
7236  * Note that git-annex will always use git-annex-shell when accessing
7237    a ssh remote, so all of your remotes need to be upgraded to this
7238    version of git-annex at the same time.
7239  * Now rsync is exclusively used for copying files to and from remotes.
7240    scp is not longer supported.
7241
7242 -- Joey Hess <joeyh@debian.org>  Fri, 31 Dec 2010 22:00:52 -0400
7243
7244git-annex (0.14) unstable; urgency=low
7245
7246  * Bugfix to git annex unused in a repository with nothing yet annexed.
7247  * Support upgrading from a v0 annex with nothing in it.
7248  * Avoid multiple calls to git ls-files when passed eg, "*".
7249
7250 -- Joey Hess <joeyh@debian.org>  Fri, 24 Dec 2010 17:38:48 -0400
7251
7252git-annex (0.13) unstable; urgency=low
7253
7254  * Makefile: Install man page and html (when built).
7255  * Makefile: Add GHCFLAGS variable.
7256  * Fix upgrade from 0.03.
7257  * Support remotes using git+ssh and ssh+git as protocol.
7258    Closes: #607056
7259
7260 -- Joey Hess <joeyh@debian.org>  Tue, 14 Dec 2010 13:05:10 -0400
7261
7262git-annex (0.12) unstable; urgency=low
7263
7264  * Add --exclude option to exclude files from processing.
7265  * mwdn2man: Fix a bug in newline supression. Closes: #606578
7266  * Bugfix to git annex add of an unlocked file in a subdir. Closes: #606579
7267  * Makefile: Add PREFIX variable.
7268
7269 -- Joey Hess <joeyh@debian.org>  Sat, 11 Dec 2010 17:32:00 -0400
7270
7271git-annex (0.11) unstable; urgency=low
7272
7273  * If available, rsync will be used for file transfers from remote
7274    repositories. This allows resuming interrupted transfers.
7275  * Added remote.annex-rsync-options.
7276  * Avoid deleting temp files when rsync fails.
7277  * Improve detection of version 0 repos.
7278  * Add uninit subcommand. Closes: #605749
7279
7280 -- Joey Hess <joeyh@debian.org>  Sat, 04 Dec 2010 17:27:42 -0400
7281
7282git-annex (0.10) unstable; urgency=low
7283
7284  * In .gitattributes, the annex.numcopies attribute can be used
7285    to control the number of copies to retain of different types of files.
7286  * Bugfix: Always correctly handle gitattributes when in a subdirectory of
7287    the repository. (Had worked ok for ones like "*.mp3", but failed for
7288    ones like "dir/*".)
7289  * fsck: Fix warning about not enough copies of a file, when locations
7290    are known, but are not available in currently configured remotes.
7291  * precommit: Optimise to avoid calling git-check-attr more than once.
7292  * The git-annex-backend attribute has been renamed to annex.backend.
7293
7294 -- Joey Hess <joeyh@debian.org>  Sun, 28 Nov 2010 19:28:05 -0400
7295
7296git-annex (0.09) unstable; urgency=low
7297
7298  * Add copy subcommand.
7299  * Fix bug in setkey subcommand triggered by move --to.
7300
7301 -- Joey Hess <joeyh@debian.org>  Sat, 27 Nov 2010 17:14:59 -0400
7302
7303git-annex (0.08) unstable; urgency=low
7304
7305  * Fix `git annex add ../foo` (when ran in a subdir of the repo).
7306  * Add configure step to build process.
7307  * Only use cp -a if it is supported, falling back to cp -p or plain cp
7308    as needed for portability.
7309  * cp --reflink=auto is used if supported, and will make git annex unlock
7310    much faster on filesystems like btrfs that support copy on write.
7311
7312 -- Joey Hess <joeyh@debian.org>  Sun, 21 Nov 2010 13:45:44 -0400
7313
7314git-annex (0.07) unstable; urgency=low
7315
7316  * find: New subcommand.
7317  * unused: New subcommand, finds unused data. (Split out from fsck.)
7318  * dropunused: New subcommand, provides for easy dropping of unused keys
7319    by number, as listed by the unused subcommand.
7320  * fsck: Print warnings to stderr; --quiet can now be used to only see
7321    problems.
7322
7323 -- Joey Hess <joeyh@debian.org>  Mon, 15 Nov 2010 18:41:50 -0400
7324
7325git-annex (0.06) unstable; urgency=low
7326
7327  * fsck: Check if annex.numcopies is satisfied.
7328  * fsck: Verify the sha1 of files when the SHA1 backend is used.
7329  * fsck: Verify the size of files when the WORM backend is used.
7330  * fsck: Allow specifying individual files if fscking everything
7331    is not desired.
7332  * fsck: Fix bug, introduced in 0.04, in detection of unused data.
7333
7334 -- Joey Hess <joeyh@debian.org>  Sat, 13 Nov 2010 16:24:29 -0400
7335
7336git-annex (0.05) unstable; urgency=low
7337
7338  * Optimize both pre-commit and lock subcommands to not call git diff
7339    on every file being committed/locked.
7340    (This actually also works around a bug in ghc, that caused
7341    git-annex 0.04 pre-commit to sometimes corrupt filename being read
7342    from git ls-files and fail.
7343    See <http://hackage.haskell.org/trac/ghc/ticket/4493>
7344    The excessive number of calls made by pre-commit exposed the ghc bug.
7345    Thanks Josh Triplett for the debugging.)
7346  * Build with -O2.
7347
7348 -- Joey Hess <joeyh@debian.org>  Thu, 11 Nov 2010 18:31:09 -0400
7349
7350git-annex (0.04) unstable; urgency=low
7351
7352  * Add unlock subcommand, which replaces the symlink with a copy of
7353    the file's content in preparation of changing it. The "edit" subcommand
7354    is an alias for unlock.
7355  * Add lock subcommand.
7356  * Unlocked files will now automatically be added back into the annex when
7357    committed (and the updated symlink committed), by some magic in the
7358    pre-commit hook.
7359  * The SHA1 backend is now fully usable.
7360  * Add annex.version, which will be used to automate upgrades
7361    between incompatible versions.
7362  * Reorganised the layout of .git/annex/
7363  * The new layout will be automatically upgraded to the first time
7364    git-annex is used in a repository with the old layout.
7365  * Note that git-annex 0.04 cannot transfer content from old repositories
7366    that have not yet been upgraded.
7367  * Annexed file contents are now made unwritable and put in unwriteable
7368    directories, to avoid them accidentally being removed or modified.
7369    (Thanks Josh Triplett for the idea.)
7370  * Add build dep on libghc6-testpack-dev. Closes: #603016
7371  * Avoid using runghc to run test suite as it is not available on all
7372    architectures. Closes: #603006
7373
7374 -- Joey Hess <joeyh@debian.org>  Wed, 10 Nov 2010 14:23:23 -0400
7375
7376git-annex (0.03) unstable; urgency=low
7377
7378  * Fix support for file:// remotes.
7379  * Add --verbose
7380  * Fix SIGINT handling.
7381  * Fix handling of files with unusual characters in their name.
7382  * Fixed memory leak; git-annex no longer reads the whole file list
7383    from git before starting, and will be much faster with large repos.
7384  * Fix crash on unknown symlinks.
7385  * Added remote.annex-scp-options and remote.annex-ssh-options.
7386  * The backends to use when adding different sets of files can be configured
7387    via gitattributes.
7388  * In .gitattributes, the git-annex-backend attribute can be set to the
7389    names of backends to use when adding different types of files.
7390  * Add fsck subcommand. (For now it only finds unused key contents in the
7391    annex.)
7392
7393 -- Joey Hess <joeyh@debian.org>  Sun, 07 Nov 2010 18:26:04 -0400
7394
7395git-annex (0.02) unstable; urgency=low
7396
7397  * Can scp annexed files from remote hosts, and check remote hosts for
7398    file content when dropping files.
7399  * New move subcommand, that makes it easy to move file contents from
7400    or to a remote.
7401  * New fromkey subcommand, for registering urls, etc.
7402  * git-annex init will now set up a pre-commit hook that fixes up symlinks
7403    before they are committed, to ensure that moving symlinks around does not
7404    break them.
7405  * More intelligent and fast staging of modified files; git add coalescing.
7406  * Add remote.annex-ignore git config setting to allow completly disabling
7407    a given remote.
7408  * --from/--to can be used to control the remote repository that git-annex
7409    uses.
7410  * --quiet can be used to avoid verbose output
7411  * New plumbing-level dropkey and addkey subcommands.
7412  * Lots of bug fixes.
7413
7414 -- Joey Hess <joeyh@debian.org>  Wed, 27 Oct 2010 16:39:29 -0400
7415
7416git-annex (0.01) unstable; urgency=low
7417
7418  * First prerelease.
7419
7420 -- Joey Hess <joeyh@debian.org>  Wed, 20 Oct 2010 12:54:24 -0400
7421