Skip to content

Commit 6c69c4a

Browse files
committed
chore: bump version to v3.10.4 [skip-release]
1 parent 3c9811f commit 6c69c4a

File tree

9 files changed

+17
-17
lines changed

9 files changed

+17
-17
lines changed

auth/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/dosco/graphjin/auth/v3
33
go 1.24.0
44

55
require (
6-
github.com/dosco/graphjin/core/v3 v3.10.3
6+
github.com/dosco/graphjin/core/v3 v3.10.4
77
github.com/golang-jwt/jwt v3.2.2+incompatible
88
github.com/gorilla/websocket v1.5.3
99
github.com/lestrrat-go/jwx v1.2.31

cmd/go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ go 1.24.0
55
require (
66
github.com/brianvoe/gofakeit/v6 v6.28.0
77
github.com/dop251/goja v0.0.0-20250630131328-58d95d85e994
8-
github.com/dosco/graphjin/core/v3 v3.10.3
9-
github.com/dosco/graphjin/serv/v3 v3.10.3
8+
github.com/dosco/graphjin/core/v3 v3.10.4
9+
github.com/dosco/graphjin/serv/v3 v3.10.4
1010
github.com/gosimple/slug v1.15.0
1111
github.com/jackc/pgx/v5 v5.7.6
1212
github.com/jvatic/goja-babel v0.0.0-20250906111304-06c40d6b931b
@@ -50,8 +50,8 @@ require (
5050
github.com/docker/docker v27.1.1+incompatible // indirect
5151
github.com/docker/go-connections v0.5.0 // indirect
5252
github.com/docker/go-units v0.5.0 // indirect
53-
github.com/dosco/graphjin/auth/v3 v3.10.3 // indirect
54-
github.com/dosco/graphjin/plugin/otel/v3 v3.10.3 // indirect
53+
github.com/dosco/graphjin/auth/v3 v3.10.4 // indirect
54+
github.com/dosco/graphjin/plugin/otel/v3 v3.10.4 // indirect
5555
github.com/felixge/httpsnoop v1.0.4 // indirect
5656
github.com/fsnotify/fsnotify v1.9.0 // indirect
5757
github.com/go-chi/chi/v5 v5.2.3 // indirect

conf/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/dosco/graphjin/conf/v3
33
go 1.24.0
44

55
require (
6-
github.com/dosco/graphjin/core/v3 v3.10.3
6+
github.com/dosco/graphjin/core/v3 v3.10.4
77
gopkg.in/yaml.v3 v3.0.1
88
)
99

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphjin",
3-
"version": "3.10.3",
3+
"version": "3.10.4",
44
"description": "GraphJin CLI - Build APIs in 5 minutes with GraphQL",
55
"bin": {
66
"graphjin": "bin/graphjin.js"

plugin/otel/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/dosco/graphjin/plugin/otel/v3
33
go 1.24.0
44

55
require (
6-
github.com/dosco/graphjin/core/v3 v3.10.3
6+
github.com/dosco/graphjin/core/v3 v3.10.4
77
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0
88
go.opentelemetry.io/otel v1.38.0
99
go.opentelemetry.io/otel/trace v1.38.0

serv/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ module github.com/dosco/graphjin/serv/v3
33
go 1.24.0
44

55
require (
6-
github.com/dosco/graphjin/auth/v3 v3.10.3
7-
github.com/dosco/graphjin/core/v3 v3.10.3
6+
github.com/dosco/graphjin/auth/v3 v3.10.4
7+
github.com/dosco/graphjin/core/v3 v3.10.4
88
github.com/dosco/graphjin/mongodriver v0.0.0
9-
github.com/dosco/graphjin/plugin/otel/v3 v3.10.3
9+
github.com/dosco/graphjin/plugin/otel/v3 v3.10.4
1010
github.com/fsnotify/fsnotify v1.9.0
1111
github.com/go-http-utils/headers v0.0.0-20181008091004-fed159eddc2a
1212
github.com/go-pkgz/expirable-cache v1.0.0

tests/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ module github.com/dosco/graphjin/tests/v3
33
go 1.24.0
44

55
require (
6-
github.com/dosco/graphjin/conf/v3 v3.10.3
7-
github.com/dosco/graphjin/core/v3 v3.10.3
6+
github.com/dosco/graphjin/conf/v3 v3.10.4
7+
github.com/dosco/graphjin/core/v3 v3.10.4
88
github.com/dosco/graphjin/mongodriver v0.0.0
99
github.com/go-sql-driver/mysql v1.9.3
1010
github.com/lib/pq v1.10.9

wasm/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ module github.com/dosco/graphjin/wasm/v3
33
go 1.24.0
44

55
require (
6-
github.com/dosco/graphjin/conf/v3 v3.10.3
7-
github.com/dosco/graphjin/core/v3 v3.10.3
6+
github.com/dosco/graphjin/conf/v3 v3.10.4
7+
github.com/dosco/graphjin/core/v3 v3.10.4
88
)
99

1010
replace (

0 commit comments

Comments
 (0)