Skip to content

Commit 298c898

Browse files
authored
Merge pull request #133 from dongxuny/main
Bump up rk-xxx version to latest
2 parents 7e4d8f8 + 337b33f commit 298c898

File tree

37 files changed

+151
-7175
lines changed

37 files changed

+151
-7175
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup Go
1515
uses: actions/setup-go@v2
1616
with:
17-
go-version: 1.17
17+
go-version: 1.18
1818
- name: Setup golangci-lint
1919
uses: golangci/golangci-lint-action@v2.5.2
2020
- name: Run linter

example/cache/redis/go.mod

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module github.com/rookie-ninja/rk-demo
22

3-
go 1.17
3+
go 1.18
44

55
require (
66
github.com/gin-gonic/gin v1.8.1
77
github.com/rookie-ninja/rk-boot/v2 v2.2.6
8-
github.com/rookie-ninja/rk-cache/redis v1.2.9
9-
github.com/rookie-ninja/rk-gin/v2 v2.2.14
8+
github.com/rookie-ninja/rk-cache/redis v1.2.11
9+
github.com/rookie-ninja/rk-gin/v2 v2.2.15
1010
)
1111

1212
require (
@@ -48,8 +48,8 @@ require (
4848
github.com/prometheus/client_model v0.2.0 // indirect
4949
github.com/prometheus/common v0.37.0 // indirect
5050
github.com/prometheus/procfs v0.8.0 // indirect
51-
github.com/rookie-ninja/rk-db/redis v1.2.9 // indirect
52-
github.com/rookie-ninja/rk-entry/v2 v2.2.11 // indirect
51+
github.com/rookie-ninja/rk-db/redis v1.2.11 // indirect
52+
github.com/rookie-ninja/rk-entry/v2 v2.2.13 // indirect
5353
github.com/rookie-ninja/rk-logger v1.2.12 // indirect
5454
github.com/rookie-ninja/rk-query v1.2.14 // indirect
5555
github.com/rs/xid v1.3.0 // indirect

example/cache/redis/go.sum

Lines changed: 8 additions & 365 deletions
Large diffs are not rendered by default.

example/database/clickhouse/go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module github.com/rookie-ninja/rk-demo
22

3-
go 1.17
3+
go 1.18
44

55
require (
66
github.com/gin-gonic/gin v1.8.1
77
github.com/rookie-ninja/rk-boot/v2 v2.2.6
8-
github.com/rookie-ninja/rk-db/clickhouse v1.2.12
9-
github.com/rookie-ninja/rk-gin/v2 v2.2.13
8+
github.com/rookie-ninja/rk-db/clickhouse v1.2.13
9+
github.com/rookie-ninja/rk-gin/v2 v2.2.15
1010
github.com/rs/xid v1.3.0
1111
gorm.io/gorm v1.24.0
1212
)
@@ -59,7 +59,7 @@ require (
5959
github.com/prometheus/client_model v0.2.0 // indirect
6060
github.com/prometheus/common v0.37.0 // indirect
6161
github.com/prometheus/procfs v0.8.0 // indirect
62-
github.com/rookie-ninja/rk-entry/v2 v2.2.11 // indirect
62+
github.com/rookie-ninja/rk-entry/v2 v2.2.13 // indirect
6363
github.com/rookie-ninja/rk-logger v1.2.12 // indirect
6464
github.com/rookie-ninja/rk-query v1.2.14 // indirect
6565
github.com/segmentio/asm v1.2.0 // indirect

example/database/clickhouse/go.sum

Lines changed: 6 additions & 383 deletions
Large diffs are not rendered by default.

example/database/mongodb-todolist/go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module github.com/rookie-ninja/rk-demo
22

3-
go 1.17
3+
go 1.18
44

55
require (
66
github.com/gin-gonic/gin v1.8.1
77
github.com/rookie-ninja/rk-boot/v2 v2.2.3
8-
github.com/rookie-ninja/rk-db/mongodb v1.2.10
9-
github.com/rookie-ninja/rk-gin/v2 v2.2.14
8+
github.com/rookie-ninja/rk-db/mongodb v1.2.11
9+
github.com/rookie-ninja/rk-gin/v2 v2.2.15
1010
go.mongodb.org/mongo-driver v1.10.3
1111
)
1212

@@ -50,7 +50,7 @@ require (
5050
github.com/prometheus/client_model v0.2.0 // indirect
5151
github.com/prometheus/common v0.37.0 // indirect
5252
github.com/prometheus/procfs v0.8.0 // indirect
53-
github.com/rookie-ninja/rk-entry/v2 v2.2.11 // indirect
53+
github.com/rookie-ninja/rk-entry/v2 v2.2.13 // indirect
5454
github.com/rookie-ninja/rk-logger v1.2.12 // indirect
5555
github.com/rookie-ninja/rk-query v1.2.14 // indirect
5656
github.com/rs/xid v1.4.0 // indirect

example/database/mongodb-todolist/go.sum

Lines changed: 6 additions & 392 deletions
Large diffs are not rendered by default.

example/database/mongodb/go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module github.com/rookie-ninja/rk-demo
22

3-
go 1.17
3+
go 1.18
44

55
require (
66
github.com/gin-gonic/gin v1.8.1
77
github.com/rookie-ninja/rk-boot/v2 v2.2.6
8-
github.com/rookie-ninja/rk-db/mongodb v1.2.10
9-
github.com/rookie-ninja/rk-gin/v2 v2.2.14
8+
github.com/rookie-ninja/rk-db/mongodb v1.2.11
9+
github.com/rookie-ninja/rk-gin/v2 v2.2.15
1010
github.com/rs/xid v1.3.0
1111
go.mongodb.org/mongo-driver v1.10.3
1212
)
@@ -49,7 +49,7 @@ require (
4949
github.com/prometheus/client_model v0.2.0 // indirect
5050
github.com/prometheus/common v0.37.0 // indirect
5151
github.com/prometheus/procfs v0.8.0 // indirect
52-
github.com/rookie-ninja/rk-entry/v2 v2.2.11 // indirect
52+
github.com/rookie-ninja/rk-entry/v2 v2.2.13 // indirect
5353
github.com/rookie-ninja/rk-logger v1.2.12 // indirect
5454
github.com/rookie-ninja/rk-query v1.2.14 // indirect
5555
github.com/spf13/afero v1.8.2 // indirect

example/database/mongodb/go.sum

Lines changed: 6 additions & 387 deletions
Large diffs are not rendered by default.

example/database/mysql/go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module github.com/rookie-ninja/rk-demo
22

3-
go 1.17
3+
go 1.18
44

55
require (
66
github.com/gin-gonic/gin v1.8.1
77
github.com/rookie-ninja/rk-boot/v2 v2.2.6
8-
github.com/rookie-ninja/rk-db/mysql v1.2.12
9-
github.com/rookie-ninja/rk-gin/v2 v2.2.14
8+
github.com/rookie-ninja/rk-db/mysql v1.2.13
9+
github.com/rookie-ninja/rk-gin/v2 v2.2.15
1010
gorm.io/gorm v1.24.0
1111
)
1212

@@ -47,7 +47,7 @@ require (
4747
github.com/prometheus/client_model v0.2.0 // indirect
4848
github.com/prometheus/common v0.37.0 // indirect
4949
github.com/prometheus/procfs v0.8.0 // indirect
50-
github.com/rookie-ninja/rk-entry/v2 v2.2.11 // indirect
50+
github.com/rookie-ninja/rk-entry/v2 v2.2.13 // indirect
5151
github.com/rookie-ninja/rk-logger v1.2.12 // indirect
5252
github.com/rookie-ninja/rk-query v1.2.14 // indirect
5353
github.com/rs/xid v1.3.0 // indirect

0 commit comments

Comments
 (0)