File tree Expand file tree Collapse file tree 22 files changed +58
-58
lines changed
github.com/darkweak/souin/pkg/rfc Expand file tree Collapse file tree 22 files changed +58
-58
lines changed Original file line number Diff line number Diff line change @@ -952,7 +952,7 @@ experimental:
952952 plugins:
953953 souin:
954954 moduleName: github.com/darkweak/souin
955- version: v1.7.4
955+ version: v1.7.5
956956```
957957After that you can declare either the whole configuration at once in the middleware block or by service. See the examples below.
958958``` yaml
Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ toolchain go1.22.4
66
77require (
88 github.com/beego/beego/v2 v2.1.1
9- github.com/darkweak/souin v1.7.4
10- github.com/darkweak/souin/plugins/souin v1.7.4
11- github.com/darkweak/souin/plugins/souin/storages v1.7.4
9+ github.com/darkweak/souin v1.7.5
10+ github.com/darkweak/souin/plugins/souin v1.7.5
11+ github.com/darkweak/souin/plugins/souin/storages v1.7.5
1212)
1313
1414require (
@@ -184,7 +184,7 @@ require (
184184)
185185
186186replace (
187- github.com/darkweak/souin v1.7.4 => ../..
187+ github.com/darkweak/souin v1.7.5 => ../..
188188 github.com/darkweak/souin/plugins/souin => ../souin
189189 github.com/darkweak/souin/plugins/souin/storages => ../souin/storages
190190)
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ go 1.22.1
44
55require (
66 github.com/caddyserver/caddy/v2 v2.8.4
7- github.com/darkweak/souin v1.7.4
7+ github.com/darkweak/souin v1.7.5
88 github.com/darkweak/storages/core v0.0.11
99)
1010
@@ -153,4 +153,4 @@ require (
153153 howett.net/plist v1.0.0 // indirect
154154)
155155
156- replace github.com/darkweak/souin v1.7.4 => ../..
156+ replace github.com/darkweak/souin v1.7.5 => ../..
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ module github.com/darkweak/souin/plugins/chi
33go 1.22.1
44
55require (
6- github.com/darkweak/souin v1.7.4
7- github.com/darkweak/souin/plugins/souin/storages v1.7.4
6+ github.com/darkweak/souin v1.7.5
7+ github.com/darkweak/souin/plugins/souin/storages v1.7.5
88 github.com/go-chi/chi/v5 v5.0.12
99)
1010
@@ -179,6 +179,6 @@ require (
179179)
180180
181181replace (
182- github.com/darkweak/souin v1.7.4 => ../..
182+ github.com/darkweak/souin v1.7.5 => ../..
183183 github.com/darkweak/souin/plugins/souin/storages => ../souin/storages
184184)
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ module github.com/darkweak/souin/plugins/dotweb
33go 1.22.1
44
55require (
6- github.com/darkweak/souin v1.7.4
7- github.com/darkweak/souin/plugins/souin/storages v1.7.4
6+ github.com/darkweak/souin v1.7.5
7+ github.com/darkweak/souin/plugins/souin/storages v1.7.5
88 github.com/devfeel/dotweb v1.7.21
99)
1010
@@ -180,6 +180,6 @@ require (
180180)
181181
182182replace (
183- github.com/darkweak/souin v1.7.4 => ../..
183+ github.com/darkweak/souin v1.7.5 => ../..
184184 github.com/darkweak/souin/plugins/souin/storages => ../souin/storages
185185)
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ module github.com/darkweak/souin/plugins/echo
33go 1.22.1
44
55require (
6- github.com/darkweak/souin v1.7.4
7- github.com/darkweak/souin/plugins/souin/storages v1.7.4
6+ github.com/darkweak/souin v1.7.5
7+ github.com/darkweak/souin/plugins/souin/storages v1.7.5
88 github.com/darkweak/storages/core v0.0.11
99 github.com/labstack/echo/v4 v4.11.1
1010)
@@ -182,6 +182,6 @@ require (
182182)
183183
184184replace (
185- github.com/darkweak/souin v1.7.4 => ../..
185+ github.com/darkweak/souin v1.7.5 => ../..
186186 github.com/darkweak/souin/plugins/souin/storages => ../souin/storages
187187)
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ module github.com/darkweak/souin/plugins/fiber
33go 1.22.1
44
55require (
6- github.com/darkweak/souin v1.7.4
7- github.com/darkweak/souin/plugins/souin/storages v1.7.4
6+ github.com/darkweak/souin v1.7.5
7+ github.com/darkweak/souin/plugins/souin/storages v1.7.5
88 github.com/gofiber/fiber/v2 v2.52.1
99 github.com/valyala/fasthttp v1.51.0
1010)
@@ -185,6 +185,6 @@ require (
185185)
186186
187187replace (
188- github.com/darkweak/souin v1.7.4 => ../..
188+ github.com/darkweak/souin v1.7.5 => ../..
189189 github.com/darkweak/souin/plugins/souin/storages => ../souin/storages
190190)
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ module github.com/darkweak/souin/plugins/gin
33go 1.22.1
44
55require (
6- github.com/darkweak/souin v1.7.4
7- github.com/darkweak/souin/plugins/souin/storages v1.7.4
6+ github.com/darkweak/souin v1.7.5
7+ github.com/darkweak/souin/plugins/souin/storages v1.7.5
88 github.com/gin-gonic/gin v1.9.1
99)
1010
@@ -196,6 +196,6 @@ require (
196196)
197197
198198replace (
199- github.com/darkweak/souin v1.7.4 => ../..
199+ github.com/darkweak/souin v1.7.5 => ../..
200200 github.com/darkweak/souin/plugins/souin/storages => ../souin/storages
201201)
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ module github.com/darkweak/souin/plugins/go-zero
33go 1.22.1
44
55require (
6- github.com/darkweak/souin v1.7.4
7- github.com/darkweak/souin/plugins/souin/storages v1.7.4
6+ github.com/darkweak/souin v1.7.5
7+ github.com/darkweak/souin/plugins/souin/storages v1.7.5
88 github.com/zeromicro/go-zero v1.6.2
99)
1010
@@ -199,6 +199,6 @@ require (
199199)
200200
201201replace (
202- github.com/darkweak/souin v1.7.4 => ../..
202+ github.com/darkweak/souin v1.7.5 => ../..
203203 github.com/darkweak/souin/plugins/souin/storages => ../souin/storages
204204)
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ module github.com/darkweak/souin/plugins/goa
33go 1.22.1
44
55require (
6- github.com/darkweak/souin v1.7.4
7- github.com/darkweak/souin/plugins/souin/storages v1.7.4
6+ github.com/darkweak/souin v1.7.5
7+ github.com/darkweak/souin/plugins/souin/storages v1.7.5
88 github.com/darkweak/storages/core v0.0.11
99 goa.design/goa/v3 v3.12.3
1010)
@@ -181,6 +181,6 @@ require (
181181)
182182
183183replace (
184- github.com/darkweak/souin v1.7.4 => ../..
184+ github.com/darkweak/souin v1.7.5 => ../..
185185 github.com/darkweak/souin/plugins/souin/storages => ../souin/storages
186186)
You can’t perform that action at this time.
0 commit comments