Skip to content

Commit

Permalink
Release v3.0.35
Browse files Browse the repository at this point in the history
  • Loading branch information
dosco committed Sep 6, 2024
1 parent 7cd6fe1 commit d3f4a1d
Show file tree
Hide file tree
Showing 15 changed files with 445 additions and 14 deletions.
2 changes: 1 addition & 1 deletion auth/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.18
require (
github.com/adjust/gorails v0.0.0-20171013043634-2786ed0c03d3
github.com/bradfitz/gomemcache v0.0.0-20230905024940-24af94b03874
github.com/dosco/graphjin/core/v3 v3.0.34
github.com/dosco/graphjin/core/v3 v
github.com/golang-jwt/jwt v3.2.2+incompatible
github.com/gomodule/redigo v1.9.2
github.com/gorilla/websocket v1.5.3
Expand Down
33 changes: 33 additions & 0 deletions auth/go.mod-e
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
module github.com/dosco/graphjin/auth/v3

go 1.18

require (
github.com/adjust/gorails v0.0.0-20171013043634-2786ed0c03d3
github.com/bradfitz/gomemcache v0.0.0-20230905024940-24af94b03874
github.com/dosco/graphjin/core/v3 v3.0.34
github.com/golang-jwt/jwt v3.2.2+incompatible
github.com/gomodule/redigo v1.9.2
github.com/gorilla/websocket v1.5.3
github.com/lestrrat-go/jwx v1.2.30
github.com/stretchr/testify v1.9.0
go.uber.org/zap v1.27.0
golang.org/x/crypto v0.27.0
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
github.com/goccy/go-json v0.10.3 // indirect
github.com/hashicorp/golang-lru v1.0.2 // indirect
github.com/lestrrat-go/backoff/v2 v2.0.8 // indirect
github.com/lestrrat-go/blackmagic v1.0.2 // indirect
github.com/lestrrat-go/httpcc v1.0.1 // indirect
github.com/lestrrat-go/iter v1.0.2 // indirect
github.com/lestrrat-go/option v1.0.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/sync v0.8.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
8 changes: 4 additions & 4 deletions cmd/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ toolchain go1.23.1
require (
github.com/brianvoe/gofakeit/v6 v6.28.0
github.com/dop251/goja v0.0.0-20240828124009-016eb7256539
github.com/dosco/graphjin/core/v3 v3.0.34
github.com/dosco/graphjin/serv/v3 v3.0.34
github.com/dosco/graphjin/core/v3 v
github.com/dosco/graphjin/serv/v3 v
github.com/gosimple/slug v1.14.0
github.com/jackc/pgx/v5 v5.6.0
github.com/jvatic/goja-babel v0.0.0-20240829121804-52a2d5a94eb5
Expand Down Expand Up @@ -45,8 +45,8 @@ require (
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
github.com/dimchansky/utfbom v1.1.1 // indirect
github.com/dlclark/regexp2 v1.11.4 // indirect
github.com/dosco/graphjin/auth/v3 v3.0.34 // indirect
github.com/dosco/graphjin/plugin/otel/v3 v3.0.34 // indirect
github.com/dosco/graphjin/auth/v3 v // indirect
github.com/dosco/graphjin/plugin/otel/v3 v // indirect
github.com/fatih/color v1.16.0 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
Expand Down
146 changes: 146 additions & 0 deletions cmd/go.mod-e
Original file line number Diff line number Diff line change
@@ -0,0 +1,146 @@
module github.com/dosco/graphjin/cmd/v3

go 1.22

toolchain go1.23.1

require (
github.com/brianvoe/gofakeit/v6 v6.28.0
github.com/dop251/goja v0.0.0-20240828124009-016eb7256539
github.com/dosco/graphjin/core/v3 v3.0.34
github.com/dosco/graphjin/serv/v3 v3.0.34
github.com/gosimple/slug v1.14.0
github.com/jackc/pgx/v5 v5.6.0
github.com/jvatic/goja-babel v0.0.0-20240829121804-52a2d5a94eb5
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.8.1
go.uber.org/zap v1.27.0
golang.org/x/text v0.18.0
)

require (
cloud.google.com/go/auth v0.4.1 // indirect
cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect
cloud.google.com/go/compute/metadata v0.3.0 // indirect
filippo.io/age v1.1.1 // indirect
filippo.io/edwards25519 v1.1.0 // indirect
github.com/Azure/azure-sdk-for-go v68.0.0+incompatible // indirect
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
github.com/Azure/go-autorest/autorest v0.11.29 // indirect
github.com/Azure/go-autorest/autorest/adal v0.9.23 // indirect
github.com/Azure/go-autorest/autorest/azure/auth v0.5.12 // indirect
github.com/Azure/go-autorest/autorest/azure/cli v0.4.6 // indirect
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect
github.com/Azure/go-autorest/logger v0.2.1 // indirect
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
github.com/ProtonMail/go-crypto v1.0.0 // indirect
github.com/adjust/gorails v0.0.0-20171013043634-2786ed0c03d3 // indirect
github.com/aws/aws-sdk-go v1.52.6 // indirect
github.com/blang/semver v3.5.1+incompatible // indirect
github.com/bradfitz/gomemcache v0.0.0-20230905024940-24af94b03874 // indirect
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
github.com/cloudflare/circl v1.3.8 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
github.com/dimchansky/utfbom v1.1.1 // indirect
github.com/dlclark/regexp2 v1.11.4 // indirect
github.com/dosco/graphjin/auth/v3 v3.0.34 // indirect
github.com/dosco/graphjin/plugin/otel/v3 v3.0.34 // indirect
github.com/fatih/color v1.16.0 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/go-chi/chi/v5 v5.0.12 // indirect
github.com/go-http-utils/headers v0.0.0-20181008091004-fed159eddc2a // indirect
github.com/go-jose/go-jose/v4 v4.0.1 // indirect
github.com/go-logr/logr v1.4.2 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-pkgz/expirable-cache v1.0.0 // indirect
github.com/go-resty/resty/v2 v2.14.0 // indirect
github.com/go-sourcemap/sourcemap v2.1.4+incompatible // indirect
github.com/go-sql-driver/mysql v1.8.1 // indirect
github.com/goccy/go-json v0.10.3 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/gomodule/redigo v1.9.2 // indirect
github.com/google/pprof v0.0.0-20240827171923-fa2c70bbbfe5 // indirect
github.com/google/s2a-go v0.1.7 // indirect
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
github.com/googleapis/gax-go/v2 v2.12.4 // indirect
github.com/gorilla/websocket v1.5.3 // indirect
github.com/gosimple/unidecode v1.0.1 // indirect
github.com/goware/prefixer v0.0.0-20160118172347-395022866408 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/hashicorp/go-retryablehttp v0.7.6 // indirect
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.8 // indirect
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect
github.com/hashicorp/go-sockaddr v1.0.6 // indirect
github.com/hashicorp/golang-lru v1.0.2 // indirect
github.com/hashicorp/hcl v1.0.1-vault-5 // indirect
github.com/hashicorp/vault/api v1.13.0 // indirect
github.com/howeyc/gopass v0.0.0-20210920133722-c8aef6fb66ef // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 // indirect
github.com/jackc/puddle/v2 v2.2.1 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 // indirect
github.com/klauspost/compress v1.17.9 // indirect
github.com/lestrrat-go/backoff/v2 v2.0.8 // indirect
github.com/lestrrat-go/blackmagic v1.0.2 // indirect
github.com/lestrrat-go/httpcc v1.0.1 // indirect
github.com/lestrrat-go/iter v1.0.2 // indirect
github.com/lestrrat-go/jwx v1.2.30 // indirect
github.com/lestrrat-go/option v1.0.1 // indirect
github.com/lib/pq v1.10.9 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/opencontainers/runc v1.1.12 // indirect
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
github.com/rs/cors v1.11.1 // indirect
github.com/ryanuber/go-glob v1.0.0 // indirect
github.com/sagikazarmark/locafero v0.4.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spf13/afero v1.11.0 // indirect
github.com/spf13/cast v1.6.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/viper v1.19.0 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
go.mozilla.org/gopgagent v0.0.0-20170926210634-4d7ea76ff71a // indirect
go.mozilla.org/sops/v3 v3.7.3 // indirect
go.opencensus.io v0.24.0 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.51.0 // indirect
go.opentelemetry.io/otel v1.29.0 // indirect
go.opentelemetry.io/otel/metric v1.29.0 // indirect
go.opentelemetry.io/otel/sdk v1.29.0 // indirect
go.opentelemetry.io/otel/trace v1.29.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/crypto v0.27.0 // indirect
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
golang.org/x/net v0.27.0 // indirect
golang.org/x/oauth2 v0.20.0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/sys v0.25.0 // indirect
golang.org/x/term v0.24.0 // indirect
golang.org/x/time v0.6.0 // indirect
google.golang.org/api v0.180.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240509183442-62759503f434 // indirect
google.golang.org/grpc v1.63.2 // indirect
google.golang.org/protobuf v1.34.1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/urfave/cli.v1 v1.20.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
2 changes: 1 addition & 1 deletion conf/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/dosco/graphjin/conf/v3
go 1.18

require (
github.com/dosco/graphjin/core/v3 v3.0.34
github.com/dosco/graphjin/core/v3 v
gopkg.in/yaml.v3 v3.0.1
)

Expand Down
13 changes: 13 additions & 0 deletions conf/go.mod-e
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
module github.com/dosco/graphjin/conf/v3

go 1.18

require (
github.com/dosco/graphjin/core/v3 v3.0.34
gopkg.in/yaml.v3 v3.0.1
)

require (
github.com/hashicorp/golang-lru v0.5.4 // indirect
golang.org/x/sync v0.8.0 // indirect
)
8 changes: 8 additions & 0 deletions core/go.mod-e
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module github.com/dosco/graphjin/core/v3

go 1.18

require (
github.com/hashicorp/golang-lru v0.5.4
golang.org/x/sync v0.8.0
)
2 changes: 1 addition & 1 deletion plugin/otel/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.21
toolchain go1.23.1

require (
github.com/dosco/graphjin/core/v3 v3.0.34
github.com/dosco/graphjin/core/v3 v
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.42.0
go.opentelemetry.io/otel v1.29.0
go.opentelemetry.io/otel/trace v1.29.0
Expand Down
21 changes: 21 additions & 0 deletions plugin/otel/go.mod-e
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
module github.com/dosco/graphjin/plugin/otel/v3

go 1.21

toolchain go1.23.1

require (
github.com/dosco/graphjin/core/v3 v3.0.34
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.42.0
go.opentelemetry.io/otel v1.29.0
go.opentelemetry.io/otel/trace v1.29.0
)

require (
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/go-logr/logr v1.4.2 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/hashicorp/golang-lru v0.5.4 // indirect
go.opentelemetry.io/otel/metric v1.29.0 // indirect
golang.org/x/sync v0.8.0 // indirect
)
6 changes: 3 additions & 3 deletions serv/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ go 1.21
toolchain go1.23.1

require (
github.com/dosco/graphjin/auth/v3 v3.0.34
github.com/dosco/graphjin/core/v3 v3.0.34
github.com/dosco/graphjin/plugin/otel/v3 v3.0.34
github.com/dosco/graphjin/auth/v3 v
github.com/dosco/graphjin/core/v3 v
github.com/dosco/graphjin/plugin/otel/v3 v
github.com/fsnotify/fsnotify v1.7.0
github.com/go-http-utils/headers v0.0.0-20181008091004-fed159eddc2a
github.com/go-pkgz/expirable-cache v1.0.0
Expand Down
Loading

0 comments on commit d3f4a1d

Please sign in to comment.