Skip to content

Releases: asimihsan/arqinator

v0.1.7

19 Feb 20:47
Compare
Choose a tag to compare
v0.1.7 Pre-release
Pre-release
  • e0a83f7: don't close a file we're about to write to. This didn't cause any errors whilst recovering files but this change doesn't make sense.

v0.1.6

19 Feb 20:28
Compare
Choose a tag to compare
v0.1.6 Pre-release
Pre-release
  • b84e5f6: Close files after you open them. This prevents one part of a problem that was causing file handles to leak.
  • f5fc707: Stop mmap'ing index files because this was also leaking file handles. This was an optimization to reduce the memory usage due to loading an index file, but since they are not expected to ever exceed 10MB this isn't worth it.
  • 34ba9bc: When recovering, if a directory is not found in the Arq backup then instead of fatally failing warn loudly and continue attempting to recover other directories.
  • 1c95559: always verify if a packset is valid, even if the connector we use to download it suggests it failed to download it. This may help with e.g. S3 downloads if the connection pool it uses fails but the file download actually succeeds.

v0.1.5

19 Feb 01:29
Compare
Choose a tag to compare
v0.1.5 Pre-release
Pre-release
  • Didn't bump the version number in the previous release. This release fixes that so there's no confusion.

v0.1.4

19 Feb 01:13
Compare
Choose a tag to compare
v0.1.4 Pre-release
Pre-release
  • 8df12bf: If zero-byte or corrupt pack files are found then delete them and try downloading them again. This resolves #2.

v0.1.3

11 Oct 23:33
Compare
Choose a tag to compare
v0.1.3 Pre-release
Pre-release
  • Add SFTP support.