spf13/afero
### [`v1.9.3`](https://togithub.com/spf13/afero/releases/tag/v1.9.3)
[Compare Source](https://togithub.com/spf13/afero/compare/v1.9.2...v1.9.3)
#### What's Changed
- Fix concurrency issue in MemMapFs.Mkdir/MkdirAll by [@bep](https://togithub.com/bep) in [https://github.com/spf13/afero/pull/379](https://togithub.com/spf13/afero/pull/379)
**Full Changelog**: https://github.com/spf13/afero/compare/v1.9.2...v1.9.3
### [`v1.9.2`](https://togithub.com/spf13/afero/releases/tag/v1.9.2)
[Compare Source](https://togithub.com/spf13/afero/compare/v1.9.1...v1.9.2)
#### What's Changed
- Make mem.File implement fs.ReadDirFile by [@bep](https://togithub.com/bep) in [https://github.com/spf13/afero/pull/371](https://togithub.com/spf13/afero/pull/371)
**Full Changelog**: https://github.com/spf13/afero/compare/v1.9.1...v1.9.2
### [`v1.9.1`](https://togithub.com/spf13/afero/releases/tag/v1.9.1)
[Compare Source](https://togithub.com/spf13/afero/compare/v1.9.0...v1.9.1)
#### What's Changed
- Fix sorting in IOFS.ReadDir by [@bep](https://togithub.com/bep) in [https://github.com/spf13/afero/pull/372](https://togithub.com/spf13/afero/pull/372)
**Full Changelog**: https://github.com/spf13/afero/compare/v1.9.0...v1.9.1
### [`v1.9.0`](https://togithub.com/spf13/afero/releases/tag/v1.9.0)
[Compare Source](https://togithub.com/spf13/afero/compare/v1.8.2...v1.9.0)
#### What's Changed
- Update `go.mod` to reflect that `afero` requires `go` >= `1.15.10` by [@jeffwidman](https://togithub.com/jeffwidman) in [https://github.com/spf13/afero/pull/346](https://togithub.com/spf13/afero/pull/346)
- Move CI tests to GitHub Action by [@bep](https://togithub.com/bep) in [https://github.com/spf13/afero/pull/367](https://togithub.com/spf13/afero/pull/367)
- Misc build/test fixes by [@bep](https://togithub.com/bep) in [https://github.com/spf13/afero/pull/368](https://togithub.com/spf13/afero/pull/368)
- Fix staticcheck lint errors by [@bep](https://togithub.com/bep) in [https://github.com/spf13/afero/pull/369](https://togithub.com/spf13/afero/pull/369)
- Make IOFS.ReadDir check for fs.ReadDirFile by [@bep](https://togithub.com/bep) in [https://github.com/spf13/afero/pull/366](https://togithub.com/spf13/afero/pull/366)
#### New Contributors
- [@jeffwidman](https://togithub.com/jeffwidman) made their first contribution in [https://github.com/spf13/afero/pull/346](https://togithub.com/spf13/afero/pull/346)
**Full Changelog**: https://github.com/spf13/afero/compare/v1.8.2...v1.9.0
### [`v1.8.2`](https://togithub.com/spf13/afero/releases/tag/v1.8.2): : RemoveAll fixes in MemMapFs and GcsFs
[Compare Source](https://togithub.com/spf13/afero/compare/v1.8.1...v1.8.2)
- Fix gcsfs RemoveAll by [@typerat](https://togithub.com/typerat) in [https://github.com/spf13/afero/pull/340](https://togithub.com/spf13/afero/pull/340)
- bugfix: RemoveAll by [@yearnfar](https://togithub.com/yearnfar) in [https://github.com/spf13/afero/pull/329](https://togithub.com/spf13/afero/pull/329)
### [`v1.8.1`](https://togithub.com/spf13/afero/releases/tag/v1.8.1): : memfs: add modTime on folder creation
[Compare Source](https://togithub.com/spf13/afero/compare/v1.8.0...v1.8.1)
### [`v1.8.0`](https://togithub.com/spf13/afero/releases/tag/v1.8.0): : Support sftpfs.Readdirnames, sftpfs.Readdir, CacheOnReadFs bugfix
[Compare Source](https://togithub.com/spf13/afero/compare/v1.7.1...v1.8.0)
- sftpfs: Add support for Readdirnames and Readdir
- CacheOnReadFs: Call OpenFile instead of Open in CacheOnReadFs.OpenFile
### [`v1.7.1`](https://togithub.com/spf13/afero/releases/tag/v1.7.1): : Move GCS into its own package
[Compare Source](https://togithub.com/spf13/afero/compare/v1.7.0...v1.7.1)
### [`v1.7.0`](https://togithub.com/spf13/afero/releases/tag/v1.7.0): : Add experimental GCS support
[Compare Source](https://togithub.com/spf13/afero/compare/v1.6.0...v1.7.0)
Add experimental GCS support in Afero. Experimental because the CI infra of afero does not test with real GCS buckets.
**Limitations:**
- No Chmod support - The GCS ACL could probably be mapped to \*nix style permissions but that would add another level of complexity and is ignored in this version.
- No Chtimes support - Could be simulated with attributes (gcs a/m-times are set implicitly) but that's is left for another version.
- NOTE: Not thread safe - Also assumes all file operations are done through the same instance of the GcsFs. File operations between different GcsFs instances are not guaranteed to be consistent.
**Performance implications**
- Sequential reads are performant
- Sequential writes are performant.
- Seek + Read or ReadAt is performant after the initial seek. (produces a warning)
- Alternating reads/writes to the same file handler are highly inefficient. To get consistent FS behavior using an API that separates readers and writers we close any open readers before an write as well close open writers before a read (ensure the data is committed).
- Seek + Write such as WriteAt, Truncate, Seek+Write will work as expected but with significant overhead. Doing a seek + write will in effect download the old file/object, overlay it with the new writes and save it back. This is done in a streaming fashion so large files will not clog the memory but will trigger a full download and upload of the file/object.
Configuration
📅 Schedule: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" in timezone Europe/Vienna, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
[ ] If you want to rebase/retry this PR, check this box
This PR has been generated by Mend Renovate. View repository job log here.
This PR contains the following updates:
v1.6.0
->v1.9.3
Release Notes
spf13/afero
### [`v1.9.3`](https://togithub.com/spf13/afero/releases/tag/v1.9.3) [Compare Source](https://togithub.com/spf13/afero/compare/v1.9.2...v1.9.3) #### What's Changed - Fix concurrency issue in MemMapFs.Mkdir/MkdirAll by [@bep](https://togithub.com/bep) in [https://github.com/spf13/afero/pull/379](https://togithub.com/spf13/afero/pull/379) **Full Changelog**: https://github.com/spf13/afero/compare/v1.9.2...v1.9.3 ### [`v1.9.2`](https://togithub.com/spf13/afero/releases/tag/v1.9.2) [Compare Source](https://togithub.com/spf13/afero/compare/v1.9.1...v1.9.2) #### What's Changed - Make mem.File implement fs.ReadDirFile by [@bep](https://togithub.com/bep) in [https://github.com/spf13/afero/pull/371](https://togithub.com/spf13/afero/pull/371) **Full Changelog**: https://github.com/spf13/afero/compare/v1.9.1...v1.9.2 ### [`v1.9.1`](https://togithub.com/spf13/afero/releases/tag/v1.9.1) [Compare Source](https://togithub.com/spf13/afero/compare/v1.9.0...v1.9.1) #### What's Changed - Fix sorting in IOFS.ReadDir by [@bep](https://togithub.com/bep) in [https://github.com/spf13/afero/pull/372](https://togithub.com/spf13/afero/pull/372) **Full Changelog**: https://github.com/spf13/afero/compare/v1.9.0...v1.9.1 ### [`v1.9.0`](https://togithub.com/spf13/afero/releases/tag/v1.9.0) [Compare Source](https://togithub.com/spf13/afero/compare/v1.8.2...v1.9.0) #### What's Changed - Update `go.mod` to reflect that `afero` requires `go` >= `1.15.10` by [@jeffwidman](https://togithub.com/jeffwidman) in [https://github.com/spf13/afero/pull/346](https://togithub.com/spf13/afero/pull/346) - Move CI tests to GitHub Action by [@bep](https://togithub.com/bep) in [https://github.com/spf13/afero/pull/367](https://togithub.com/spf13/afero/pull/367) - Misc build/test fixes by [@bep](https://togithub.com/bep) in [https://github.com/spf13/afero/pull/368](https://togithub.com/spf13/afero/pull/368) - Fix staticcheck lint errors by [@bep](https://togithub.com/bep) in [https://github.com/spf13/afero/pull/369](https://togithub.com/spf13/afero/pull/369) - Make IOFS.ReadDir check for fs.ReadDirFile by [@bep](https://togithub.com/bep) in [https://github.com/spf13/afero/pull/366](https://togithub.com/spf13/afero/pull/366) #### New Contributors - [@jeffwidman](https://togithub.com/jeffwidman) made their first contribution in [https://github.com/spf13/afero/pull/346](https://togithub.com/spf13/afero/pull/346) **Full Changelog**: https://github.com/spf13/afero/compare/v1.8.2...v1.9.0 ### [`v1.8.2`](https://togithub.com/spf13/afero/releases/tag/v1.8.2): : RemoveAll fixes in MemMapFs and GcsFs [Compare Source](https://togithub.com/spf13/afero/compare/v1.8.1...v1.8.2) - Fix gcsfs RemoveAll by [@typerat](https://togithub.com/typerat) in [https://github.com/spf13/afero/pull/340](https://togithub.com/spf13/afero/pull/340) - bugfix: RemoveAll by [@yearnfar](https://togithub.com/yearnfar) in [https://github.com/spf13/afero/pull/329](https://togithub.com/spf13/afero/pull/329) ### [`v1.8.1`](https://togithub.com/spf13/afero/releases/tag/v1.8.1): : memfs: add modTime on folder creation [Compare Source](https://togithub.com/spf13/afero/compare/v1.8.0...v1.8.1) ### [`v1.8.0`](https://togithub.com/spf13/afero/releases/tag/v1.8.0): : Support sftpfs.Readdirnames, sftpfs.Readdir, CacheOnReadFs bugfix [Compare Source](https://togithub.com/spf13/afero/compare/v1.7.1...v1.8.0) - sftpfs: Add support for Readdirnames and Readdir - CacheOnReadFs: Call OpenFile instead of Open in CacheOnReadFs.OpenFile ### [`v1.7.1`](https://togithub.com/spf13/afero/releases/tag/v1.7.1): : Move GCS into its own package [Compare Source](https://togithub.com/spf13/afero/compare/v1.7.0...v1.7.1) ### [`v1.7.0`](https://togithub.com/spf13/afero/releases/tag/v1.7.0): : Add experimental GCS support [Compare Source](https://togithub.com/spf13/afero/compare/v1.6.0...v1.7.0) Add experimental GCS support in Afero. Experimental because the CI infra of afero does not test with real GCS buckets. **Limitations:** - No Chmod support - The GCS ACL could probably be mapped to \*nix style permissions but that would add another level of complexity and is ignored in this version. - No Chtimes support - Could be simulated with attributes (gcs a/m-times are set implicitly) but that's is left for another version. - NOTE: Not thread safe - Also assumes all file operations are done through the same instance of the GcsFs. File operations between different GcsFs instances are not guaranteed to be consistent. **Performance implications** - Sequential reads are performant - Sequential writes are performant. - Seek + Read or ReadAt is performant after the initial seek. (produces a warning) - Alternating reads/writes to the same file handler are highly inefficient. To get consistent FS behavior using an API that separates readers and writers we close any open readers before an write as well close open writers before a read (ensure the data is committed). - Seek + Write such as WriteAt, Truncate, Seek+Write will work as expected but with significant overhead. Doing a seek + write will in effect download the old file/object, overlay it with the new writes and save it back. This is done in a streaming fashion so large files will not clog the memory but will trigger a full download and upload of the file/object.Configuration
📅 Schedule: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" in timezone Europe/Vienna, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.