Releases: bep/overlayfs
Releases · bep/overlayfs
v0.10.0
v0.9.2
v0.9.1
v0.9.0
v0.8.0
v0.7.0: Add support for fs.ReadDirFile
Which is much more effective when walking directories.
v0.6.0: Make a copy of the slices returned in Readdir
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
v0.4.0: Add a sync.Pool for the Dir struct
```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) ```