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

gorm v2 #164

Merged
merged 8 commits into from
Mar 19, 2024
Merged
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# The docker image to generate Golang code from Protol Buffer.
FROM golang:1.17.0-alpine3.14 as builder
FROM golang:1.19.0-alpine as builder
LABEL intermediate=true
MAINTAINER DL NGP-App-Infra-API <[email protected]>

Expand Down Expand Up @@ -27,7 +27,7 @@ RUN go install github.com/envoyproxy/protoc-gen-validate
RUN go install github.com/mwitkow/go-proto-validators/protoc-gen-govalidators
RUN go install github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc
RUN go install github.com/infobloxopen/protoc-gen-preprocess
RUN cd ${GOPATH}/src/github.com/infobloxopen/protoc-gen-atlas-query-validate && dep ensure && GO111MODULE=off go install .
RUN go install github.com/infobloxopen/protoc-gen-atlas-query-validate
RUN go install github.com/infobloxopen/protoc-gen-atlas-validate
RUN go install github.com/infobloxopen/protoc-gen-gorm

Expand Down
32 changes: 16 additions & 16 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,62 +8,62 @@ require (
github.com/ghodss/yaml v1.0.0
github.com/go-openapi/spec v0.20.7
github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.2
github.com/infobloxopen/atlas-app-toolkit v1.2.2-0.20220721202134-28480c4993fc
github.com/infobloxopen/protoc-gen-atlas-query-validate v0.5.2
github.com/infobloxopen/atlas-app-toolkit/v2 v2.2.1
github.com/infobloxopen/protoc-gen-atlas-query-validate v0.6.1-0.20240319190234-65e2abf892a9
github.com/infobloxopen/protoc-gen-atlas-validate v1.0.1
github.com/infobloxopen/protoc-gen-gorm v1.1.3
github.com/infobloxopen/protoc-gen-gorm v1.1.4
github.com/infobloxopen/protoc-gen-preprocess v1.0.1
github.com/mwitkow/go-proto-validators v0.3.2
github.com/pseudomuto/protoc-gen-doc v1.5.1
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.2.0
google.golang.org/protobuf v1.33.0
gorm.io/gorm v1.23.2
)

require (
github.com/Masterminds/semver v1.4.2 // indirect
github.com/Masterminds/sprig v2.15.0+incompatible // indirect
github.com/alecthomas/jsonschema v0.0.0-20210918223802-a1d3f4b43d7b // indirect
github.com/aokoli/goutils v1.0.1 // indirect
github.com/denisenkom/go-mssqldb v0.12.0 // indirect
github.com/fatih/camelcase v1.0.0 // indirect
github.com/go-openapi/jsonpointer v0.19.5 // indirect
github.com/go-openapi/jsonreference v0.20.0 // indirect
github.com/go-openapi/swag v0.19.15 // indirect
github.com/go-sql-driver/mysql v1.6.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang-jwt/jwt/v4 v4.4.1 // indirect
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect
github.com/golang/glog v1.0.0 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/uuid v1.2.0 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
github.com/google/uuid v1.5.0 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
github.com/huandu/xstrings v1.0.0 // indirect
github.com/iancoleman/orderedmap v0.2.0 // indirect
github.com/iancoleman/strcase v0.2.0 // indirect
github.com/imdario/mergo v0.3.4 // indirect
github.com/jinzhu/gorm v1.9.16 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/lib/pq v1.10.2 // indirect
github.com/lyft/protoc-gen-star v0.6.0 // indirect
github.com/magefile/mage v1.10.0 // indirect
github.com/mailru/easyjson v0.7.6 // indirect
github.com/pkg/errors v0.8.1 // indirect
github.com/mattn/go-sqlite3 v1.14.12 // indirect
github.com/pseudomuto/protokit v0.2.0 // indirect
github.com/sirupsen/logrus v1.8.0 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/spf13/afero v1.6.0 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20190809123943-df4f5c81cb3b // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
golang.org/x/crypto v0.17.0 // indirect
golang.org/x/crypto v0.18.0 // indirect
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
golang.org/x/mod v0.8.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.15.0 // 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
golang.org/x/tools v0.6.0 // indirect
google.golang.org/genproto v0.0.0-20220805133916-01dd62135a58 // indirect
google.golang.org/grpc v1.48.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gorm.io/datatypes v1.0.6 // indirect
gorm.io/driver/mysql v1.3.2 // indirect
gorm.io/gorm v1.23.2 // indirect
)
Loading
Loading