Skip to content

Commit 749cc80

Browse files
authored
release(v1.7.4): next (#568)
1 parent ef61974 commit 749cc80

File tree

36 files changed

+98
-85
lines changed

36 files changed

+98
-85
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
```
957957
After that you can declare either the whole configuration at once in the middleware block or by service. See the examples below.
958958
```yaml

plugins/beego/go.mod

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ toolchain go1.22.4
66

77
require (
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

1414
require (
@@ -184,6 +184,7 @@ require (
184184
)
185185

186186
replace (
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
)

plugins/beego/go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,6 @@ github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46t
141141
github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY=
142142
github.com/darkweak/go-esi v0.0.5 h1:b9LHI8Tz46R+i6p8avKPHAIBRQUCZDebNmKm5w/Zrns=
143143
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=
146144
github.com/darkweak/storages/badger v0.0.8 h1:rKVXrasVA74xgiqGRgW0kH11NUIlWwn9HiFyHUok85k=
147145
github.com/darkweak/storages/badger v0.0.8/go.mod h1:ZmrNmKkFzyu/B3+1nsvVeTvyg2I2mOV5yTpT46mZ06o=
148146
github.com/darkweak/storages/core v0.0.11 h1:IwvpAtkhOmxC5pIffJ8opW6erpTnIi5zqPveiAQs8ew=

plugins/caddy/go.mod

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

55
require (
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 => ../..

plugins/chi/go.mod

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ module github.com/darkweak/souin/plugins/chi
33
go 1.22.1
44

55
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
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+
)

plugins/chi/go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,6 @@ github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46t
139139
github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY=
140140
github.com/darkweak/go-esi v0.0.6 h1:eVHCJfqrZwOHPfRK7JTlSYG9F8lfpX/d4lz/41RQkd8=
141141
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=
144142
github.com/darkweak/storages/badger v0.0.8 h1:rKVXrasVA74xgiqGRgW0kH11NUIlWwn9HiFyHUok85k=
145143
github.com/darkweak/storages/badger v0.0.8/go.mod h1:ZmrNmKkFzyu/B3+1nsvVeTvyg2I2mOV5yTpT46mZ06o=
146144
github.com/darkweak/storages/core v0.0.11 h1:IwvpAtkhOmxC5pIffJ8opW6erpTnIi5zqPveiAQs8ew=

plugins/dotweb/go.mod

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ module github.com/darkweak/souin/plugins/dotweb
33
go 1.22.1
44

55
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
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+
)

plugins/dotweb/go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,6 @@ github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46t
139139
github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY=
140140
github.com/darkweak/go-esi v0.0.6 h1:eVHCJfqrZwOHPfRK7JTlSYG9F8lfpX/d4lz/41RQkd8=
141141
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=
144142
github.com/darkweak/storages/badger v0.0.8 h1:rKVXrasVA74xgiqGRgW0kH11NUIlWwn9HiFyHUok85k=
145143
github.com/darkweak/storages/badger v0.0.8/go.mod h1:ZmrNmKkFzyu/B3+1nsvVeTvyg2I2mOV5yTpT46mZ06o=
146144
github.com/darkweak/storages/core v0.0.11 h1:IwvpAtkhOmxC5pIffJ8opW6erpTnIi5zqPveiAQs8ew=

plugins/echo/go.mod

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ module github.com/darkweak/souin/plugins/echo
33
go 1.22.1
44

55
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
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+
)

0 commit comments

Comments
 (0)