Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump up version and dependencies #17

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.2-dev
0.8.2
9 changes: 1 addition & 8 deletions cmd/onos-o1t-test/onos-o1t-test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,6 @@

package main

import (
"github.com/onosproject/helmit/pkg/registry"
"github.com/onosproject/helmit/pkg/test"
"github.com/onosproject/onos-o1t/test/o1client"
)

func main() {
registry.RegisterTestSuite("o1client", &o1client.TestSuite{})
test.Main()

}
82 changes: 66 additions & 16 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,24 +1,74 @@
module github.com/onosproject/onos-o1t

go 1.16
go 1.19

require (
github.com/basgys/goxml2json v1.1.1-0.20181031222924-996d9fc8d313
github.com/google/gnxi v0.0.0-20220519184815-4f29cc8bd253
github.com/google/uuid v1.3.0
github.com/json-iterator/go v1.1.12 // indirect
github.com/mattn/go-colorable v0.1.8 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/onosproject/helmit v0.6.19
github.com/onosproject/onos-api/go v0.9.17
github.com/onosproject/onos-config v0.10.34
github.com/onosproject/onos-lib-go v0.8.13
github.com/onosproject/onos-ric-sdk-go v0.8.9
github.com/onosproject/onos-test v0.6.6
github.com/openconfig/gnmi v0.0.0-20220503232738-6eb133c65a13
github.com/openshift-telco/go-netconf-client v0.0.0-20211201160131-f3f08f0df531
github.com/rogpeppe/go-internal v1.8.0 // indirect
github.com/stretchr/testify v1.7.0
golang.org/x/crypto v0.0.0-20220331220935-ae2d96664a29
google.golang.org/grpc v1.46.0
github.com/onosproject/onos-api/go v0.10.31
github.com/onosproject/onos-lib-go v0.10.24
github.com/onosproject/onos-ric-sdk-go v0.8.12
github.com/openconfig/gnmi v0.9.1
golang.org/x/crypto v0.5.0
google.golang.org/grpc v1.54.0
)

require (
github.com/Shopify/sarama v1.31.1 // indirect
github.com/atomix/atomix/api v1.1.0 // indirect
github.com/bitly/go-simplejson v0.5.0 // indirect
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/eapache/go-resiliency v1.2.0 // indirect
github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 // indirect
github.com/eapache/queue v1.1.0 // indirect
github.com/ericchiang/oidc v0.0.0-20160908143337-11f62933e071 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang-jwt/jwt/v5 v5.0.0 // indirect
github.com/golang/mock v1.6.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
github.com/hashicorp/go-uuid v1.0.2 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/jcmturner/aescts/v2 v2.0.0 // indirect
github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect
github.com/jcmturner/gofork v1.0.0 // indirect
github.com/jcmturner/gokrb5/v8 v8.4.2 // indirect
github.com/jcmturner/rpc/v2 v2.0.3 // indirect
github.com/klauspost/compress v1.14.2 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/magiconair/properties v1.8.6 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/mapstructure v1.4.3 // indirect
github.com/pelletier/go-toml v1.9.4 // indirect
github.com/pelletier/go-toml/v2 v2.0.0-beta.8 // indirect
github.com/pierrec/lz4 v2.6.1+incompatible // indirect
github.com/pquerna/cachecontrol v0.1.0 // indirect
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
github.com/spf13/afero v1.8.2 // indirect
github.com/spf13/cast v1.5.0 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/viper v1.11.0 // indirect
github.com/subosito/gotenv v1.2.0 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/goleak v1.2.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
go.uber.org/zap v1.24.0 // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/oauth2 v0.4.0 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/text v0.8.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/ini.v1 v1.66.4 // indirect
gopkg.in/square/go-jose.v1 v1.1.2 // indirect
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
1,400 changes: 88 additions & 1,312 deletions go.sum

Large diffs are not rendered by default.

61 changes: 0 additions & 61 deletions test/README.md

This file was deleted.

66 changes: 0 additions & 66 deletions test/o1client/o1client.go

This file was deleted.

56 changes: 0 additions & 56 deletions test/o1client/suite.go

This file was deleted.

26 changes: 0 additions & 26 deletions test/utils/defs.go

This file was deleted.

24 changes: 0 additions & 24 deletions test/utils/file_io.go

This file was deleted.

Loading