File tree Expand file tree Collapse file tree 36 files changed +98
-85
lines changed
Expand file tree Collapse file tree 36 files changed +98
-85
lines changed Original file line number Diff line number Diff line change @@ -106,6 +106,8 @@ bump-version:
106106 sed -i ' ' ' s/version: $(from)/version: $(to)/' README.md
107107 for plugin in $( PLUGINS_LIST) ; do \
108108 sed -i ' ' ' s/github.com\/darkweak\/souin $(from)/github.com\/darkweak\/souin $(to)/' plugins/$$ plugin/go.mod ; \
109+ sed -i ' ' ' s/github.com\/darkweak\/souin\/plugins\/souin $(from)/github.com\/darkweak\/souin\/plugins\/souin $(to)/' plugins/$$ plugin/go.mod ; \
110+ sed -i ' ' ' s/github.com\/darkweak\/souin\/plugins\/souin\/storages $(from)/github.com\/darkweak\/souin\/plugins\/souin\/storages $(to)/' plugins/$$ plugin/go.mod ; \
109111 done
110112 sed -i ' ' ' s/github.com\/darkweak\/souin $(from)/github.com\/darkweak\/souin $(to)/' plugins/souin/storages/go.mod
111113
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.3
955+ version: v1.7.4
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.3
10- github.com/darkweak/souin/plugins/souin v1.7.2
11- github.com/darkweak/souin/plugins/souin/storages v1.7.2
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
1212)
1313
1414require (
@@ -184,6 +184,7 @@ require (
184184)
185185
186186replace (
187- github.com/darkweak/souin v1.7.3 => ../..
187+ github.com/darkweak/souin v1.7.4 => ../..
188188 github.com/darkweak/souin/plugins/souin => ../souin
189+ github.com/darkweak/souin/plugins/souin/storages => ../souin/storages
189190)
Original file line number Diff line number Diff line change @@ -141,8 +141,6 @@ github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46t
141141github.com/creack/pty v1.1.7 /go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY =
142142github.com/darkweak/go-esi v0.0.5 h1:b9LHI8Tz46R+i6p8avKPHAIBRQUCZDebNmKm5w/Zrns =
143143github.com/darkweak/go-esi v0.0.5 /go.mod h1:koCJqwum1u6mslyZuq/Phm6hfG1K3ZK5Y7jrUBTH654 =
144- github.com/darkweak/souin/plugins/souin/storages v1.7.2 h1:vA1oFap6sbWO+Ebbq6NGtjmCFuCRJOZeG+XXPhhSIWA =
145- github.com/darkweak/souin/plugins/souin/storages v1.7.2 /go.mod h1:VfkwGN+ubAuluSwbjGHqImbUjxdEA0N9xGJUTCcFBV0 =
146144github.com/darkweak/storages/badger v0.0.8 h1:rKVXrasVA74xgiqGRgW0kH11NUIlWwn9HiFyHUok85k =
147145github.com/darkweak/storages/badger v0.0.8 /go.mod h1:ZmrNmKkFzyu/B3+1nsvVeTvyg2I2mOV5yTpT46mZ06o =
148146github.com/darkweak/storages/core v0.0.11 h1:IwvpAtkhOmxC5pIffJ8opW6erpTnIi5zqPveiAQs8ew =
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.3
7+ github.com/darkweak/souin v1.7.4
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.3 => ../..
156+ replace github.com/darkweak/souin v1.7.4 => ../..
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.3
7- github.com/darkweak/souin/plugins/souin/storages v1.7.2
6+ github.com/darkweak/souin v1.7.4
7+ github.com/darkweak/souin/plugins/souin/storages v1.7.4
88 github.com/go-chi/chi/v5 v5.0.12
99)
1010
@@ -178,4 +178,7 @@ require (
178178 howett.net/plist v1.0.0 // indirect
179179)
180180
181- replace github.com/darkweak/souin v1.7.3 => ../..
181+ replace (
182+ github.com/darkweak/souin v1.7.4 => ../..
183+ github.com/darkweak/souin/plugins/souin/storages => ../souin/storages
184+ )
Original file line number Diff line number Diff line change @@ -139,8 +139,6 @@ github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46t
139139github.com/creack/pty v1.1.7 /go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY =
140140github.com/darkweak/go-esi v0.0.6 h1:eVHCJfqrZwOHPfRK7JTlSYG9F8lfpX/d4lz/41RQkd8 =
141141github.com/darkweak/go-esi v0.0.6 /go.mod h1:IJSayeQZDUh5R5ayyDC3wUEBykti12aUa0eUxZZeodk =
142- github.com/darkweak/souin/plugins/souin/storages v1.7.2 h1:vA1oFap6sbWO+Ebbq6NGtjmCFuCRJOZeG+XXPhhSIWA =
143- github.com/darkweak/souin/plugins/souin/storages v1.7.2 /go.mod h1:VfkwGN+ubAuluSwbjGHqImbUjxdEA0N9xGJUTCcFBV0 =
144142github.com/darkweak/storages/badger v0.0.8 h1:rKVXrasVA74xgiqGRgW0kH11NUIlWwn9HiFyHUok85k =
145143github.com/darkweak/storages/badger v0.0.8 /go.mod h1:ZmrNmKkFzyu/B3+1nsvVeTvyg2I2mOV5yTpT46mZ06o =
146144github.com/darkweak/storages/core v0.0.11 h1:IwvpAtkhOmxC5pIffJ8opW6erpTnIi5zqPveiAQs8ew =
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.3
7- github.com/darkweak/souin/plugins/souin/storages v1.7.2
6+ github.com/darkweak/souin v1.7.4
7+ github.com/darkweak/souin/plugins/souin/storages v1.7.4
88 github.com/devfeel/dotweb v1.7.21
99)
1010
@@ -179,4 +179,7 @@ require (
179179 howett.net/plist v1.0.0 // indirect
180180)
181181
182- replace github.com/darkweak/souin v1.7.3 => ../..
182+ replace (
183+ github.com/darkweak/souin v1.7.4 => ../..
184+ github.com/darkweak/souin/plugins/souin/storages => ../souin/storages
185+ )
Original file line number Diff line number Diff line change @@ -139,8 +139,6 @@ github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46t
139139github.com/creack/pty v1.1.7 /go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY =
140140github.com/darkweak/go-esi v0.0.6 h1:eVHCJfqrZwOHPfRK7JTlSYG9F8lfpX/d4lz/41RQkd8 =
141141github.com/darkweak/go-esi v0.0.6 /go.mod h1:IJSayeQZDUh5R5ayyDC3wUEBykti12aUa0eUxZZeodk =
142- github.com/darkweak/souin/plugins/souin/storages v1.7.2 h1:vA1oFap6sbWO+Ebbq6NGtjmCFuCRJOZeG+XXPhhSIWA =
143- github.com/darkweak/souin/plugins/souin/storages v1.7.2 /go.mod h1:VfkwGN+ubAuluSwbjGHqImbUjxdEA0N9xGJUTCcFBV0 =
144142github.com/darkweak/storages/badger v0.0.8 h1:rKVXrasVA74xgiqGRgW0kH11NUIlWwn9HiFyHUok85k =
145143github.com/darkweak/storages/badger v0.0.8 /go.mod h1:ZmrNmKkFzyu/B3+1nsvVeTvyg2I2mOV5yTpT46mZ06o =
146144github.com/darkweak/storages/core v0.0.11 h1:IwvpAtkhOmxC5pIffJ8opW6erpTnIi5zqPveiAQs8ew =
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.3
7- github.com/darkweak/souin/plugins/souin/storages v1.7.2
6+ github.com/darkweak/souin v1.7.4
7+ github.com/darkweak/souin/plugins/souin/storages v1.7.4
88 github.com/darkweak/storages/core v0.0.11
99 github.com/labstack/echo/v4 v4.11.1
1010)
@@ -181,4 +181,7 @@ require (
181181 howett.net/plist v1.0.0 // indirect
182182)
183183
184- replace github.com/darkweak/souin v1.7.3 => ../..
184+ replace (
185+ github.com/darkweak/souin v1.7.4 => ../..
186+ github.com/darkweak/souin/plugins/souin/storages => ../souin/storages
187+ )
You can’t perform that action at this time.
0 commit comments