Releases: ipfs/go-ds-flatfs
Releases · ipfs/go-ds-flatfs
v0.5.1
What's Changed
- fix: add context to DiskUsage() by @guseggert in #100
- Version 0.5.1 by @guseggert in #101
Full Changelog: v0.5.0...v0.5.1
v0.5.0
What's Changed
- fix typo in readme.go by @vorburger in #89
- fix staticcheck by @marten-seemann in #92
- sync: update CI config files by @web3-bot in #93 #94 #96 #97
- feat: add contexts on datastore methods by @guseggert in #98
- Version 0.5.0 by @guseggert in #99
New Contributors
- @vorburger made their first contribution in #89
- @marten-seemann made their first contribution in #92
Full Changelog: v0.4.5...v0.5.0
v0.4.5
v0.4.4
v0.4.3
v0.4.2
v0.4.1
This release ensures temporary files are actually deleted. Previously, we'd write temporary files to the same directory as the rest of the data. However, if we failed to finish a put (crashed, closed, failed for some other reason, etc.), we'd leave the temporary file behind in many cases (after trying to remove it once).
Now, we put all temporary files in a temporary directory, and clean out the entire temporary directory on start.
Release v0.4.0
- Supports the complete query logic (through a naive, very slow implementation).
- Explicitly forbids unsupported keys instead of failing with cryptic errors at runtime on different platforms.