Skip to content

Commit 5fcb7c4

Browse files
authored
Updated go-serial and pluggable-discovery-protocol-handler (#1023)
1 parent bfab101 commit 5fcb7c4

File tree

6 files changed

+21
-21
lines changed

6 files changed

+21
-21
lines changed

.licenses/arduino-create-agent/go/github.com/arduino/pluggable-discovery-protocol-handler/v2.dep.yml

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

.licenses/arduino-create-agent/go/go.bug.st/serial.dep.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: go.bug.st/serial
3-
version: v1.6.1
3+
version: v1.6.3
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
@@ -9,7 +9,7 @@ licenses:
99
- sources: LICENSE
1010
text: |2+
1111
12-
Copyright (c) 2014-2023, Cristian Maglie.
12+
Copyright (c) 2014-2024, Cristian Maglie.
1313
All rights reserved.
1414
1515
Redistribution and use in source and binary forms, with or without
@@ -43,7 +43,7 @@ licenses:
4343
4444
- sources: README.md
4545
text: |-
46-
The software is release under a [BSD 3-clause license]
46+
This software is released under the [BSD 3-clause license].
4747
4848
[contributors]: https://github.com/bugst/go-serial/graphs/contributors
4949
[BSD 3-clause license]: https://github.com/bugst/go-serial/blob/master/LICENSE

.licenses/arduino-create-agent/go/go.bug.st/serial/enumerator.dep.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
22
name: go.bug.st/serial/enumerator
3-
version: v1.6.1
3+
version: v1.6.3
44
type: go
55
summary: Package enumerator is a golang cross-platform library for USB serial port
66
discovery.
77
homepage: https://pkg.go.dev/go.bug.st/serial/enumerator
88
license: bsd-3-clause
99
licenses:
10-
- sources: serial@v1.6.1/LICENSE
10+
- sources: serial@v1.6.3/LICENSE
1111
text: |2+
1212
13-
Copyright (c) 2014-2023, Cristian Maglie.
13+
Copyright (c) 2014-2024, Cristian Maglie.
1414
All rights reserved.
1515
1616
Redistribution and use in source and binary forms, with or without
@@ -42,9 +42,9 @@ licenses:
4242
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
4343
POSSIBILITY OF SUCH DAMAGE.
4444
45-
- sources: serial@v1.6.1/README.md
45+
- sources: serial@v1.6.3/README.md
4646
text: |-
47-
The software is release under a [BSD 3-clause license]
47+
This software is released under the [BSD 3-clause license].
4848
4949
[contributors]: https://github.com/bugst/go-serial/graphs/contributors
5050
[BSD 3-clause license]: https://github.com/bugst/go-serial/blob/master/LICENSE

.licenses/arduino-create-agent/go/go.bug.st/serial/unixutils.dep.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
22
name: go.bug.st/serial/unixutils
3-
version: v1.6.1
3+
version: v1.6.3
44
type: go
5-
summary:
5+
summary:
66
homepage: https://pkg.go.dev/go.bug.st/serial/unixutils
77
license: bsd-3-clause
88
licenses:
9-
- sources: serial@v1.6.1/LICENSE
9+
- sources: serial@v1.6.3/LICENSE
1010
text: |2+
1111
12-
Copyright (c) 2014-2023, Cristian Maglie.
12+
Copyright (c) 2014-2024, Cristian Maglie.
1313
All rights reserved.
1414
1515
Redistribution and use in source and binary forms, with or without
@@ -41,9 +41,9 @@ licenses:
4141
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
4242
POSSIBILITY OF SUCH DAMAGE.
4343
44-
- sources: serial@v1.6.1/README.md
44+
- sources: serial@v1.6.3/README.md
4545
text: |-
46-
The software is release under a [BSD 3-clause license]
46+
This software is released under the [BSD 3-clause license].
4747
4848
[contributors]: https://github.com/bugst/go-serial/graphs/contributors
4949
[BSD 3-clause license]: https://github.com/bugst/go-serial/blob/master/LICENSE

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
github.com/ProtonMail/go-crypto v1.1.0-alpha.5-proton
88
github.com/arduino/go-paths-helper v1.12.1
99
github.com/arduino/go-serial-utils v0.1.2
10-
github.com/arduino/pluggable-discovery-protocol-handler/v2 v2.2.0
10+
github.com/arduino/pluggable-discovery-protocol-handler/v2 v2.2.1
1111
github.com/blang/semver v3.5.1+incompatible
1212
github.com/codeclysm/extract/v4 v4.0.0
1313
github.com/gin-contrib/cors v1.7.2
@@ -21,7 +21,7 @@ require (
2121
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
2222
github.com/stretchr/testify v1.9.0
2323
github.com/xrash/smetrics v0.0.0-20170218160415-a3153f7040e9
24-
go.bug.st/serial v1.6.1
24+
go.bug.st/serial v1.6.3
2525
goa.design/goa/v3 v3.16.1
2626
golang.org/x/sys v0.23.0
2727
gopkg.in/inconshreveable/go-update.v0 v0.0.0-20150814200126-d8b0b1d421aa

go.sum

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ github.com/arduino/go-properties-orderedmap v1.8.0 h1:wEfa6hHdpezrVOh787OmClsf/K
1111
github.com/arduino/go-properties-orderedmap v1.8.0/go.mod h1:DKjD2VXY/NZmlingh4lSFMEYCVubfeArCsGPGDwb2yk=
1212
github.com/arduino/go-serial-utils v0.1.2 h1:MRFwME4w/uaVkJ1R+wzz4KSbI9cF9IDVrYorazvjpTk=
1313
github.com/arduino/go-serial-utils v0.1.2/go.mod h1:kzIsNPgz8DFAd1sAFKve4ubxrdGcwQ4XzvRLlztsgnE=
14-
github.com/arduino/pluggable-discovery-protocol-handler/v2 v2.2.0 h1:v7og6LpskewFabmaShKVzWXl5MXbmsxaRP3yo4dJta8=
15-
github.com/arduino/pluggable-discovery-protocol-handler/v2 v2.2.0/go.mod h1:1dgblsmK2iBx3L5iNTyRIokeaxbTLUrYiUbHBK6yC3Y=
14+
github.com/arduino/pluggable-discovery-protocol-handler/v2 v2.2.1 h1:Fw8zKj1b/FkcQrWgN7aBw3ubSxpKIUtdANLXvd1Qdzw=
15+
github.com/arduino/pluggable-discovery-protocol-handler/v2 v2.2.1/go.mod h1:1dgblsmK2iBx3L5iNTyRIokeaxbTLUrYiUbHBK6yC3Y=
1616
github.com/blang/semver v3.5.1+incompatible h1:cQNTCjp13qL8KC3Nbxr/y2Bqb63oX6wdnnjpJbkM4JQ=
1717
github.com/blang/semver v3.5.1+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk=
1818
github.com/bytedance/sonic v1.11.6 h1:oUp34TzMlL+OY1OUWxHqsdkgC/Zfc85zGqw9siXjrc0=
@@ -159,8 +159,8 @@ github.com/ulikunitz/xz v0.5.12 h1:37Nm15o69RwBkXM0J6A5OlE67RZTfzUxTj8fB3dfcsc=
159159
github.com/ulikunitz/xz v0.5.12/go.mod h1:nbz6k7qbPmH4IRqmfOplQw/tblSgqTqBwxkY0oWt/14=
160160
github.com/xrash/smetrics v0.0.0-20170218160415-a3153f7040e9 h1:w8V9v0qVympSF6GjdjIyeqR7+EVhAF9CBQmkmW7Zw0w=
161161
github.com/xrash/smetrics v0.0.0-20170218160415-a3153f7040e9/go.mod h1:N3UwUGtsrSj3ccvlPHLoLsHnpR27oXr4ZE984MbSER8=
162-
go.bug.st/serial v1.6.1 h1:VSSWmUxlj1T/YlRo2J104Zv3wJFrjHIl/T3NeruWAHY=
163-
go.bug.st/serial v1.6.1/go.mod h1:UABfsluHAiaNI+La2iESysd9Vetq7VRdpxvjx7CmmOE=
162+
go.bug.st/serial v1.6.3 h1:S3OG1bH+IDyokVndKrzwxI9ywiGBd8sWOn08dzSqEQI=
163+
go.bug.st/serial v1.6.3/go.mod h1:nofMJxTeNVny/m6+KaafC6vJGj3miwQZ6vW4BZUGJPI=
164164
goa.design/goa/v3 v3.16.1 h1:yZwbKrfMpE8+sz0uf+n+BtArVOFQ0kNSC0twQKwQb04=
165165
goa.design/goa/v3 v3.16.1/go.mod h1:Yd42LR0PYDbHSbsbF3vNd4YY/O+LG20Jb7+IyNdkQic=
166166
golang.org/x/arch v0.0.0-20210923205945-b76863e36670/go.mod h1:5om86z9Hs0C8fWVUuoMHwpExlXzs5Tkyp9hOrfG7pp8=

0 commit comments

Comments
 (0)