Skip to content

Commit 06a6e63

Browse files
committed
update examples deps before release
1 parent d32eb68 commit 06a6e63

File tree

63 files changed

+292
-311
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+292
-311
lines changed

_examples/auth/basicauth/database/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.21
44

55
require (
66
github.com/go-sql-driver/mysql v1.7.1
7-
github.com/kataras/iris/v12 v12.2.9-0.20240107204142-746b1fc0da75
7+
github.com/kataras/iris/v12 v12.2.9-0.20240109231132-d32eb68ed48d
88
)
99

1010
require (
@@ -41,9 +41,9 @@ require (
4141
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
4242
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
4343
github.com/yosssi/ace v0.0.5 // indirect
44-
golang.org/x/crypto v0.17.0 // indirect
44+
golang.org/x/crypto v0.18.0 // indirect
4545
golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc // indirect
46-
golang.org/x/net v0.19.0 // indirect
46+
golang.org/x/net v0.20.0 // indirect
4747
golang.org/x/sys v0.16.0 // indirect
4848
golang.org/x/text v0.14.0 // indirect
4949
golang.org/x/time v0.5.0 // indirect

_examples/auth/basicauth/database/go.sum

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

_examples/auth/jwt/tutorial/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ go 1.21
44

55
require (
66
github.com/google/uuid v1.5.0
7-
github.com/kataras/iris/v12 v12.2.9-0.20240107204142-746b1fc0da75
8-
golang.org/x/crypto v0.17.0
7+
github.com/kataras/iris/v12 v12.2.9-0.20240109231132-d32eb68ed48d
8+
golang.org/x/crypto v0.18.0
99
)
1010

1111
require (
@@ -43,7 +43,7 @@ require (
4343
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
4444
github.com/yosssi/ace v0.0.5 // indirect
4545
golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc // indirect
46-
golang.org/x/net v0.19.0 // indirect
46+
golang.org/x/net v0.20.0 // indirect
4747
golang.org/x/sys v0.16.0 // indirect
4848
golang.org/x/text v0.14.0 // indirect
4949
golang.org/x/time v0.5.0 // indirect

_examples/auth/jwt/tutorial/go.sum

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

_examples/bootstrapper/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.21
44

55
require (
66
github.com/gorilla/securecookie v1.1.2
7-
github.com/kataras/iris/v12 v12.2.9-0.20240107204142-746b1fc0da75
7+
github.com/kataras/iris/v12 v12.2.9-0.20240109231132-d32eb68ed48d
88
)
99

1010
require (
@@ -72,9 +72,9 @@ require (
7272
github.com/yosssi/ace v0.0.5 // indirect
7373
github.com/yudai/gojsondiff v1.0.0 // indirect
7474
github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 // indirect
75-
golang.org/x/crypto v0.17.0 // indirect
75+
golang.org/x/crypto v0.18.0 // indirect
7676
golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc // indirect
77-
golang.org/x/net v0.19.0 // indirect
77+
golang.org/x/net v0.20.0 // indirect
7878
golang.org/x/sys v0.16.0 // indirect
7979
golang.org/x/text v0.14.0 // indirect
8080
golang.org/x/time v0.5.0 // indirect

_examples/bootstrapper/go.sum

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

_examples/configuration/multi-environments/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/kataras/my-iris-app
33
go 1.21
44

55
require (
6-
github.com/kataras/iris/v12 v12.2.9-0.20240107204142-746b1fc0da75
6+
github.com/kataras/iris/v12 v12.2.9-0.20240109231132-d32eb68ed48d
77
github.com/spf13/cobra v1.8.0
88
gopkg.in/yaml.v3 v3.0.1
99
)
@@ -44,9 +44,9 @@ require (
4444
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
4545
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
4646
github.com/yosssi/ace v0.0.5 // indirect
47-
golang.org/x/crypto v0.17.0 // indirect
47+
golang.org/x/crypto v0.18.0 // indirect
4848
golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc // indirect
49-
golang.org/x/net v0.19.0 // indirect
49+
golang.org/x/net v0.20.0 // indirect
5050
golang.org/x/sys v0.16.0 // indirect
5151
golang.org/x/text v0.14.0 // indirect
5252
golang.org/x/time v0.5.0 // indirect

_examples/configuration/multi-environments/go.sum

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

_examples/configuration/viper/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module app
33
go 1.21
44

55
require (
6-
github.com/kataras/iris/v12 v12.2.9-0.20240107204142-746b1fc0da75
6+
github.com/kataras/iris/v12 v12.2.9-0.20240109231132-d32eb68ed48d
77
github.com/spf13/viper v1.18.2
88
)
99

@@ -55,9 +55,9 @@ require (
5555
github.com/yosssi/ace v0.0.5 // indirect
5656
go.uber.org/atomic v1.9.0 // indirect
5757
go.uber.org/multierr v1.9.0 // indirect
58-
golang.org/x/crypto v0.17.0 // indirect
58+
golang.org/x/crypto v0.18.0 // indirect
5959
golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc // indirect
60-
golang.org/x/net v0.19.0 // indirect
60+
golang.org/x/net v0.20.0 // indirect
6161
golang.org/x/sys v0.16.0 // indirect
6262
golang.org/x/text v0.14.0 // indirect
6363
golang.org/x/time v0.5.0 // indirect

_examples/configuration/viper/go.sum

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

0 commit comments

Comments
 (0)