Skip to content

Commit 7974797

Browse files
authored
Merge pull request #262 from FelixTing/upgrade-sdk
build: Bump device-sdk-go from 4.0.0 to 4.0.1
2 parents 999ef3d + 03fede2 commit 7974797

File tree

199 files changed

+9773
-3710
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

199 files changed

+9773
-3710
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#
22
# Copyright (c) 2021 Jiangxing Intelligence
3-
# Copyright (c) 2024 IOTech Ltd
3+
# Copyright (c) 2024-2025 IOTech Ltd
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.
@@ -15,7 +15,7 @@
1515
# limitations under the License.
1616
#
1717

18-
ARG BASE=golang:1.23-alpine3.20
18+
ARG BASE=golang:1.23-alpine3.22
1919
FROM ${BASE} AS builder
2020

2121
ARG ADD_BUILD_TAGS=""
@@ -37,7 +37,7 @@ COPY . .
3737
RUN ${MAKE}
3838

3939
# Next image - Copy built Go binary into new workspace
40-
FROM alpine:3.20
40+
FROM alpine:3.22
4141

4242
LABEL license='SPDX-License-Identifier: Apache-2.0' \
4343
copyright='Copyright (c) 2021: Jiangxing Intelligence'

go.mod

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
module github.com/edgexfoundry/device-gpio
22

3-
go 1.23
3+
go 1.23.0
44

