summaryrefslogtreecommitdiff
path: root/doc/bugs
Commit message (Collapse)AuthorAge
* commentGravatar Joey Hess2017-10-11
|
* webdav: Avoid unncessisarily creating the collection at the top of the repoGravatar Joey Hess2017-10-11
| | | | | | | | | | | | when storing files there, since that collection is created by initremote. (This seems to work around some brokenness of the box.com webdav server which was entering a redirect loop.) Note that the fix makes locationParent return Nothing instead of "." when there's no parent directory between the path and the top of the webdav repo. This commit was sponsored by André Pereira on Patreon.
* Fix build with aws-0.17.Gravatar Joey Hess2017-10-11
| | | | This commit was sponsored by Denis Dzyubenko on Patreon.
* closeGravatar Joey Hess2017-10-11
|
* responseGravatar Joey Hess2017-10-10
|
* Added a comment: annex fsck reverts them back to incorrect!Gravatar yarikoptic2017-10-10
|
* initial reportGravatar yarikoptic2017-10-10
|
* Added a commentGravatar madalu2017-10-09
|
* Added a comment: Reproduction of bug with "pure" stack buildGravatar madalu2017-10-09
|
* Added a commentGravatar madalu2017-10-09
|
* Added a comment: Second test (without line 134)Gravatar madalu2017-10-09
|
* Added a comment: First testGravatar madalu2017-10-09
|
* webdav: Make --debug show all webdav operations.Gravatar Joey Hess2017-10-07
|
* responseGravatar Joey Hess2017-10-07
|
* change wordingGravatar madalu2017-10-07
|
* (no commit message)Gravatar madalu2017-10-07
|
* (no commit message)Gravatar madalu2017-10-06
|
* Added a commentGravatar madalu2017-10-06
|
* removedGravatar madalu2017-10-06
|
* Added a commentGravatar yarikoptic2017-10-06
|
* Added a commentGravatar yarikoptic2017-10-05
|
* Added a comment: also the same for addGravatar yarikoptic2017-10-05
|
* Added a commentGravatar https://launchpad.net/~felixonmars2017-10-05
|
* (no commit message)Gravatar ilovezfs2017-10-04
|
* (no commit message)Gravatar ilovezfs2017-10-04
|
* analysis; probably not a bugGravatar Joey Hess2017-10-02
|
* followupGravatar Joey Hess2017-10-02
|
* close old bug which got fixed in the meantimeGravatar Joey Hess2017-10-02
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2017-10-02
|\
* | you requested his old closed bugs not be deleted yetGravatar Joey Hess2017-10-02
| |
* | forgot to add commentGravatar Joey Hess2017-10-02
| |
| * Added a comment: A hint?Gravatar jgoerzen2017-10-02
|/
* Added a commentGravatar madalu2017-09-30
|
* fix process and FD leakGravatar Joey Hess2017-09-29
| | | | | | | | | | | | | Fix process and file descriptor leak that was exposed when git-annex was built with ghc 8.2.1. Apparently ghc has changed its behavior of GC of open file handles that are pipes to running processes. That broke git-annex test on OSX due to running out of FDs. Audited for all uses of Annex.new and made stopCoProcesses be called once it's done with the state. Fixed several places that might have leaked in other situations than running the test suite. This commit was sponsored by Ewen McNeill.
* Added a commentGravatar michalrus2017-09-29
|
* Added a commentGravatar michalrus2017-09-29
|
* retitleGravatar Joey Hess2017-09-29
|
* commentGravatar Joey Hess2017-09-29
|
* test: Fix reversion that made it only run inside a git repository.Gravatar Joey Hess2017-09-29
| | | | | | | | Using annexeval to run probeCrippledFileSystem' caused Git.CurrentRepo.get to be run. Fixed easily since probeCrippledFileSystem' had no need to use the Annex monad. This commit was sponsored by Ethan Aubin.
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2017-09-29
|\
* | commentGravatar Joey Hess2017-09-29
| |
| * Fix git-annex commandGravatar madalu2017-09-29
| |
| * Added a commentGravatar madalu2017-09-29
|/
* commentGravatar Joey Hess2017-09-29
|
* remove old closed bugs and todo items to speed up wiki updates and reduce sizeGravatar Joey Hess2017-09-29
| | | | | | | | | Remove closed bugs and todos that were last edited or commented before 2017. Command line used: for f in $(grep -l '|done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=01-01-2017 --pretty=oneline -- "$f")" -a -z "$(git log --since=01-01-2017 --pretty=oneline -- "$d")" ]; then git rm -- "./$f" ; git rm -rf "./$d"; fi; done for f in $(grep -l '\[\[done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=01-01-2017 --pretty=oneline -- "$f")" -a -z "$(git log --since=01-01-2017 --pretty=oneline -- "$d")" ]; then git rm -- "./$f" ; git rm -rf "./$d"; fi; done
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2017-09-29
|\
* | limit rss/atom feeds to 10 pages to avoid enormous filesGravatar Joey Hess2017-09-29
| | | | | | | | | | Since bug reports are often long, the rss and atom feeds were 5+ mb in size.
* | followupGravatar Joey Hess2017-09-29
| |
| * Added a commentGravatar madalu2017-09-29
|/
* Warn when metadata is inherited from a previous version of a fileGravatar Joey Hess2017-09-28
| | | | | | to avoid the user being surprised in cases where that behavior is not desired or expected This commit was supported by the NSF-funded DataLad project.