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:
106
106
sed -i ' ' ' s/version: $(from)/version: $(to)/' README.md
107
107
for plugin in $( PLUGINS_LIST) ; do \
108
108
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 ; \
109
111
done
110
112
sed -i ' ' ' s/github.com\/darkweak\/souin $(from)/github.com\/darkweak\/souin $(to)/' plugins/souin/storages/go.mod
111
113
Original file line number Diff line number Diff line change @@ -952,7 +952,7 @@ experimental:
952
952
plugins:
953
953
souin:
954
954
moduleName: github.com/darkweak/souin
955
- version: v1.7.3
955
+ version: v1.7.4
956
956
```
957
957
After that you can declare either the whole configuration at once in the middleware block or by service. See the examples below.
958
958
``` yaml
Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ toolchain go1.22.4
6
6
7
7
require (
8
8
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
12
12
)
13
13
14
14
require (
@@ -184,6 +184,7 @@ require (
184
184
)
185
185
186
186
replace (
187
- github.com/darkweak/souin v1.7.3 => ../..
187
+ github.com/darkweak/souin v1.7.4 => ../..
188
188
github.com/darkweak/souin/plugins/souin => ../souin
189
+ github.com/darkweak/souin/plugins/souin/storages => ../souin/storages
189
190
)
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
141
141
github.com/creack/pty v1.1.7 /go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY =
142
142
github.com/darkweak/go-esi v0.0.5 h1:b9LHI8Tz46R+i6p8avKPHAIBRQUCZDebNmKm5w/Zrns =
143
143
github.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 =
146
144
github.com/darkweak/storages/badger v0.0.8 h1:rKVXrasVA74xgiqGRgW0kH11NUIlWwn9HiFyHUok85k =
147
145
github.com/darkweak/storages/badger v0.0.8 /go.mod h1:ZmrNmKkFzyu/B3+1nsvVeTvyg2I2mOV5yTpT46mZ06o =
148
146
github.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
4
4
5
5
require (
6
6
github.com/caddyserver/caddy/v2 v2.8.4
7
- github.com/darkweak/souin v1.7.3
7
+ github.com/darkweak/souin v1.7.4
8
8
github.com/darkweak/storages/core v0.0.11
9
9
)
10
10
@@ -153,4 +153,4 @@ require (
153
153
howett.net/plist v1.0.0 // indirect
154
154
)
155
155
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
3
3
go 1.22.1
4
4
5
5
require (
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
8
8
github.com/go-chi/chi/v5 v5.0.12
9
9
)
10
10
@@ -178,4 +178,7 @@ require (
178
178
howett.net/plist v1.0.0 // indirect
179
179
)
180
180
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
139
139
github.com/creack/pty v1.1.7 /go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY =
140
140
github.com/darkweak/go-esi v0.0.6 h1:eVHCJfqrZwOHPfRK7JTlSYG9F8lfpX/d4lz/41RQkd8 =
141
141
github.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 =
144
142
github.com/darkweak/storages/badger v0.0.8 h1:rKVXrasVA74xgiqGRgW0kH11NUIlWwn9HiFyHUok85k =
145
143
github.com/darkweak/storages/badger v0.0.8 /go.mod h1:ZmrNmKkFzyu/B3+1nsvVeTvyg2I2mOV5yTpT46mZ06o =
146
144
github.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
3
3
go 1.22.1
4
4
5
5
require (
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
8
8
github.com/devfeel/dotweb v1.7.21
9
9
)
10
10
@@ -179,4 +179,7 @@ require (
179
179
howett.net/plist v1.0.0 // indirect
180
180
)
181
181
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
139
139
github.com/creack/pty v1.1.7 /go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY =
140
140
github.com/darkweak/go-esi v0.0.6 h1:eVHCJfqrZwOHPfRK7JTlSYG9F8lfpX/d4lz/41RQkd8 =
141
141
github.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 =
144
142
github.com/darkweak/storages/badger v0.0.8 h1:rKVXrasVA74xgiqGRgW0kH11NUIlWwn9HiFyHUok85k =
145
143
github.com/darkweak/storages/badger v0.0.8 /go.mod h1:ZmrNmKkFzyu/B3+1nsvVeTvyg2I2mOV5yTpT46mZ06o =
146
144
github.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
3
3
go 1.22.1
4
4
5
5
require (
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
8
8
github.com/darkweak/storages/core v0.0.11
9
9
github.com/labstack/echo/v4 v4.11.1
10
10
)
@@ -181,4 +181,7 @@ require (
181
181
howett.net/plist v1.0.0 // indirect
182
182
)
183
183
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