Skip to content

Commit 80d3c0e

Browse files
Merge pull request #2215 from containers/renovate/github.com-vbatts-tar-split-0.x
fix(deps): update module github.com/vbatts/tar-split to v0.11.7
2 parents 1ff5f1c + e5f427b commit 80d3c0e

7 files changed

Lines changed: 22 additions & 8 deletions

File tree

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ require (
2929
github.com/stretchr/testify v1.10.0
3030
github.com/tchap/go-patricia/v2 v2.3.2
3131
github.com/ulikunitz/xz v0.5.12
32-
github.com/vbatts/tar-split v0.11.6
32+
github.com/vbatts/tar-split v0.11.7
3333
golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67
3434
golang.org/x/sys v0.29.0
3535
gotest.tools v2.2.0+incompatible

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ github.com/tchap/go-patricia/v2 v2.3.2 h1:xTHFutuitO2zqKAQ5rCROYgUb7Or/+IC3fts9/
116116
github.com/tchap/go-patricia/v2 v2.3.2/go.mod h1:VZRHKAb53DLaG+nA9EaYYiaEx6YztwDlLElMsnSHD4k=
117117
github.com/ulikunitz/xz v0.5.12 h1:37Nm15o69RwBkXM0J6A5OlE67RZTfzUxTj8fB3dfcsc=
118118
github.com/ulikunitz/xz v0.5.12/go.mod h1:nbz6k7qbPmH4IRqmfOplQw/tblSgqTqBwxkY0oWt/14=
119-
github.com/vbatts/tar-split v0.11.6 h1:4SjTW5+PU11n6fZenf2IPoV8/tz3AaYHMWjf23envGs=
120-
github.com/vbatts/tar-split v0.11.6/go.mod h1:dqKNtesIOr2j2Qv3W/cHjnvk9I8+G7oAkFDFN6TCBEI=
119+
github.com/vbatts/tar-split v0.11.7 h1:ixZ93pO/GmvaZw4Vq9OwmfZK/kc2zKdPfu0B+gYqs3U=
120+
github.com/vbatts/tar-split v0.11.7/go.mod h1:eF6B6i6ftWQcDqEn3/iGFRFRo8cBIMSJVOpnNdfTMFA=
121121
github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
122122
github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
123123
go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0=

internal/opts/opts_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ func TestListOptsWithoutValidator(t *testing.T) {
9797
}
9898

9999
func TestListOptsWithValidator(t *testing.T) {
100-
// Re-using logOptsvalidator (used by MapOpts)
100+
// Reusing logOptsvalidator (used by MapOpts)
101101
o := opts.NewListOpts(logOptsValidator)
102102
err := o.Set("foo")
103103
assert.EqualError(t, err, "invalid key foo")

pkg/chrootarchive/archive.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ func Untar(tarArchive io.Reader, dest string, options *archive.TarOptions) error
4747
// This should be used to prevent a potential attacker from manipulating `dest`
4848
// such that it would provide access to files outside of `dest` through things
4949
// like symlinks. Normally `ResolveSymlinksInScope` would handle this, however
50-
// sanitizing symlinks in this manner is inherrently racey:
50+
// sanitizing symlinks in this manner is inherently racey:
5151
// ref: CVE-2018-15664
5252
func UntarWithRoot(tarArchive io.Reader, dest string, options *archive.TarOptions, root string) error {
5353
return untarHandler(tarArchive, dest, options, true, root)

vendor/github.com/vbatts/tar-split/archive/tar/format.go

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/vbatts/tar-split/archive/tar/reader.go

Lines changed: 12 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/modules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ github.com/ulikunitz/xz
161161
github.com/ulikunitz/xz/internal/hash
162162
github.com/ulikunitz/xz/internal/xlog
163163
github.com/ulikunitz/xz/lzma
164-
# github.com/vbatts/tar-split v0.11.6
164+
# github.com/vbatts/tar-split v0.11.7
165165
## explicit; go 1.17
166166
github.com/vbatts/tar-split/archive/tar
167167
github.com/vbatts/tar-split/tar/asm

0 commit comments

Comments
 (0)