Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Bump github.com/spf13/afero from 1.2.2 to 1.8.0 #144

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jan 5, 2022

Bumps github.com/spf13/afero from 1.2.2 to 1.8.0.

Release notes

Sourced from github.com/spf13/afero's releases.

v1.7.1: Move GCS into its own package

No release notes provided.

v1.7.0: Add experimental GCS support

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.

v1.5.1: Fix setting gid in chown implementation

No release notes provided.

v1.5.0: Add chown support

No release notes provided.

v1.4.1: Do not panic on passing empty tar reader to tarfs

No release notes provided.

v1.4.0: read-only tarfs implementation

No release notes provided.

v1.3.5: offset fixes in mem and UnionFile

Includes:

  • mem: fix incorrect offset in Write
  • Fix amount of files read in UnionFile.Readdir

v1.3.3: Improved handling of mode bits

No release notes provided.

v1.3.1: Fix panic when not filling up zipfs's read buffer

No release notes provided.

Commits
  • cd35605 Merge pull request #332 from pojntfx/master
  • 8298014 Merge pull request #306 from lixiangzhong/master
  • 4806203 Merge branch 'master' into master
  • d8a4ef9 Merge pull request #333 from drakkan/gcsfs
  • 165e3dc GCS fs: move all gcsfs related implementations to its own package
  • 039e386 Call OpenFile instead of Open in CacheOnReadFs (fixes #193)
  • d70f944 Merge pull request #331 from kargakis/gcs
  • 68b7156 Add README section for GCS Fs
  • 21b977b Merge branch 'master' into gcs
  • 949437f Readme: fix quotes of step 3
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [github.com/spf13/afero](https://github.com/spf13/afero) from 1.2.2 to 1.8.0.
- [Release notes](https://github.com/spf13/afero/releases)
- [Commits](spf13/afero@v1.2.2...v1.8.0)

---
updated-dependencies:
- dependency-name: github.com/spf13/afero
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file minor labels Jan 5, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file minor
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants