Skip to content

Releases: bep/overlayfs

v0.10.0

26 Feb 13:54
@bep bep

Choose a tag to compare

What's Changed

Full Changelog: v0.9.2...v0.10.0

v0.9.2

25 Feb 09:57
@bep bep

Choose a tag to compare

What's Changed

  • Improve panic message on unsupported dir ops by @bep in #9

Full Changelog: v0.9.1...v0.9.2

v0.9.1

12 Oct 10:53
@bep bep

Choose a tag to compare

What's Changed

  • Fix Stat for directories opened with OpenDir by @bep in #8

Full Changelog: v0.9.0...v0.9.1

v0.9.0

10 Oct 14:22
@bep bep

Choose a tag to compare

What's Changed

  • Add WithDirsMerger by @bep in #7

Full Changelog: v0.8.0...v0.9.0

v0.8.0

28 Jul 10:32
@bep bep

Choose a tag to compare

What's Changed

  • feat/union dir by @bep in #5

Full Changelog: v0.7.0...v0.8.0

v0.7.0: Add support for fs.ReadDirFile

14 Jul 18:15
@bep bep

Choose a tag to compare

Which is much more effective when walking directories.

v0.6.0: Make a copy of the slices returned in Readdir

18 Apr 16:32
@bep bep

Choose a tag to compare

 Because we're reusing the `Dir` instances and clients hold on to their slices.

 ```bash
 name                    old time/op    new time/op    delta
 OverlayFs/OverlayFs-10    1.26µs ± 0%    1.27µs ± 0%  +0.69%  (p=0.029 n=4+4)

 name                    old alloc/op   new alloc/op   delta
 OverlayFs/OverlayFs-10      632B ± 0%      664B ± 0%  +5.06%  (p=0.029 n=4+4)

 name                    old allocs/op  new allocs/op  delta
 OverlayFs/OverlayFs-10      32.0 ± 0%      33.0 ± 0%  +3.12%  (p=0.029 n=4+4)
 ```

v0.5.0

14 Apr 16:27
@bep bep
2f8cf1c

Choose a tag to compare

Implement file.Readdir/Readdirnames for n > 0

v0.4.0: Add a sync.Pool for the Dir struct

09 Apr 16:58
@bep bep
f2827b4

Choose a tag to compare

```bash
name                    old time/op    new time/op    delta
OverlayFs/OverlayFs-10    1.41µs ± 0%    1.25µs ± 0%  -11.09%  (p=0.029 n=4+4)

name                    old alloc/op   new alloc/op   delta
OverlayFs/OverlayFs-10      856B ± 0%      664B ± 0%  -22.43%  (p=0.029 n=4+4)

name                    old allocs/op  new allocs/op  delta
OverlayFs/OverlayFs-10      39.0 ± 0%      33.0 ± 0%  -15.38%  (p=0.029 n=4+4)
```

v0.3.0

08 Apr 16:13
@bep bep
406d509

Choose a tag to compare

Preserve non-ErrNotExist errors in Stat and LstatIfPossible