55
require (
6-
github.com/edgexfoundry/device-sdk-go/v4 v4.0.0
7-
github.com/edgexfoundry/go-mod-core-contracts/v4 v4.0.1
6+
github.com/edgexfoundry/device-sdk-go/v4 v4.0.1
7+
github.com/edgexfoundry/go-mod-core-contracts/v4 v4.0.2
88
github.com/spf13/cast v1.7.1
99
github.com/warthog618/gpiod v0.8.2
1010
)
@@ -15,12 +15,12 @@ require (
1515
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
1616
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
1717
github.com/eclipse/paho.mqtt.golang v1.5.0 // indirect
18-
github.com/edgexfoundry/go-mod-bootstrap/v4 v4.0.3 // indirect
19-
github.com/edgexfoundry/go-mod-configuration/v4 v4.0.1 // indirect
20-
github.com/edgexfoundry/go-mod-messaging/v4 v4.0.1 // indirect
18+
github.com/edgexfoundry/go-mod-bootstrap/v4 v4.0.4 // indirect
19+
github.com/edgexfoundry/go-mod-configuration/v4 v4.0.2 // indirect
20+
github.com/edgexfoundry/go-mod-messaging/v4 v4.0.2 // indirect
2121
github.com/edgexfoundry/go-mod-registry/v4 v4.0.1 // indirect
2222
github.com/edgexfoundry/go-mod-secrets/v4 v4.0.1 // indirect
23-
github.com/fsnotify/fsnotify v1.7.0 // indirect
23+
github.com/fsnotify/fsnotify v1.8.0 // indirect
2424
github.com/fullsailor/pkcs7 v0.0.0-20190404230743-d7302db945fa // indirect
2525
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
2626
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
@@ -43,8 +43,8 @@ require (
4343
github.com/go-playground/locales v0.14.1 // indirect
4444
github.com/go-playground/universal-translator v0.18.1 // indirect
4545
github.com/go-playground/validator/v10 v10.25.0 // indirect
46-
github.com/go-resty/resty/v2 v2.16.4 // indirect
47-
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
46+
github.com/go-resty/resty/v2 v2.16.5 // indirect
47+
github.com/golang-jwt/jwt/v5 v5.2.2 // indirect
4848
github.com/google/uuid v1.6.0 // indirect
4949
github.com/gorilla/mux v1.8.1 // indirect
5050
github.com/gorilla/schema v1.4.1 // indirect
@@ -54,7 +54,7 @@ require (
5454
github.com/hashicorp/go-multierror v1.1.1 // indirect
5555
github.com/josharian/intern v1.0.0 // indirect
5656
github.com/kataras/go-events v0.0.3 // indirect
57-
github.com/klauspost/compress v1.17.9 // indirect
57+
github.com/klauspost/compress v1.18.0 // indirect
5858
github.com/labstack/echo/v4 v4.13.3 // indirect
5959
github.com/labstack/gommon v0.4.2 // indirect
6060
github.com/leodido/go-urn v1.4.0 // indirect
@@ -70,19 +70,19 @@ require (
7070
github.com/mitchellh/mapstructure v1.5.0 // indirect
7171
github.com/mitchellh/reflectwalk v1.0.2 // indirect
7272
github.com/muhlemmer/gu v0.3.1 // indirect
73-
github.com/nats-io/nats.go v1.39.1 // indirect
73+
github.com/nats-io/nats.go v1.40.1 // indirect
7474
github.com/nats-io/nkeys v0.4.9 // indirect
7575
github.com/nats-io/nuid v1.0.1 // indirect
7676
github.com/oklog/ulid v1.3.1 // indirect
7777
github.com/opentracing/opentracing-go v1.2.0 // indirect
78-
github.com/openziti/channel/v3 v3.0.27 // indirect
79-
github.com/openziti/edge-api v0.26.38 // indirect
80-
github.com/openziti/foundation/v2 v2.0.56 // indirect
81-
github.com/openziti/identity v1.0.94 // indirect
82-
github.com/openziti/metrics v1.2.65 // indirect
83-
github.com/openziti/sdk-golang v0.24.1 // indirect
84-
github.com/openziti/secretstream v0.1.28 // indirect
85-
github.com/openziti/transport/v2 v2.0.160 // indirect
78+
github.com/openziti/channel/v3 v3.0.39 // indirect
79+
github.com/openziti/edge-api v0.26.42 // indirect
80+
github.com/openziti/foundation/v2 v2.0.59 // indirect
81+
github.com/openziti/identity v1.0.100 // indirect
82+
github.com/openziti/metrics v1.3.0 // indirect
83+
github.com/openziti/sdk-golang v0.25.1 // indirect
84+
github.com/openziti/secretstream v0.1.32 // indirect
85+
github.com/openziti/transport/v2 v2.0.167 // indirect
8686
github.com/orcaman/concurrent-map/v2 v2.0.1 // indirect
8787
github.com/panjf2000/ants/v2 v2.11.2 // indirect
8888
github.com/parallaxsecond/parsec-client-go v0.0.0-20221025095442-f0a77d263cf9 // indirect
@@ -107,18 +107,18 @@ require (
107107
go.opentelemetry.io/otel v1.32.0 // indirect
108108
go.opentelemetry.io/otel/metric v1.32.0 // indirect
109109
go.opentelemetry.io/otel/trace v1.32.0 // indirect
110-
golang.org/x/crypto v0.33.0 // indirect
111-
golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 // indirect
112-
golang.org/x/net v0.35.0 // indirect
113-
golang.org/x/oauth2 v0.25.0 // indirect
114-
golang.org/x/sync v0.11.0 // indirect
115-
golang.org/x/sys v0.30.0 // indirect
116-
golang.org/x/term v0.29.0 // indirect
117-
golang.org/x/text v0.22.0 // indirect
110+
golang.org/x/crypto v0.36.0 // indirect
111+
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
112+
golang.org/x/net v0.37.0 // indirect
113+
golang.org/x/oauth2 v0.28.0 // indirect
114+
golang.org/x/sync v0.12.0 // indirect
115+
golang.org/x/sys v0.31.0 // indirect
116+
golang.org/x/term v0.30.0 // indirect
117+
golang.org/x/text v0.23.0 // indirect
118118
golang.org/x/time v0.8.0 // indirect
119119
google.golang.org/genproto/googleapis/rpc v0.0.0-20241202173237-19429a94021a // indirect
120120
google.golang.org/grpc v1.70.0 // indirect
121-
google.golang.org/protobuf v1.36.3 // indirect
121+
google.golang.org/protobuf v1.36.6 // indirect
122122
gopkg.in/go-jose/go-jose.v2 v2.6.3 // indirect
123123
gopkg.in/yaml.v3 v3.0.1 // indirect
124124
nhooyr.io/websocket v1.8.17 // indirect

0 commit comments

Comments
 (0)