Skip to content

Commit 524db2d

Browse files
committed
release(prepare): v1.7.8
1 parent cb5608c commit 524db2d

File tree

23 files changed

+59
-59
lines changed

23 files changed

+59
-59
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -985,7 +985,7 @@ experimental:
985985
plugins:
986986
souin:
987987
moduleName: github.com/darkweak/souin
988-
version: v1.7.7
988+
version: v1.7.8
989989
```
990990
After that you can declare either the whole configuration at once in the middleware block or by service. See the examples below.
991991
```yaml

docs/website/content/docs/middlewares/træfik.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ experimental:
5858
plugins:
5959
souin:
6060
moduleName: github.com/darkweak/souin
61-
version: v1.7.7
61+
version: v1.7.8
6262
```
6363

6464
With that your application will be able to cache the responses if possible and returns at least the `Cache-Status` HTTP header with the different directives mentionned in the RFC specification.

plugins/beego/go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ go 1.25
44

55
require (
66
github.com/beego/beego/v2 v2.3.8
7-
github.com/darkweak/souin v1.7.7
8-
github.com/darkweak/souin/plugins/souin v1.7.7
9-
github.com/darkweak/souin/plugins/souin/storages v1.7.7
7+
github.com/darkweak/souin v1.7.8
8+
github.com/darkweak/souin/plugins/souin v1.7.8
9+
github.com/darkweak/souin/plugins/souin/storages v1.7.8
1010
)
1111

1212
require (
@@ -201,7 +201,7 @@ require (
201201
)
202202

203203
replace (
204-
github.com/darkweak/souin v1.7.7 => ../..
204+
github.com/darkweak/souin v1.7.8 => ../..
205205
github.com/darkweak/souin/plugins/souin => ../souin
206206
github.com/darkweak/souin/plugins/souin/storages => ../souin/storages
207207
)

plugins/caddy/go.mod

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

55
require (
66
github.com/caddyserver/caddy/v2 v2.10.2
7-
github.com/darkweak/souin v1.7.7
7+
github.com/darkweak/souin v1.7.8
88
github.com/darkweak/storages/core v0.0.16
99
)
1010

@@ -163,4 +163,4 @@ require (
163163
howett.net/plist v1.0.1 // indirect
164164
)
165165

166-
replace github.com/darkweak/souin v1.7.7 => ../..
166+
replace github.com/darkweak/souin v1.7.8 => ../..

plugins/chi/go.mod

Lines changed: 3 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.25
44

55
require (
6-
github.com/darkweak/souin v1.7.7
7-
github.com/darkweak/souin/plugins/souin/storages v1.7.7
6+
github.com/darkweak/souin v1.7.8
7+
github.com/darkweak/souin/plugins/souin/storages v1.7.8
88
github.com/go-chi/chi/v5 v5.2.3
99
)
1010

@@ -198,6 +198,6 @@ require (
198198
)
199199

200200
replace (
201-
github.com/darkweak/souin v1.7.7 => ../..
201+
github.com/darkweak/souin v1.7.8 => ../..
202202
github.com/darkweak/souin/plugins/souin/storages => ../souin/storages
203203
)

plugins/dotweb/go.mod

Lines changed: 3 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.25
44

55
require (
6-
github.com/darkweak/souin v1.7.7
7-
github.com/darkweak/souin/plugins/souin/storages v1.7.7
6+
github.com/darkweak/souin v1.7.8
7+
github.com/darkweak/souin/plugins/souin/storages v1.7.8
88
github.com/devfeel/dotweb v1.7.21
99
)
1010

@@ -199,6 +199,6 @@ require (
199199
)
200200

201201
replace (
202-
github.com/darkweak/souin v1.7.7 => ../..
202+
github.com/darkweak/souin v1.7.8 => ../..
203203
github.com/darkweak/souin/plugins/souin/storages => ../souin/storages
204204
)

plugins/echo/go.mod

Lines changed: 3 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.25
44

55
require (
6-
github.com/darkweak/souin v1.7.7
7-
github.com/darkweak/souin/plugins/souin/storages v1.7.7
6+
github.com/darkweak/souin v1.7.8
7+
github.com/darkweak/souin/plugins/souin/storages v1.7.8
88
github.com/darkweak/storages/core v0.0.16
99
github.com/labstack/echo/v4 v4.13.4
1010
)
@@ -201,6 +201,6 @@ require (
201201
)
202202

203203
replace (
204-
github.com/darkweak/souin v1.7.7 => ../..
204+
github.com/darkweak/souin v1.7.8 => ../..
205205
github.com/darkweak/souin/plugins/souin/storages => ../souin/storages
206206
)

plugins/fiber/go.mod

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

55
require (
6-
github.com/darkweak/souin v1.7.7
7-
github.com/darkweak/souin/plugins/souin/storages v1.7.7
6+
github.com/darkweak/souin v1.7.8
7+
github.com/darkweak/souin/plugins/souin/storages v1.7.8
88
github.com/gofiber/fiber/v2 v2.52.9
99
github.com/valyala/fasthttp v1.65.0
1010
)
@@ -203,6 +203,6 @@ require (
203203
)
204204

205205
replace (
206-
github.com/darkweak/souin v1.7.7 => ../..
206+
github.com/darkweak/souin v1.7.8 => ../..
207207
github.com/darkweak/souin/plugins/souin/storages => ../souin/storages
208208
)

plugins/gin/go.mod

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

55
require (
6-
github.com/darkweak/souin v1.7.7
7-
github.com/darkweak/souin/plugins/souin/storages v1.7.7
6+
github.com/darkweak/souin v1.7.8
7+
github.com/darkweak/souin/plugins/souin/storages v1.7.8
88
github.com/gin-gonic/gin v1.10.1
99
)
1010

@@ -216,6 +216,6 @@ require (
216216
)
217217

218218
replace (
219-
github.com/darkweak/souin v1.7.7 => ../..
219+
github.com/darkweak/souin v1.7.8 => ../..
220220
github.com/darkweak/souin/plugins/souin/storages => ../souin/storages
221221
)

plugins/go-zero/examples/sample.api

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ info (
33
desc: "HTTP cache support as plugin for go-zero"
44
author: "darkweak"
55
6-
version: "v1.7.7"
6+
version: "v1.7.8"
77
)
88

99
type CacheReq {}

0 commit comments

Comments
 (0)