Skip to content

Commit 465fe1b

Browse files
committed
Upgraded some libraries
- some small fix in serial library - fixed output of "QUIT" command
1 parent d9a6ff9 commit 465fe1b

File tree

8 files changed

+24
-22
lines changed

8 files changed

+24
-22
lines changed

.licenses/serial-monitor/go/github.com/arduino/pluggable-monitor-protocol-handler.dep.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: github.com/arduino/pluggable-monitor-protocol-handler
3-
version: v0.9.1
3+
version: v0.9.2
44
type: go
55
summary: Package monitor is a library for handling the Arduino Pluggable-Monitor protocol
66
(https://github.com/arduino/tooling-rfcs/blob/main/RFCs/0004-pluggable-monitor.md#pluggable-monitor-api-via-stdinstdout)

.licenses/serial-monitor/go/github.com/hashicorp/errwrap.dep.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: github.com/hashicorp/errwrap
3-
version: v1.0.0
3+
version: v1.1.0
44
type: go
55
summary: Package errwrap implements methods to formalize error wrapping in Go.
66
homepage: https://pkg.go.dev/github.com/hashicorp/errwrap

.licenses/serial-monitor/go/go.bug.st/serial.dep.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: go.bug.st/serial
3-
version: v1.3.4
3+
version: v1.3.5
44
type: go
55
summary: Package serial is a cross-platform serial library for the go language.
66
homepage: https://pkg.go.dev/go.bug.st/serial

.licenses/serial-monitor/go/go.bug.st/serial/unixutils.dep.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
name: go.bug.st/serial/unixutils
3-
version: v1.3.4
3+
version: v1.3.5
44
type: go
55
summary:
66
homepage: https://pkg.go.dev/go.bug.st/serial/unixutils
77
license: bsd-3-clause
88
licenses:
9-
- sources: [email protected].4/LICENSE
9+
- sources: [email protected].5/LICENSE
1010
text: |2+
1111
1212
Copyright (c) 2014-2021, Cristian Maglie.
@@ -41,7 +41,7 @@ licenses:
4141
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
4242
POSSIBILITY OF SUCH DAMAGE.
4343
44-
- sources: [email protected].4/README.md
44+
- sources: [email protected].5/README.md
4545
text: |-
4646
The software is release under a [BSD 3-clause license]
4747

.licenses/serial-monitor/go/golang.org/x/sys/internal/unsafeheader.dep.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
name: golang.org/x/sys/internal/unsafeheader
3-
version: v0.0.0-20210823070655-63515b42dcdf
3+
version: v0.0.0-20220520151302-bc2c85ada10a
44
type: go
55
summary: Package unsafeheader contains header declarations for the Go runtime's slice
66
and string implementations.
77
homepage: https://pkg.go.dev/golang.org/x/sys/internal/unsafeheader
88
license: bsd-3-clause
99
licenses:
10-
- sources: [email protected]20210823070655-63515b42dcdf/LICENSE
10+
- sources: [email protected]20220520151302-bc2c85ada10a/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: [email protected]20210823070655-63515b42dcdf/PATENTS
39+
- sources: [email protected]20220520151302-bc2c85ada10a/PATENTS
4040
text: |
4141
Additional IP Rights Grant (Patents)
4242

.licenses/serial-monitor/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.0.0-20210823070655-63515b42dcdf
3+
version: v0.0.0-20220520151302-bc2c85ada10a
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: [email protected]20210823070655-63515b42dcdf/LICENSE
9+
- sources: [email protected]20220520151302-bc2c85ada10a/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: [email protected]20210823070655-63515b42dcdf/PATENTS
38+
- sources: [email protected]20220520151302-bc2c85ada10a/PATENTS
3939
text: |
4040
Additional IP Rights Grant (Patents)
4141

go.mod

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ module github.com/arduino/serial-monitor
33
go 1.17
44

55
require (
6-
github.com/arduino/pluggable-monitor-protocol-handler v0.9.1
7-
go.bug.st/serial v1.3.4
6+
github.com/arduino/pluggable-monitor-protocol-handler v0.9.2
7+
go.bug.st/serial v1.3.5
88
)
99

1010
require (
1111
github.com/creack/goselect v0.1.2 // indirect
1212
github.com/davecgh/go-spew v1.1.1 // indirect
13-
github.com/hashicorp/errwrap v1.0.0 // indirect
13+
github.com/hashicorp/errwrap v1.1.0 // indirect
1414
github.com/hashicorp/go-multierror v1.1.1 // indirect
15-
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf // indirect
15+
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
1616
)

go.sum

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
1-
github.com/arduino/pluggable-monitor-protocol-handler v0.9.1 h1:uv3o5uaDXsmu5FSp9jSk6rn4awy//ArQ7BpDeIAV7GY=
2-
github.com/arduino/pluggable-monitor-protocol-handler v0.9.1/go.mod h1:vMG8tgHyE+hli26oT0JB/M7NxUMzzWoU5wd6cgJQRK4=
1+
github.com/arduino/pluggable-monitor-protocol-handler v0.9.2 h1:vb5AmE3bT9we5Ej4AdBxcC9dJLXasRimVqaComf9L3M=
2+
github.com/arduino/pluggable-monitor-protocol-handler v0.9.2/go.mod h1:vMG8tgHyE+hli26oT0JB/M7NxUMzzWoU5wd6cgJQRK4=
33
github.com/creack/goselect v0.1.2 h1:2DNy14+JPjRBgPzAd1thbQp4BSIihxcBf0IXhQXDRa0=
44
github.com/creack/goselect v0.1.2/go.mod h1:a/NhLweNvqIYMuxcMOuWY516Cimucms3DglDzQP3hKY=
55
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
66
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
77
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
8-
github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA=
98
github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
9+
github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I=
10+
github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
1011
github.com/hashicorp/go-multierror v1.1.1 h1:H5DkEtf6CXdFp0N0Em5UCwQpXMWke8IA0+lD48awMYo=
1112
github.com/hashicorp/go-multierror v1.1.1/go.mod h1:iw975J/qwKPdAO1clOe2L8331t/9/fmwbPZ6JB6eMoM=
1213
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
1314
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
1415
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
1516
github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
1617
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
17-
go.bug.st/serial v1.3.4 h1:fMpfNEOsPQjYGZ3VHcs/xxsxoaPgbcjrm4YnMkcir3Y=
18-
go.bug.st/serial v1.3.4/go.mod h1:z8CesKorE90Qr/oRSJiEuvzYRKol9r/anJZEb5kt304=
19-
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf h1:2ucpDCmfkl8Bd/FsLtiD653Wf96cW37s+iGx93zsu4k=
18+
go.bug.st/serial v1.3.5 h1:k50SqGZCnHZ2MiBQgzccXWG+kd/XpOs1jUljpDDKzaE=
19+
go.bug.st/serial v1.3.5/go.mod h1:z8CesKorE90Qr/oRSJiEuvzYRKol9r/anJZEb5kt304=
2020
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
21+
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a h1:dGzPydgVsqGcTRVwiLJ1jVbufYwmzD3LfVPLKsKg+0k=
22+
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
2123
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
2224
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo=
2325
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

0 commit comments

Comments
 (0)