-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(go.mod): upgrade dependiencies (#18)
- Loading branch information
Showing
4 changed files
with
58 additions
and
423 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,3 +79,5 @@ $RECYCLE.BIN/ | |
*.code-workspace | ||
vendor/ | ||
.idea | ||
.vscode | ||
.envrc |
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,36 +1,36 @@ | ||
module github.com/TencentBlueKing/bk-apigateway-sdks | ||
|
||
go 1.17 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/TencentBlueKing/gopkg v1.0.9 | ||
github.com/flosch/pongo2/v5 v5.0.0 | ||
github.com/golang-jwt/jwt/v4 v4.3.0 | ||
github.com/golang-jwt/jwt/v4 v4.5.1 | ||
github.com/golang/mock v1.6.0 | ||
github.com/onsi/ginkgo/v2 v2.1.3 | ||
github.com/onsi/gomega v1.18.1 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/prometheus/client_golang v1.13.0 | ||
github.com/prometheus/client_model v0.2.0 | ||
github.com/prometheus/client_golang v1.20.5 | ||
github.com/prometheus/client_model v0.6.1 | ||
gopkg.in/h2non/gentleman.v2 v2.0.5 | ||
gopkg.in/h2non/gock.v1 v1.1.2 | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) | ||
|
||
require ( | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect | ||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect | ||
github.com/prometheus/common v0.37.0 // indirect | ||
github.com/prometheus/procfs v0.8.0 // indirect | ||
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect | ||
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f // indirect | ||
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
github.com/prometheus/common v0.60.1 // indirect | ||
github.com/prometheus/procfs v0.15.1 // indirect | ||
golang.org/x/net v0.31.0 // indirect | ||
golang.org/x/sync v0.9.0 // indirect | ||
golang.org/x/sys v0.27.0 // indirect | ||
golang.org/x/text v0.20.0 // indirect | ||
google.golang.org/protobuf v1.35.2 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
logur.dev/logur v0.17.0 // indirect | ||
) |
Oops, something went wrong.