From 6ebb31ee5cbd6400a2cfd4dca1a478162074a824 Mon Sep 17 00:00:00 2001 From: Dmitry Ledentsov Date: Fri, 30 Sep 2022 17:01:46 +0200 Subject: [PATCH] go mod update after 1.19 --- go.mod | 51 +++++++++++++++++++++++++++++------- test/jquery_example/go.mod | 2 +- test/large_list_check/go.mod | 2 +- 3 files changed, 44 insertions(+), 11 deletions(-) diff --git a/go.mod b/go.mod index 6e67780..7517156 100644 --- a/go.mod +++ b/go.mod @@ -1,34 +1,67 @@ module github.com/siemens/link-checker-service -go 1.16 +go 1.19 require ( github.com/appleboy/gin-jwt/v2 v2.9.0 github.com/darren/gpac v0.0.0-20210609082804-b56d6523a3af github.com/dgraph-io/ristretto v0.1.0 - github.com/dop251/goja v0.0.0-20220927172339-ea66e911853d // indirect github.com/gin-contrib/cors v1.4.0 github.com/gin-gonic/gin v1.8.1 - github.com/go-playground/validator/v10 v10.11.1 // indirect github.com/go-resty/resty/v2 v2.7.0 github.com/gobwas/glob v0.2.3 - github.com/goccy/go-json v0.9.11 // indirect github.com/golang-jwt/jwt v3.2.2+incompatible - github.com/golang/glog v1.0.0 // indirect github.com/google/uuid v1.3.0 - github.com/inconshreveable/mousetrap v1.0.1 // indirect - github.com/mattn/go-isatty v0.0.16 // indirect github.com/mitchellh/go-homedir v1.1.0 github.com/patrickmn/go-cache v2.1.0+incompatible github.com/platinummonkey/go-concurrency-limits v0.7.0 - github.com/spf13/afero v1.9.2 // indirect github.com/spf13/cobra v1.5.0 github.com/spf13/viper v1.13.0 github.com/stretchr/testify v1.8.0 github.com/ulule/limiter/v3 v3.10.0 + golang.org/x/time v0.0.0-20220922220347-f3bd1da661af +) + +require ( + github.com/cespare/xxhash/v2 v2.1.2 // indirect + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/dlclark/regexp2 v1.7.0 // indirect + github.com/dop251/goja v0.0.0-20220927172339-ea66e911853d // indirect + github.com/dustin/go-humanize v1.0.0 // indirect + github.com/fsnotify/fsnotify v1.5.4 // indirect + github.com/gin-contrib/sse v0.1.0 // 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.11.1 // indirect + github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect + github.com/goccy/go-json v0.9.11 // indirect + github.com/golang-jwt/jwt/v4 v4.4.2 // indirect + github.com/golang/glog v1.0.0 // indirect + github.com/hashicorp/hcl v1.0.0 // indirect + github.com/inconshreveable/mousetrap v1.0.1 // indirect + github.com/json-iterator/go v1.1.12 // indirect + github.com/leodido/go-urn v1.2.1 // indirect + github.com/magiconair/properties v1.8.6 // indirect + github.com/mattn/go-isatty v0.0.16 // indirect + github.com/mitchellh/mapstructure v1.5.0 // indirect + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect + github.com/modern-go/reflect2 v1.0.2 // indirect + github.com/pelletier/go-toml v1.9.5 // indirect + github.com/pelletier/go-toml/v2 v2.0.5 // indirect + github.com/pkg/errors v0.9.1 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect + github.com/spf13/afero v1.9.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/subosito/gotenv v1.4.1 // indirect + github.com/ugorji/go/codec v1.2.7 // indirect golang.org/x/crypto v0.0.0-20220926161630-eccd6366d1be // indirect golang.org/x/net v0.0.0-20220927171203-f486391704dc // indirect golang.org/x/sys v0.0.0-20220928140112-f11e5e49a4ec // indirect - golang.org/x/time v0.0.0-20220922220347-f3bd1da661af + golang.org/x/text v0.3.7 // indirect google.golang.org/protobuf v1.28.1 // indirect + gopkg.in/ini.v1 v1.67.0 // indirect + gopkg.in/yaml.v2 v2.4.0 // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect ) diff --git a/test/jquery_example/go.mod b/test/jquery_example/go.mod index 4d43d91..3336971 100644 --- a/test/jquery_example/go.mod +++ b/test/jquery_example/go.mod @@ -1,3 +1,3 @@ module github.com/siemens/link-checker-service/test/jquery_example -go 1.16 +go 1.19 diff --git a/test/large_list_check/go.mod b/test/large_list_check/go.mod index a12b42c..878a03f 100644 --- a/test/large_list_check/go.mod +++ b/test/large_list_check/go.mod @@ -1,6 +1,6 @@ module github.com/siemens/link-checker-service/test/large_list_check -go 1.16 +go 1.19 require ( github.com/ahmetb/go-linq v3.0.0+incompatible