-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgrade atlas app toolkit to v2 (#264)
* upgrade atlas app toolkit to v2 * gorm v2 * go mod tidy / vendor
- Loading branch information
1 parent
4aa3400
commit 3d47392
Showing
13 changed files
with
116 additions
and
39 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,21 +1,34 @@ | ||
module github.com/infobloxopen/protoc-gen-gorm | ||
|
||
require ( | ||
github.com/golang-jwt/jwt/v4 v4.4.1 | ||
github.com/golang-jwt/jwt/v4 v4.5.0 | ||
github.com/golang/protobuf v1.5.2 | ||
github.com/google/go-cmp v0.5.8 | ||
github.com/grpc-ecosystem/go-grpc-middleware v1.2.2 | ||
github.com/infobloxopen/atlas-app-toolkit v1.2.2-0.20220721202134-28480c4993fc | ||
github.com/jackc/pgtype v1.11.0 // indirect | ||
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 | ||
github.com/infobloxopen/atlas-app-toolkit/v2 v2.2.1-0.20240313220428-5449c0c2a27f | ||
github.com/jinzhu/inflection v1.0.0 | ||
github.com/jinzhu/now v1.1.5 // indirect | ||
github.com/lib/pq v1.10.2 | ||
github.com/satori/go.uuid v1.2.0 | ||
go.opencensus.io v0.23.0 | ||
google.golang.org/genproto v0.0.0-20220722212130-b98a9ff5e252 | ||
google.golang.org/grpc v1.48.0 | ||
google.golang.org/protobuf v1.28.0 | ||
google.golang.org/protobuf v1.32.0 | ||
gorm.io/gorm v1.23.2 | ||
) | ||
|
||
go 1.16 | ||
require ( | ||
github.com/go-sql-driver/mysql v1.6.0 // indirect | ||
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect | ||
github.com/grpc-ecosystem/grpc-gateway/v2 v2.5.0 // indirect | ||
github.com/jackc/pgtype v1.11.0 // indirect | ||
github.com/jinzhu/now v1.1.5 // indirect | ||
github.com/pkg/errors v0.8.1 // indirect | ||
github.com/stretchr/testify v1.8.4 // indirect | ||
golang.org/x/net v0.20.0 // indirect | ||
golang.org/x/sys v0.16.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
gorm.io/datatypes v1.0.6 // indirect | ||
gorm.io/driver/mysql v1.3.2 // indirect | ||
) | ||
|
||
go 1.17 |
Oops, something went wrong.