Skip to content

Commit d274e93

Browse files
authored
Merge pull request #54 from arduino/fix_windows_enumerator
Update go-serial to fix Windows crash
2 parents 70f428b + a3112d3 commit d274e93

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

Diff for: .licenses/serial-discovery/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.5
3+
version: v1.5.0
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

Diff for: .licenses/serial-discovery/go/go.bug.st/serial/enumerator.dep.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
name: go.bug.st/serial/enumerator
3-
version: v1.3.5
3+
version: v1.5.0
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.3.5/LICENSE
10+
- sources: serial@v1.5.0/LICENSE
1111
text: |2+
1212
1313
Copyright (c) 2014-2021, Cristian Maglie.
@@ -42,7 +42,7 @@ 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.3.5/README.md
45+
- sources: serial@v1.5.0/README.md
4646
text: |-
4747
The software is release under a [BSD 3-clause license]
4848

Diff for: .licenses/serial-discovery/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.5
3+
version: v1.5.0
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: serial@v1.3.5/LICENSE
9+
- sources: serial@v1.5.0/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: serial@v1.3.5/README.md
44+
- sources: serial@v1.5.0/README.md
4545
text: |-
4646
The software is release under a [BSD 3-clause license]
4747

Diff for: .licenses/serial-discovery/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-20220829200755-d48e67d00261
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: sys@v0.0.0-20210823070655-63515b42dcdf/LICENSE
10+
- sources: sys@v0.0.0-20220829200755-d48e67d00261/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.0.0-20210823070655-63515b42dcdf/PATENTS
39+
- sources: sys@v0.0.0-20220829200755-d48e67d00261/PATENTS
4040
text: |
4141
Additional IP Rights Grant (Patents)
4242

Diff for: .licenses/serial-discovery/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-20220829200755-d48e67d00261
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.0.0-20210823070655-63515b42dcdf/LICENSE
9+
- sources: sys@v0.0.0-20220829200755-d48e67d00261/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.0.0-20210823070655-63515b42dcdf/PATENTS
38+
- sources: sys@v0.0.0-20220829200755-d48e67d00261/PATENTS
3939
text: |
4040
Additional IP Rights Grant (Patents)
4141

Diff for: go.mod

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
module github.com/arduino/serial-discovery
22

3-
replace go.bug.st/serial => github.com/cmaglie/go-serial v0.0.0-20221214153202-f7509ff50314
4-
53
require (
64
github.com/arduino/go-properties-orderedmap v1.6.0
75
github.com/arduino/pluggable-discovery-protocol-handler/v2 v2.0.2
86
github.com/s-urbaniak/uevent v1.0.1
9-
go.bug.st/serial v1.3.5
10-
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf
7+
go.bug.st/serial v1.5.0
8+
golang.org/x/sys v0.0.0-20220829200755-d48e67d00261
119
)
1210

1311
go 1.16

Diff for: go.sum

+5-3
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,6 @@ github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWR
6666
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI=
6767
github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU=
6868
github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=
69-
github.com/cmaglie/go-serial v0.0.0-20221214153202-f7509ff50314 h1:ntFIa+TpluwJoXBrre7umEs4PE3uBgBgCwZd24boGL4=
70-
github.com/cmaglie/go-serial v0.0.0-20221214153202-f7509ff50314/go.mod h1:z8CesKorE90Qr/oRSJiEuvzYRKol9r/anJZEb5kt304=
7169
github.com/cmaglie/pb v1.0.27/go.mod h1:GilkKZMXYjBA4NxItWFfO+lwkp59PLHQ+IOW/b/kmZI=
7270
github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc=
7371
github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk=
@@ -303,6 +301,9 @@ github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1
303301
go.bug.st/cleanup v1.0.0/go.mod h1:EqVmTg2IBk4znLbPD28xne3abjsJftMdqqJEjhn70bk=
304302
go.bug.st/downloader/v2 v2.1.1/go.mod h1:VZW2V1iGKV8rJL2ZEGIDzzBeKowYv34AedJz13RzVII=
305303
go.bug.st/relaxed-semver v0.0.0-20190922224835-391e10178d18/go.mod h1:Cx1VqMtEhE9pIkEyUj3LVVVPkv89dgW8aCKrRPDR/uE=
304+
go.bug.st/serial v1.3.2/go.mod h1:jDkjqASf/qSjmaOxHSHljwUQ6eHo/ZX/bxJLQqSlvZg=
305+
go.bug.st/serial v1.5.0 h1:ThuUkHpOEmCVXxGEfpoExjQCS2WBVV4ZcUKVYInM9T4=
306+
go.bug.st/serial v1.5.0/go.mod h1:UABfsluHAiaNI+La2iESysd9Vetq7VRdpxvjx7CmmOE=
306307
go.bug.st/serial.v1 v0.0.0-20180827123349-5f7892a7bb45/go.mod h1:dRSl/CVCTf56CkXgJMDOdSwNfo2g1orOGE/gBGdvjZw=
307308
go.etcd.io/etcd/api/v3 v3.5.0/go.mod h1:cbVKeC6lCfl7j/8jBhAK6aIYO9XOjdptoxU/nLQcPvs=
308309
go.etcd.io/etcd/client/pkg/v3 v3.5.0/go.mod h1:IJHfcCEKxYu1Os13ZdwCwIUTUVGYTSAM3YSwc9/Ac1g=
@@ -470,8 +471,9 @@ golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7w
470471
golang.org/x/sys v0.0.0-20210403161142-5e06dd20ab57/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
471472
golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
472473
golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
473-
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf h1:2ucpDCmfkl8Bd/FsLtiD653Wf96cW37s+iGx93zsu4k=
474474
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
475+
golang.org/x/sys v0.0.0-20220829200755-d48e67d00261 h1:v6hYoSR9T5oet+pMXwUWkbiVqx/63mlHjefrHmxwfeY=
476+
golang.org/x/sys v0.0.0-20220829200755-d48e67d00261/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
475477
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
476478
golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
477479
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=

0 commit comments

Comments
 (0)