-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update as controller board to use EdgeX-3.0 (#140)
* feat: update as controller board to use EdgeX-3.0 * fix: remove build tags related to no_zmq for tests * fix: change automated checkout wording to automated vending for as-controller board * fix: add the missing support-notification client config in configuration yaml file Signed-off-by: Jim Wang <yutsung.jim.wang@intel.com> --------- Signed-off-by: Jim Wang <yutsung.jim.wang@intel.com>
- Loading branch information
1 parent
add46cf
commit f50f06c
Showing
17 changed files
with
327 additions
and
359 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,74 +1,78 @@ | ||
// Copyright © 2022 Intel Corporation. All rights reserved. | ||
// Copyright © 2023 Intel Corporation. All rights reserved. | ||
// SPDX-License-Identifier: BSD-3-Clause | ||
|
||
module as-controller-board-status | ||
|
||
go 1.18 | ||
go 1.20 | ||
|
||
require ( | ||
github.com/edgexfoundry/app-functions-sdk-go/v2 v2.2.0 | ||
github.com/edgexfoundry/go-mod-core-contracts/v2 v2.2.0 | ||
github.com/edgexfoundry/app-functions-sdk-go/v3 v3.0.1 | ||
github.com/edgexfoundry/go-mod-core-contracts/v3 v3.0.0 | ||
github.com/google/uuid v1.3.0 | ||
github.com/intel-iot-devkit/automated-checkout-utilities v1.0.0 | ||
github.com/stretchr/testify v1.8.0 | ||
github.com/stretchr/testify v1.8.4 | ||
) | ||
|
||
require ( | ||
bitbucket.org/bertimus9/systemstat v0.5.0 // indirect | ||
github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da // indirect | ||
github.com/Microsoft/go-winio v0.6.0 // indirect | ||
github.com/armon/go-metrics v0.3.10 // indirect | ||
github.com/cenkalti/backoff v2.2.1+incompatible // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/diegoholiveira/jsonlogic v1.0.1-0.20200220175622-ab7989be08b9 // indirect | ||
github.com/eclipse/paho.mqtt.golang v1.3.5 // indirect | ||
github.com/edgexfoundry/go-mod-bootstrap/v2 v2.2.0 // indirect | ||
github.com/edgexfoundry/go-mod-configuration/v2 v2.2.0 // indirect | ||
github.com/edgexfoundry/go-mod-messaging/v2 v2.2.0 // indirect | ||
github.com/edgexfoundry/go-mod-registry/v2 v2.2.0 // indirect | ||
github.com/edgexfoundry/go-mod-secrets/v2 v2.2.0 // indirect | ||
github.com/diegoholiveira/jsonlogic/v3 v3.2.7 // indirect | ||
github.com/eclipse/paho.mqtt.golang v1.4.2 // indirect | ||
github.com/edgexfoundry/go-mod-bootstrap/v3 v3.0.1 // indirect | ||
github.com/edgexfoundry/go-mod-configuration/v3 v3.0.0 // indirect | ||
github.com/edgexfoundry/go-mod-messaging/v3 v3.0.0 // indirect | ||
github.com/edgexfoundry/go-mod-registry/v3 v3.0.0 // indirect | ||
github.com/edgexfoundry/go-mod-secrets/v3 v3.0.1 // indirect | ||
github.com/fatih/color v1.9.0 // indirect | ||
github.com/fxamacker/cbor/v2 v2.4.0 // indirect | ||
github.com/go-kit/log v0.2.0 // indirect | ||
github.com/go-jose/go-jose/v3 v3.0.0 // indirect | ||
github.com/go-kit/log v0.2.1 // indirect | ||
github.com/go-logfmt/logfmt v0.5.1 // indirect | ||
github.com/go-playground/locales v0.14.0 // indirect | ||
github.com/go-playground/universal-translator v0.18.0 // indirect | ||
github.com/go-playground/validator/v10 v10.10.1 // indirect | ||
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.13.0 // indirect | ||
github.com/go-redis/redis/v7 v7.3.0 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/gomodule/redigo v1.8.8 // indirect | ||
github.com/gomodule/redigo v1.8.9 // indirect | ||
github.com/gorilla/mux v1.8.0 // indirect | ||
github.com/gorilla/websocket v1.4.2 // indirect | ||
github.com/hashicorp/consul/api v1.9.1 // indirect | ||
github.com/hashicorp/consul/api v1.20.0 // indirect | ||
github.com/hashicorp/errwrap v1.0.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.1 // indirect | ||
github.com/hashicorp/go-hclog v0.12.0 // indirect | ||
github.com/hashicorp/go-immutable-radix v1.0.0 // indirect | ||
github.com/hashicorp/go-hclog v0.14.1 // indirect | ||
github.com/hashicorp/go-immutable-radix v1.3.0 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/hashicorp/go-rootcerts v1.0.2 // indirect | ||
github.com/hashicorp/golang-lru v0.5.0 // indirect | ||
github.com/hashicorp/serf v0.9.5 // indirect | ||
github.com/leodido/go-urn v1.2.1 // indirect | ||
github.com/mattn/go-colorable v0.1.6 // indirect | ||
github.com/mattn/go-isatty v0.0.12 // indirect | ||
github.com/hashicorp/golang-lru v0.5.4 // indirect | ||
github.com/hashicorp/serf v0.10.1 // indirect | ||
github.com/leodido/go-urn v1.2.3 // indirect | ||
github.com/mattn/go-colorable v0.1.12 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
github.com/mitchellh/consulstructure v0.0.0-20190329231841-56fdc4d2da54 // indirect | ||
github.com/mitchellh/copystructure v1.0.0 // indirect | ||
github.com/mitchellh/copystructure v1.2.0 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/mitchellh/mapstructure v1.1.2 // indirect | ||
github.com/mitchellh/reflectwalk v1.0.0 // indirect | ||
github.com/pebbe/zmq4 v1.2.7 // indirect | ||
github.com/pelletier/go-toml v1.9.4 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/mitchellh/reflectwalk v1.0.2 // indirect | ||
github.com/nats-io/nats.go v1.25.0 // indirect | ||
github.com/nats-io/nkeys v0.4.4 // indirect | ||
github.com/nats-io/nuid v1.0.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a // indirect | ||
github.com/spiffe/go-spiffe/v2 v2.0.0 // indirect | ||
github.com/stretchr/objx v0.4.0 // indirect | ||
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect | ||
github.com/spiffe/go-spiffe/v2 v2.1.4 // indirect | ||
github.com/stretchr/objx v0.5.0 // indirect | ||
github.com/x448/float16 v0.8.4 // indirect | ||
github.com/zeebo/errs v1.2.2 // indirect | ||
golang.org/x/crypto v0.1.0 // indirect | ||
golang.org/x/net v0.7.0 // indirect | ||
golang.org/x/sys v0.5.0 // indirect | ||
golang.org/x/text v0.7.0 // indirect | ||
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect | ||
github.com/zeebo/errs v1.3.0 // indirect | ||
golang.org/x/crypto v0.8.0 // indirect | ||
golang.org/x/mod v0.8.0 // indirect | ||
golang.org/x/net v0.9.0 // indirect | ||
golang.org/x/sync v0.1.0 // indirect | ||
golang.org/x/sys v0.7.0 // indirect | ||
golang.org/x/text v0.9.0 // indirect | ||
golang.org/x/tools v0.6.0 // indirect | ||
google.golang.org/genproto v0.0.0-20230223222841-637eb2293923 // indirect | ||
google.golang.org/grpc v1.53.0 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
gopkg.in/square/go-jose.v2 v2.4.1 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.