Skip to content

Conversation

@renovate
Copy link

@renovate renovate bot commented Apr 26, 2023

This PR contains the following updates:

Package Change Age Confidence
github.com/spf13/afero v1.6.0v1.15.0 age confidence

Release Notes

spf13/afero (github.com/spf13/afero)

v1.15.0

Compare Source

What's Changed

New Contributors

Full Changelog: spf13/afero@v1.14.0...v1.15.0

v1.14.0

Compare Source

What's Changed

Full Changelog: spf13/afero@v1.13.0...v1.14.0

v1.13.0

Compare Source

What's Changed

New Contributors

Full Changelog: spf13/afero@v1.12.0...v1.13.0

v1.12.0

Compare Source

What's Changed

New Contributors

Full Changelog: spf13/afero@v1.11.0...v1.12.0

v1.11.0

Compare Source

What's Changed

Full Changelog: spf13/afero@v1.10.0...v1.11.0

v1.10.0

Compare Source

What's Changed

New Contributors

Full Changelog: spf13/afero@v1.9.5...v1.10.0

v1.9.5

Compare Source

Full Changelog: spf13/afero@v1.9.4...v1.9.5

v1.9.4

Compare Source

What's Changed

New Contributors

Full Changelog: spf13/afero@v1.9.3...v1.9.4

v1.9.3

Compare Source

What's Changed

  • Fix concurrency issue in MemMapFs.Mkdir/MkdirAll by @​bep in #​379

Full Changelog: spf13/afero@v1.9.2...v1.9.3

v1.9.2

Compare Source

What's Changed

Full Changelog: spf13/afero@v1.9.1...v1.9.2

v1.9.1

Compare Source

What's Changed

Full Changelog: spf13/afero@v1.9.0...v1.9.1

v1.9.0

Compare Source

What's Changed

New Contributors

Full Changelog: spf13/afero@v1.8.2...v1.9.0

v1.8.2: : RemoveAll fixes in MemMapFs and GcsFs

Compare Source

v1.8.1: : memfs: add modTime on folder creation

Compare Source

v1.8.0: : Support sftpfs.Readdirnames, sftpfs.Readdir, CacheOnReadFs bugfix

Compare Source

  • sftpfs: Add support for Readdirnames and Readdir
  • CacheOnReadFs: Call OpenFile instead of Open in CacheOnReadFs.OpenFile

v1.7.1: : Move GCS into its own package

Compare Source

v1.7.0: : Add experimental GCS support

Compare Source

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 - At any time (no schedule defined), 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title fix(deps): update module github.com/spf13/afero to v1.9.5 fix(deps): update module github.com/spf13/afero to v1.10.0 Sep 23, 2023
@renovate renovate bot force-pushed the renovate/github.com-spf13-afero-1.x branch from e773462 to 70078a5 Compare September 23, 2023 08:18
@renovate renovate bot changed the title fix(deps): update module github.com/spf13/afero to v1.10.0 fix(deps): update module github.com/spf13/afero to v1.11.0 Nov 30, 2023
@renovate renovate bot force-pushed the renovate/github.com-spf13-afero-1.x branch from 70078a5 to 9a087bb Compare November 30, 2023 17:54
@renovate renovate bot force-pushed the renovate/github.com-spf13-afero-1.x branch from 9a087bb to 2dcb28b Compare January 10, 2025 03:16
@renovate renovate bot changed the title fix(deps): update module github.com/spf13/afero to v1.11.0 fix(deps): update module github.com/spf13/afero to v1.12.0 Jan 10, 2025
@renovate
Copy link
Author

renovate bot commented Jan 10, 2025

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 2 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.17 -> 1.23.0
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c -> v0.16.0
golang.org/x/text v0.3.6 -> v0.28.0

@renovate renovate bot force-pushed the renovate/github.com-spf13-afero-1.x branch from 2dcb28b to 8bccb3c Compare March 4, 2025 20:15
@renovate renovate bot force-pushed the renovate/github.com-spf13-afero-1.x branch 2 times, most recently from e06215d to 0b16fb8 Compare March 15, 2025 11:26
@renovate renovate bot changed the title fix(deps): update module github.com/spf13/afero to v1.12.0 fix(deps): update module github.com/spf13/afero to v1.13.0 Mar 15, 2025
@renovate renovate bot force-pushed the renovate/github.com-spf13-afero-1.x branch from 0b16fb8 to 2e4af3a Compare March 16, 2025 11:13
@renovate renovate bot changed the title fix(deps): update module github.com/spf13/afero to v1.13.0 fix(deps): update module github.com/spf13/afero to v1.14.0 Mar 16, 2025
@renovate renovate bot force-pushed the renovate/github.com-spf13-afero-1.x branch from 2e4af3a to 6c549ec Compare April 12, 2025 04:06
@renovate renovate bot force-pushed the renovate/github.com-spf13-afero-1.x branch from 6c549ec to e66da2a Compare May 10, 2025 04:11
@renovate renovate bot force-pushed the renovate/github.com-spf13-afero-1.x branch 2 times, most recently from 834c9b4 to 185eda9 Compare August 15, 2025 00:01
@renovate renovate bot force-pushed the renovate/github.com-spf13-afero-1.x branch from 185eda9 to e3ef220 Compare September 8, 2025 19:38
@renovate renovate bot changed the title fix(deps): update module github.com/spf13/afero to v1.14.0 fix(deps): update module github.com/spf13/afero to v1.15.0 Sep 8, 2025
@renovate
Copy link
Author

renovate bot commented Dec 15, 2025

ℹ️ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 2 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.17 -> 1.23.0
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c -> v0.16.0
golang.org/x/text v0.3.6 -> v0.28.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant