From f413282cd8dbb55102093d9f16ab3ba90f7b9b31 Mon Sep 17 00:00:00 2001 From: Gopher Robot Date: Sat, 2 Sep 2023 12:16:34 +0000 Subject: [PATCH 01/11] go.mod: update golang.org/x dependencies Update golang.org/x dependencies to their latest tagged versions. Change-Id: I51aff871b155c803eb1c220dd9c2a6d94e87f281 Reviewed-on: https://go-review.googlesource.com/c/term/+/525295 Reviewed-by: Dmitri Shuralyov Reviewed-by: Dmitri Shuralyov TryBot-Result: Gopher Robot Run-TryBot: Gopher Robot Auto-Submit: Gopher Robot LUCI-TryBot-Result: Go LUCI Reviewed-by: Heschi Kreinick --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 4d023cb..bd4eee9 100644 --- a/go.mod +++ b/go.mod @@ -2,4 +2,4 @@ module golang.org/x/term go 1.17 -require golang.org/x/sys v0.11.0 +require golang.org/x/sys v0.12.0 diff --git a/go.sum b/go.sum index f7ca90d..63a0250 100644 --- a/go.sum +++ b/go.sum @@ -1,2 +1,2 @@ -golang.org/x/sys v0.11.0 h1:eG7RXZHdqOJ1i+0lgLgCpSXAp6M3LYlAo6osgSi0xOM= -golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.12.0 h1:CM0HF96J0hcLAwsHPJZjfdNzs0gftsLfgKt57wWHJ0o= +golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= From ea6303ae752eaacd897fec4b7534b74c56e1d787 Mon Sep 17 00:00:00 2001 From: Gopher Robot Date: Thu, 5 Oct 2023 12:14:15 +0000 Subject: [PATCH 02/11] go.mod: update golang.org/x dependencies Update golang.org/x dependencies to their latest tagged versions. Change-Id: I1e06b47cc115e1d4a41c210f650f3bb0f017777a Reviewed-on: https://go-review.googlesource.com/c/term/+/532935 Auto-Submit: Gopher Robot LUCI-TryBot-Result: Go LUCI Reviewed-by: Carlos Amedee Reviewed-by: Dmitri Shuralyov --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index bd4eee9..30adbb4 100644 --- a/go.mod +++ b/go.mod @@ -2,4 +2,4 @@ module golang.org/x/term go 1.17 -require golang.org/x/sys v0.12.0 +require golang.org/x/sys v0.13.0 diff --git a/go.sum b/go.sum index 63a0250..d4673ec 100644 --- a/go.sum +++ b/go.sum @@ -1,2 +1,2 @@ -golang.org/x/sys v0.12.0 h1:CM0HF96J0hcLAwsHPJZjfdNzs0gftsLfgKt57wWHJ0o= -golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.13.0 h1:Af8nKPmuFypiUBjVoU9V20FiaFXOcuZI21p0ycVYYGE= +golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= From 6a610bc55bff057aed1d188757e3d0247a3badf2 Mon Sep 17 00:00:00 2001 From: Dmitri Shuralyov Date: Tue, 10 Oct 2023 18:57:41 -0400 Subject: [PATCH 03/11] all: update go directive to 1.18 Done with: go get go@1.18 go mod tidy go fix ./... Using go1.21.3. For golang/go#60268. Change-Id: Ic6a53c8e217966f5f95b3a968b25ef123b4b99cf Reviewed-on: https://go-review.googlesource.com/c/term/+/534475 Auto-Submit: Dmitri Shuralyov Reviewed-by: Ian Lance Taylor LUCI-TryBot-Result: Go LUCI Reviewed-by: Dmitri Shuralyov --- go.mod | 2 +- term_unix.go | 1 - term_unix_bsd.go | 1 - term_unix_other.go | 1 - term_unsupported.go | 1 - 5 files changed, 1 insertion(+), 5 deletions(-) diff --git a/go.mod b/go.mod index 30adbb4..2d0afe5 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,5 @@ module golang.org/x/term -go 1.17 +go 1.18 require golang.org/x/sys v0.13.0 diff --git a/term_unix.go b/term_unix.go index 62c2b3f..1ad0ddf 100644 --- a/term_unix.go +++ b/term_unix.go @@ -3,7 +3,6 @@ // license that can be found in the LICENSE file. //go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos -// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris zos package term diff --git a/term_unix_bsd.go b/term_unix_bsd.go index 853b3d6..9dbf546 100644 --- a/term_unix_bsd.go +++ b/term_unix_bsd.go @@ -3,7 +3,6 @@ // license that can be found in the LICENSE file. //go:build darwin || dragonfly || freebsd || netbsd || openbsd -// +build darwin dragonfly freebsd netbsd openbsd package term diff --git a/term_unix_other.go b/term_unix_other.go index 1e8955c..1b36de7 100644 --- a/term_unix_other.go +++ b/term_unix_other.go @@ -3,7 +3,6 @@ // license that can be found in the LICENSE file. //go:build aix || linux || solaris || zos -// +build aix linux solaris zos package term diff --git a/term_unsupported.go b/term_unsupported.go index f1df850..3c409e5 100644 --- a/term_unsupported.go +++ b/term_unsupported.go @@ -3,7 +3,6 @@ // license that can be found in the LICENSE file. //go:build !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !zos && !windows && !solaris && !plan9 -// +build !aix,!darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!zos,!windows,!solaris,!plan9 package term From 70d3a0bd3f7eb457a282ab2a2a8452a69a79400c Mon Sep 17 00:00:00 2001 From: Gopher Robot Date: Tue, 7 Nov 2023 19:00:16 +0000 Subject: [PATCH 04/11] go.mod: update golang.org/x dependencies Update golang.org/x dependencies to their latest tagged versions. Change-Id: I4cd3651aa5aee0f23057b34766331dccecce6cb8 Reviewed-on: https://go-review.googlesource.com/c/term/+/540518 Reviewed-by: Heschi Kreinick Reviewed-by: Dmitri Shuralyov LUCI-TryBot-Result: Go LUCI Auto-Submit: Gopher Robot --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 2d0afe5..eb3ef6c 100644 --- a/go.mod +++ b/go.mod @@ -2,4 +2,4 @@ module golang.org/x/term go 1.18 -require golang.org/x/sys v0.13.0 +require golang.org/x/sys v0.14.0 diff --git a/go.sum b/go.sum index d4673ec..5867dc0 100644 --- a/go.sum +++ b/go.sum @@ -1,2 +1,2 @@ -golang.org/x/sys v0.13.0 h1:Af8nKPmuFypiUBjVoU9V20FiaFXOcuZI21p0ycVYYGE= -golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.14.0 h1:Vz7Qs629MkJkGyHxUlRHizWJRG2j8fbQKjELVSNhy7Q= +golang.org/x/sys v0.14.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= From ee66497fa39f03ba841b568a7b4f4ee4e4546f74 Mon Sep 17 00:00:00 2001 From: Gopher Robot Date: Mon, 27 Nov 2023 15:33:37 +0000 Subject: [PATCH 05/11] go.mod: update golang.org/x dependencies Update golang.org/x dependencies to their latest tagged versions. Change-Id: I1ea17696accca38de639a9ac8bd16835049054e6 Reviewed-on: https://go-review.googlesource.com/c/term/+/545096 Auto-Submit: Gopher Robot LUCI-TryBot-Result: Go LUCI Reviewed-by: Heschi Kreinick Reviewed-by: Dmitri Shuralyov --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index eb3ef6c..06004b7 100644 --- a/go.mod +++ b/go.mod @@ -2,4 +2,4 @@ module golang.org/x/term go 1.18 -require golang.org/x/sys v0.14.0 +require golang.org/x/sys v0.15.0 diff --git a/go.sum b/go.sum index 5867dc0..063d2d3 100644 --- a/go.sum +++ b/go.sum @@ -1,2 +1,2 @@ -golang.org/x/sys v0.14.0 h1:Vz7Qs629MkJkGyHxUlRHizWJRG2j8fbQKjELVSNhy7Q= -golang.org/x/sys v0.14.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= +golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= From ae941452f58ff9bf62f7e9dca3ea6ae3d214a68b Mon Sep 17 00:00:00 2001 From: Gopher Robot Date: Thu, 4 Jan 2024 15:01:46 +0000 Subject: [PATCH 06/11] go.mod: update golang.org/x dependencies Update golang.org/x dependencies to their latest tagged versions. Change-Id: I6160c541809d08ac6c179b96007440ad6611d686 Reviewed-on: https://go-review.googlesource.com/c/term/+/553976 LUCI-TryBot-Result: Go LUCI Reviewed-by: Dmitri Shuralyov Auto-Submit: Gopher Robot Reviewed-by: Than McIntosh --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 06004b7..67c8708 100644 --- a/go.mod +++ b/go.mod @@ -2,4 +2,4 @@ module golang.org/x/term go 1.18 -require golang.org/x/sys v0.15.0 +require golang.org/x/sys v0.16.0 diff --git a/go.sum b/go.sum index 063d2d3..ed3454f 100644 --- a/go.sum +++ b/go.sum @@ -1,2 +1,2 @@ -golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= -golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.16.0 h1:xWw16ngr6ZMtmxDyKyIgsE93KNKz5HKmMa3b8ALHidU= +golang.org/x/sys v0.16.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= From 353276a841e232e41e0f76e7a61fe0e5d1f92cf1 Mon Sep 17 00:00:00 2001 From: Gopher Robot Date: Wed, 7 Feb 2024 16:24:02 +0000 Subject: [PATCH 07/11] go.mod: update golang.org/x dependencies Update golang.org/x dependencies to their latest tagged versions. Change-Id: I3c0e20051d01c17d66bba6045f2fac5927e9fcd4 Reviewed-on: https://go-review.googlesource.com/c/term/+/562416 Reviewed-by: Dmitri Shuralyov Reviewed-by: Than McIntosh LUCI-TryBot-Result: Go LUCI Auto-Submit: Gopher Robot --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 67c8708..0550b1d 100644 --- a/go.mod +++ b/go.mod @@ -2,4 +2,4 @@ module golang.org/x/term go 1.18 -require golang.org/x/sys v0.16.0 +require golang.org/x/sys v0.17.0 diff --git a/go.sum b/go.sum index ed3454f..735d9a7 100644 --- a/go.sum +++ b/go.sum @@ -1,2 +1,2 @@ -golang.org/x/sys v0.16.0 h1:xWw16ngr6ZMtmxDyKyIgsE93KNKz5HKmMa3b8ALHidU= -golang.org/x/sys v0.16.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.17.0 h1:25cE3gD+tdBA7lp7QfhuV+rJiE9YXTcS3VG1SqssI/Y= +golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= From c5eaf76d63c69ba9d890c5969f892022e97598da Mon Sep 17 00:00:00 2001 From: Gopher Robot Date: Mon, 4 Mar 2024 15:01:51 +0000 Subject: [PATCH 08/11] go.mod: update golang.org/x dependencies Update golang.org/x dependencies to their latest tagged versions. Change-Id: I323b1af9563505920f18684e1d68785564a7c795 Reviewed-on: https://go-review.googlesource.com/c/term/+/568776 Auto-Submit: Gopher Robot LUCI-TryBot-Result: Go LUCI Reviewed-by: Than McIntosh Reviewed-by: Michael Knyszek --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 0550b1d..d5c1671 100644 --- a/go.mod +++ b/go.mod @@ -2,4 +2,4 @@ module golang.org/x/term go 1.18 -require golang.org/x/sys v0.17.0 +require golang.org/x/sys v0.18.0 diff --git a/go.sum b/go.sum index 735d9a7..3ef669d 100644 --- a/go.sum +++ b/go.sum @@ -1,2 +1,2 @@ -golang.org/x/sys v0.17.0 h1:25cE3gD+tdBA7lp7QfhuV+rJiE9YXTcS3VG1SqssI/Y= -golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4= +golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= From 5b15d269ba1f54e8da86c8aa5574253aea0c2198 Mon Sep 17 00:00:00 2001 From: Gopher Robot Date: Thu, 4 Apr 2024 15:09:53 +0000 Subject: [PATCH 09/11] go.mod: update golang.org/x dependencies Update golang.org/x dependencies to their latest tagged versions. Change-Id: I5526b1b44923df948c2e63f8fcf4995e601fc45b Reviewed-on: https://go-review.googlesource.com/c/term/+/576495 LUCI-TryBot-Result: Go LUCI Reviewed-by: Dmitri Shuralyov Auto-Submit: Gopher Robot Reviewed-by: Than McIntosh --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index d5c1671..927b12d 100644 --- a/go.mod +++ b/go.mod @@ -2,4 +2,4 @@ module golang.org/x/term go 1.18 -require golang.org/x/sys v0.18.0 +require golang.org/x/sys v0.19.0 diff --git a/go.sum b/go.sum index 3ef669d..e354f1e 100644 --- a/go.sum +++ b/go.sum @@ -1,2 +1,2 @@ -golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4= -golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o= +golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= From 46c790f81f1f50148a57f7ddf0c637b84ff2f0e6 Mon Sep 17 00:00:00 2001 From: Gopher Robot Date: Sat, 4 May 2024 15:02:12 +0000 Subject: [PATCH 10/11] go.mod: update golang.org/x dependencies Update golang.org/x dependencies to their latest tagged versions. Change-Id: I67cc718952add541c7e9b23e531b9f73fedd6c88 Reviewed-on: https://go-review.googlesource.com/c/term/+/583275 LUCI-TryBot-Result: Go LUCI Auto-Submit: Gopher Robot Reviewed-by: Dmitri Shuralyov Reviewed-by: Than McIntosh --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 927b12d..dd76795 100644 --- a/go.mod +++ b/go.mod @@ -2,4 +2,4 @@ module golang.org/x/term go 1.18 -require golang.org/x/sys v0.19.0 +require golang.org/x/sys v0.20.0 diff --git a/go.sum b/go.sum index e354f1e..5d1e088 100644 --- a/go.sum +++ b/go.sum @@ -1,2 +1,2 @@ -golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o= -golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.20.0 h1:Od9JTbYCk261bKm4M/mw7AklTlFYIa0bIp9BgSm1S8Y= +golang.org/x/sys v0.20.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= From 5f0bb723151ab65fd6a3386b3160320e7419602e Mon Sep 17 00:00:00 2001 From: Gopher Robot Date: Tue, 4 Jun 2024 15:04:42 +0000 Subject: [PATCH 11/11] go.mod: update golang.org/x dependencies Update golang.org/x dependencies to their latest tagged versions. Change-Id: I725288799ceb754846df49a133594d23e2ffd217 Reviewed-on: https://go-review.googlesource.com/c/term/+/590216 Auto-Submit: Gopher Robot LUCI-TryBot-Result: Go LUCI Reviewed-by: Than McIntosh Reviewed-by: Dmitri Shuralyov --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index dd76795..b3d98b0 100644 --- a/go.mod +++ b/go.mod @@ -2,4 +2,4 @@ module golang.org/x/term go 1.18 -require golang.org/x/sys v0.20.0 +require golang.org/x/sys v0.21.0 diff --git a/go.sum b/go.sum index 5d1e088..ac7fb31 100644 --- a/go.sum +++ b/go.sum @@ -1,2 +1,2 @@ -golang.org/x/sys v0.20.0 h1:Od9JTbYCk261bKm4M/mw7AklTlFYIa0bIp9BgSm1S8Y= -golang.org/x/sys v0.20.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.21.0 h1:rF+pYz3DAGSQAxAu1CbC7catZg4ebC4UIeIhKxBZvws= +golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=