Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// Copyright (c) 2020 Intel Corporation
// Copyright (c) 2020-2023 IOTech Ltd
// Copyright (c) 2020-2025 IOTech Ltd
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand All @@ -21,5 +21,6 @@ edgeXBuildGoApp (
dockerFilePath: 'example/cmd/device-simple/Dockerfile',
pushImage: false,
publishSwaggerDocs: true,
swaggerApiFolders: ['openapi']
swaggerApiFolders: ['openapi'],
goVersion: '1.23'
)
6 changes: 6 additions & 0 deletions example/cmd/device-simple/Attribution.txt
Original file line number Diff line number Diff line change
Expand Up @@ -428,3 +428,9 @@ https://github.com/nhooyr/websocket/blob/master/LICENSE.txt

gopkg.in/go-jose/go-jose.v2 (Apache 2.0) - https://github.com/go-jose/go-jose
https://github.com/go-jose/go-jose/blob/v2.6.3/LICENSE

github.com/emirpasic/gods (Unspecified) https://github.com/emirpasic/gods
https://github.com/emirpasic/gods/blob/master/LICENSE

github.com/openziti/channel/v4 (Apache 2.0) - https://github.com/openziti/channel
https://github.com/openziti/channel/blob/main/LICENSE
52 changes: 26 additions & 26 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
module github.com/edgexfoundry/device-sdk-go/v4

go 1.23
go 1.23.0

require (
github.com/OneOfOne/xxhash v1.2.8
github.com/edgexfoundry/go-mod-bootstrap/v4 v4.0.3
github.com/edgexfoundry/go-mod-core-contracts/v4 v4.0.1
github.com/edgexfoundry/go-mod-messaging/v4 v4.0.1
github.com/edgexfoundry/go-mod-bootstrap/v4 v4.1.0-dev.3
github.com/edgexfoundry/go-mod-core-contracts/v4 v4.1.0-dev.3
github.com/edgexfoundry/go-mod-messaging/v4 v4.1.0-dev.3
github.com/google/uuid v1.6.0
github.com/hashicorp/go-multierror v1.1.1
github.com/labstack/echo/v4 v4.13.3
github.com/panjf2000/ants/v2 v2.11.2
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475
github.com/spf13/cast v1.7.1
github.com/stretchr/testify v1.10.0
golang.org/x/net v0.35.0
golang.org/x/net v0.37.0
gopkg.in/yaml.v3 v3.0.1
)

Expand All @@ -27,7 +27,7 @@ require (
github.com/edgexfoundry/go-mod-configuration/v4 v4.0.1 // indirect
github.com/edgexfoundry/go-mod-registry/v4 v4.0.1 // indirect
github.com/edgexfoundry/go-mod-secrets/v4 v4.0.1 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/fsnotify/fsnotify v1.8.0 // indirect
github.com/fullsailor/pkcs7 v0.0.0-20190404230743-d7302db945fa // indirect
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
Expand All @@ -50,16 +50,16 @@ require (
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-playground/validator/v10 v10.25.0 // indirect
github.com/go-resty/resty/v2 v2.16.4 // indirect
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
github.com/go-resty/resty/v2 v2.16.5 // indirect
github.com/golang-jwt/jwt/v5 v5.2.2 // indirect
github.com/gorilla/mux v1.8.1 // indirect
github.com/gorilla/schema v1.4.1 // indirect
github.com/gorilla/securecookie v1.1.2 // indirect
github.com/gorilla/websocket v1.5.3 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/kataras/go-events v0.0.3 // indirect
github.com/klauspost/compress v1.17.9 // indirect
github.com/klauspost/compress v1.18.0 // indirect
github.com/labstack/gommon v0.4.2 // indirect
github.com/leodido/go-urn v1.4.0 // indirect
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
Expand All @@ -74,19 +74,19 @@ require (
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/muhlemmer/gu v0.3.1 // indirect
github.com/nats-io/nats.go v1.39.1 // indirect
github.com/nats-io/nats.go v1.40.1 // indirect
github.com/nats-io/nkeys v0.4.9 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
github.com/oklog/ulid v1.3.1 // indirect
github.com/opentracing/opentracing-go v1.2.0 // indirect
github.com/openziti/channel/v3 v3.0.27 // indirect
github.com/openziti/edge-api v0.26.38 // indirect
github.com/openziti/foundation/v2 v2.0.56 // indirect
github.com/openziti/identity v1.0.94 // indirect
github.com/openziti/metrics v1.2.65 // indirect
github.com/openziti/sdk-golang v0.24.1 // indirect
github.com/openziti/secretstream v0.1.28 // indirect
github.com/openziti/transport/v2 v2.0.160 // indirect
github.com/openziti/channel/v3 v3.0.39 // indirect
github.com/openziti/edge-api v0.26.42 // indirect
github.com/openziti/foundation/v2 v2.0.59 // indirect
github.com/openziti/identity v1.0.100 // indirect
github.com/openziti/metrics v1.3.0 // indirect
github.com/openziti/sdk-golang v0.25.1 // indirect
github.com/openziti/secretstream v0.1.32 // indirect
github.com/openziti/transport/v2 v2.0.167 // indirect
github.com/orcaman/concurrent-map/v2 v2.0.1 // indirect
github.com/parallaxsecond/parsec-client-go v0.0.0-20221025095442-f0a77d263cf9 // indirect
github.com/pkg/errors v0.9.1 // indirect
Expand All @@ -111,17 +111,17 @@ require (
go.opentelemetry.io/otel v1.32.0 // indirect
go.opentelemetry.io/otel/metric v1.32.0 // indirect
go.opentelemetry.io/otel/trace v1.32.0 // indirect
golang.org/x/crypto v0.33.0 // indirect
golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 // indirect
golang.org/x/oauth2 v0.25.0 // indirect
golang.org/x/sync v0.11.0 // indirect
golang.org/x/sys v0.30.0 // indirect
golang.org/x/term v0.29.0 // indirect
golang.org/x/text v0.22.0 // indirect
golang.org/x/crypto v0.36.0 // indirect
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
golang.org/x/oauth2 v0.28.0 // indirect
golang.org/x/sync v0.12.0 // indirect
golang.org/x/sys v0.31.0 // indirect
golang.org/x/term v0.30.0 // indirect
golang.org/x/text v0.23.0 // indirect
golang.org/x/time v0.8.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20241202173237-19429a94021a // indirect
google.golang.org/grpc v1.70.0 // indirect
google.golang.org/protobuf v1.36.3 // indirect
google.golang.org/protobuf v1.36.6 // indirect
gopkg.in/go-jose/go-jose.v2 v2.6.3 // indirect
nhooyr.io/websocket v1.8.17 // indirect
)
Loading