Skip to content

Tags: spf13/afero

Tags

v1.9.5

Toggle v1.9.5's commit message
Fix failing tests on Windows with Go 1.20

v1.9.4

Toggle v1.9.4's commit message
all: Run gofumpt -l -w .

v1.9.3

Toggle v1.9.3's commit message
Fix concurrency issue in MemMapFs.Mkdir/MkdirAll

* The backing map is protected by a RWMutex
* This commit double checks for the existence of the directory inside the write lock to avoid potential data races when multiple goroutines tries to create
the same directory.

Fixes #361
Fixes #298

v1.9.2

Toggle v1.9.2's commit message
Make mem.File implement fs.ReadDirFile

v1.9.1

Toggle v1.9.1's commit message
Fix sorting in IOFS.ReadDir

We recently added a check for fs.ReadDirFile in IOFS.ReadDir, but forgot to apply a sort to the
result as defined in the spec.

This fixes that and adds a test case for it.

v1.9.0

Toggle v1.9.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update README.md

v1.8.2

Toggle v1.8.2's commit message
go mod tidy

v1.8.1

Toggle v1.8.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #334 from KastenMike/add-modTime-to-folders

add modTime on folder creation

v1.8.0

Toggle v1.8.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #332 from pojntfx/master

Call `OpenFile` instead of `Open` in `CacheOnReadFs` (fixes #193)

v1.7.1

Toggle v1.7.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #333 from drakkan/gcsfs

GCS fs: move all gcsfs related implementations to its own package