Skip to content

Commit bd10a5c

Browse files
Bump golang.org/x/term from 0.16.0 to 0.17.0 (#2530)
* Bump golang.org/x/term from 0.16.0 to 0.17.0 Bumps [golang.org/x/term](https://github.com/golang/term) from 0.16.0 to 0.17.0. - [Commits](golang/term@v0.16.0...v0.17.0) --- updated-dependencies: - dependency-name: golang.org/x/term dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * generate license --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alessio Perugini <[email protected]>
1 parent e8b3541 commit bd10a5c

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

Diff for: .licenses/go/golang.org/x/sys/execabs.dep.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
name: golang.org/x/sys/execabs
3-
version: v0.16.0
3+
version: v0.17.0
44
type: go
55
summary: Package execabs is a drop-in replacement for os/exec that requires PATH lookups
66
to find absolute paths.
77
homepage: https://pkg.go.dev/golang.org/x/sys/execabs
88
license: other
99
licenses:
10-
- sources: sys@v0.16.0/LICENSE
10+
- sources: sys@v0.17.0/LICENSE
1111
text: |
1212
Copyright (c) 2009 The Go Authors. All rights reserved.
1313
@@ -36,7 +36,7 @@ licenses:
3636
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
3737
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3838
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39-
- sources: sys@v0.16.0/PATENTS
39+
- sources: sys@v0.17.0/PATENTS
4040
text: |
4141
Additional IP Rights Grant (Patents)
4242

Diff for: .licenses/go/golang.org/x/sys/unix.dep.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
name: golang.org/x/sys/unix
3-
version: v0.16.0
3+
version: v0.17.0
44
type: go
55
summary: Package unix contains an interface to the low-level operating system primitives.
66
homepage: https://pkg.go.dev/golang.org/x/sys/unix
77
license: bsd-3-clause
88
licenses:
9-
- sources: sys@v0.16.0/LICENSE
9+
- sources: sys@v0.17.0/LICENSE
1010
text: |
1111
Copyright (c) 2009 The Go Authors. All rights reserved.
1212
@@ -35,7 +35,7 @@ licenses:
3535
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
3636
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3737
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38-
- sources: sys@v0.16.0/PATENTS
38+
- sources: sys@v0.17.0/PATENTS
3939
text: |
4040
Additional IP Rights Grant (Patents)
4141

Diff for: .licenses/go/golang.org/x/term.dep.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: golang.org/x/term
3-
version: v0.16.0
3+
version: v0.17.0
44
type: go
55
summary: Package term provides support functions for dealing with terminals, as commonly
66
found on UNIX systems.

Diff for: go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ require (
3838
go.bug.st/downloader/v2 v2.1.1
3939
go.bug.st/relaxed-semver v0.12.0
4040
go.bug.st/testifyjson v1.1.1
41-
golang.org/x/term v0.16.0
41+
golang.org/x/term v0.17.0
4242
golang.org/x/text v0.14.0
4343
google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f
4444
google.golang.org/grpc v1.61.0
@@ -100,7 +100,7 @@ require (
100100
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
101101
golang.org/x/mod v0.12.0 // indirect
102102
golang.org/x/net v0.19.0 // indirect
103-
golang.org/x/sys v0.16.0 // indirect
103+
golang.org/x/sys v0.17.0 // indirect
104104
golang.org/x/tools v0.13.0 // indirect
105105
gopkg.in/ini.v1 v1.67.0 // indirect
106106
gopkg.in/warnings.v0 v0.1.2 // indirect

Diff for: go.sum

+4-4
Original file line numberDiff line numberDiff line change
@@ -261,11 +261,11 @@ golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBc
261261
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
262262
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
263263
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
264-
golang.org/x/sys v0.16.0 h1:xWw16ngr6ZMtmxDyKyIgsE93KNKz5HKmMa3b8ALHidU=
265-
golang.org/x/sys v0.16.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
264+
golang.org/x/sys v0.17.0 h1:25cE3gD+tdBA7lp7QfhuV+rJiE9YXTcS3VG1SqssI/Y=
265+
golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
266266
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
267-
golang.org/x/term v0.16.0 h1:m+B6fahuftsE9qjo0VWp2FW0mB3MTJvR0BaMQrq0pmE=
268-
golang.org/x/term v0.16.0/go.mod h1:yn7UURbUtPyrVJPGPq404EukNFxcm/foM+bV/bfcDsY=
267+
golang.org/x/term v0.17.0 h1:mkTF7LCd6WGJNL3K1Ad7kwxNfYAW6a8a8QqtMblp/4U=
268+
golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk=
269269
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
270270
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
271271
golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ=

0 commit comments

Comments
 (0)