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 ent, fgax, datum, and entgo contrib, cleanup #167

Merged
merged 1 commit into from
Aug 2, 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
1 change: 0 additions & 1 deletion docker/docker-compose-fga.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.9"
services:
postgres:
image: postgres:16
Expand Down
2 changes: 0 additions & 2 deletions docker/docker-compose-redis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
version: "3.9"
services:

redis:
image: redis:7.4.0-alpine
container_name: redis
Expand Down
2 changes: 0 additions & 2 deletions docker/docker-compose-tracing.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
version: "3.9"
services:

jaeger:
image: jaegertracing/all-in-one:1.59
container_name: jaeger
Expand Down
2 changes: 0 additions & 2 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3.9"

services:
api:
image: template:dev
Expand Down
33 changes: 17 additions & 16 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ go 1.22.5

require (
ariga.io/entcache v0.1.0
entgo.io/contrib v0.5.0
entgo.io/ent v0.13.1
entgo.io/contrib v0.6.0
entgo.io/ent v0.14.0
github.com/99designs/gqlgen v0.17.49
github.com/TylerBrock/colorjson v0.0.0-20200706003622-8a50f05110d2
github.com/Yamashou/gqlgenc v0.23.2
github.com/datumforge/datum v0.7.5
github.com/datumforge/datum v0.7.6
github.com/datumforge/echo-prometheus/v5 v5.0.0-20240521143548-d561656e6328
github.com/datumforge/echox v0.1.2
github.com/datumforge/echozap v0.0.0-20231205193458-b29cc54cd34c
github.com/datumforge/entx v0.3.1
github.com/datumforge/fgax v0.3.4
github.com/datumforge/fgax v0.5.1
github.com/gorilla/websocket v1.5.3
github.com/hashicorp/go-multierror v1.1.1
github.com/invopop/jsonschema v0.12.0
Expand All @@ -39,14 +39,15 @@ require (
)

require (
cloud.google.com/go/auth v0.7.1 // indirect
cloud.google.com/go/auth v0.7.2 // indirect
cloud.google.com/go/auth/oauth2adapt v0.2.3 // indirect
cloud.google.com/go/compute/metadata v0.5.0 // indirect
github.com/alicebob/gopher-json v0.0.0-20230218143504-906a9b012302 // indirect
github.com/alicebob/miniredis/v2 v2.33.0 // indirect
github.com/alitto/pond v1.9.1 // indirect
github.com/dlclark/regexp2 v1.11.2 // indirect
github.com/dustinkirkland/golang-petname v0.0.0-20240428194347-eebcea082ee0 // indirect
github.com/emirpasic/gods v1.18.1 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/ghodss/yaml v1.0.0 // indirect
github.com/go-faster/errors v0.7.1 // indirect
Expand All @@ -72,7 +73,7 @@ require (
)

require (
ariga.io/atlas v0.25.0 // indirect
ariga.io/atlas v0.25.1-0.20240717145915-af51d3945208 // indirect
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
github.com/Microsoft/go-winio v0.6.2 // indirect
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect
Expand Down Expand Up @@ -118,7 +119,7 @@ require (
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/go-tpm v0.9.1 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/googleapis/gax-go/v2 v2.12.5 // indirect
github.com/googleapis/gax-go/v2 v2.13.0 // indirect
github.com/gorilla/securecookie v1.1.2 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
Expand Down Expand Up @@ -150,10 +151,10 @@ require (
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.1.0 // indirect
github.com/opencontainers/runc v1.1.13 // indirect
github.com/openfga/api/proto v0.0.0-20240627174416-f6e565e180a3 // indirect
github.com/openfga/api/proto v0.0.0-20240723155248-7e5be7b65c27 // indirect
github.com/openfga/go-sdk v0.5.0 // indirect
github.com/openfga/language/pkg/go v0.2.0-beta.0 // indirect
github.com/openfga/openfga v1.5.6-0.20240712201354-518606928ded // indirect
github.com/openfga/openfga v1.5.7 // indirect
github.com/ory/dockertest v3.3.5+incompatible // indirect
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
github.com/pkg/errors v0.9.1 // indirect
Expand All @@ -179,7 +180,7 @@ require (
github.com/stretchr/objx v0.5.2 // indirect
github.com/stretchr/testify v1.9.0 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
github.com/tursodatabase/libsql-client-go v0.0.0-20240715111033-518abad12431 // indirect
github.com/tursodatabase/libsql-client-go v0.0.0-20240723183952-b944339d7e70 // indirect
github.com/urfave/cli/v2 v2.27.2 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
Expand All @@ -201,7 +202,7 @@ require (
go.opentelemetry.io/otel/trace v1.28.0 // indirect
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/exp v0.0.0-20240716160929-1d5bc16f04a8 // indirect
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
golang.org/x/mod v0.19.0 // indirect
golang.org/x/net v0.27.0 // indirect
golang.org/x/oauth2 v0.21.0 // indirect
Expand All @@ -211,19 +212,19 @@ require (
golang.org/x/time v0.5.0 // indirect
golang.org/x/tools v0.23.0 // indirect
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
google.golang.org/api v0.188.0 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240711142825-46eb208f015d // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240711142825-46eb208f015d // indirect
google.golang.org/api v0.189.0 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240722135656-d784300faade // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240722135656-d784300faade // indirect
google.golang.org/grpc v1.65.0 // indirect
google.golang.org/protobuf v1.34.2 // 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
modernc.org/gc/v3 v3.0.0-20240304020402-f0dba7c97c2b // indirect
modernc.org/libc v1.55.2 // indirect
modernc.org/libc v1.55.3 // indirect
modernc.org/mathutil v1.6.0 // indirect
modernc.org/memory v1.8.0 // indirect
modernc.org/sqlite v1.30.2 // indirect
modernc.org/sqlite v1.31.1 // indirect
modernc.org/strutil v1.2.0 // indirect
modernc.org/token v1.1.0 // indirect
nhooyr.io/websocket v1.8.11 // indirect
Expand Down
Loading