mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-30 17:00:57 -06:00
build(deps): bump github.com/spf13/afero from 1.12.0 to 1.14.0
Bumps [github.com/spf13/afero](https://github.com/spf13/afero) from 1.12.0 to 1.14.0. - [Release notes](https://github.com/spf13/afero/releases) - [Commits](https://github.com/spf13/afero/compare/v1.12.0...v1.14.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>
This commit is contained in:
2
go.mod
2
go.mod
@@ -76,7 +76,7 @@ require (
|
||||
github.com/rs/zerolog v1.33.0
|
||||
github.com/shamaton/msgpack/v2 v2.2.3
|
||||
github.com/sirupsen/logrus v1.9.3
|
||||
github.com/spf13/afero v1.12.0
|
||||
github.com/spf13/afero v1.14.0
|
||||
github.com/spf13/cobra v1.9.1
|
||||
github.com/stretchr/testify v1.10.0
|
||||
github.com/test-go/testify v1.1.4
|
||||
|
||||
4
go.sum
4
go.sum
@@ -1038,8 +1038,8 @@ github.com/spacewander/go-suffix-tree v0.0.0-20191010040751-0865e368c784/go.mod
|
||||
github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA=
|
||||
github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ=
|
||||
github.com/spf13/afero v1.4.1/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I=
|
||||
github.com/spf13/afero v1.12.0 h1:UcOPyRBYczmFn6yvphxkn9ZEOY65cpwGKb5mL36mrqs=
|
||||
github.com/spf13/afero v1.12.0/go.mod h1:ZTlWwG4/ahT8W7T0WQ5uYmjI9duaLQGy3Q2OAl4sk/4=
|
||||
github.com/spf13/afero v1.14.0 h1:9tH6MapGnn/j0eb0yIXiLjERO8RB6xIVZRDCX7PtqWA=
|
||||
github.com/spf13/afero v1.14.0/go.mod h1:acJQ8t0ohCGuMN3O+Pv0V0hgMxNYDlvdk+VTfyZmbYo=
|
||||
github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE=
|
||||
github.com/spf13/cast v1.3.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE=
|
||||
github.com/spf13/cobra v1.1.1/go.mod h1:WnodtKOvamDL/PwE2M4iKs8aMDBZ5Q5klgD3qfVJQMI=
|
||||
|
||||
39
vendor/github.com/spf13/afero/README.md
generated
vendored
39
vendor/github.com/spf13/afero/README.md
generated
vendored
@@ -2,7 +2,11 @@
|
||||
|
||||
A FileSystem Abstraction System for Go
|
||||
|
||||
[](https://github.com/spf13/afero/actions/workflows/test.yml) [](https://godoc.org/github.com/spf13/afero) [](https://gitter.im/spf13/afero?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||
[](https://github.com/spf13/afero/actions?query=workflow%3ACI)
|
||||
[](https://gitter.im/spf13/afero?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||
[](https://goreportcard.com/report/github.com/spf13/afero)
|
||||

|
||||
[](https://pkg.go.dev/mod/github.com/spf13/afero)
|
||||
|
||||
# Overview
|
||||
|
||||
@@ -427,6 +431,39 @@ See the [Releases Page](https://github.com/spf13/afero/releases).
|
||||
4. Push to the branch (`git push origin my-new-feature`)
|
||||
5. Create new Pull Request
|
||||
|
||||
## Releasing
|
||||
|
||||
As of version 1.14.0, Afero moved implementations with third-party libraries to
|
||||
their own submodules.
|
||||
|
||||
Releasing a new version now requires a few steps:
|
||||
|
||||
```
|
||||
VERSION=X.Y.Z
|
||||
git tag -a v$VERSION -m "Release $VERSION"
|
||||
git push origin v$VERSION
|
||||
|
||||
cd gcsfs
|
||||
go get github.com/spf13/afero@v$VERSION
|
||||
go mod tidy
|
||||
git commit -am "Update afero to v$VERSION"
|
||||
git tag -a gcsfs/v$VERSION -m "Release gcsfs $VERSION"
|
||||
git push origin gcsfs/v$VERSION
|
||||
cd ..
|
||||
|
||||
cd sftpfs
|
||||
go get github.com/spf13/afero@v$VERSION
|
||||
go mod tidy
|
||||
git commit -am "Update afero to v$VERSION"
|
||||
git tag -a sftpfs/v$VERSION -m "Release sftpfs $VERSION"
|
||||
git push origin sftpfs/v$VERSION
|
||||
cd ..
|
||||
|
||||
git push
|
||||
```
|
||||
|
||||
TODO: move these instructions to a Makefile or something
|
||||
|
||||
## Contributors
|
||||
|
||||
Names in no particular order:
|
||||
|
||||
4
vendor/modules.txt
vendored
4
vendor/modules.txt
vendored
@@ -1805,8 +1805,8 @@ github.com/skeema/knownhosts
|
||||
# github.com/spacewander/go-suffix-tree v0.0.0-20191010040751-0865e368c784
|
||||
## explicit
|
||||
github.com/spacewander/go-suffix-tree
|
||||
# github.com/spf13/afero v1.12.0
|
||||
## explicit; go 1.21
|
||||
# github.com/spf13/afero v1.14.0
|
||||
## explicit; go 1.23.0
|
||||
github.com/spf13/afero
|
||||
github.com/spf13/afero/internal/common
|
||||
github.com/spf13/afero/mem
|
||||
|
||||
Reference in New Issue
Block a user