Skip to content

Commit

Permalink
chore(deps): 4-4 bump github.com/ViBiOh/httputils/v4 from 4.52.1 to 4…
Browse files Browse the repository at this point in the history
….52.6

Bumps [github.com/ViBiOh/httputils/v4](https://github.com/ViBiOh/httputils) from 4.52.1 to 4.52.6.
- [Release notes](https://github.com/ViBiOh/httputils/releases)
- [Commits](ViBiOh/httputils@v4.52.1...v4.52.6)

---
updated-dependencies:
- dependency-name: github.com/ViBiOh/httputils/v4
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Vincent Boutour <[email protected]>
  • Loading branch information
dependabot[bot] authored and ViBiOh committed Jan 21, 2023
1 parent 9897cee commit 2815379
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.19
require (
github.com/ViBiOh/auth/v2 v2.14.20
github.com/ViBiOh/flags v1.2.0
github.com/ViBiOh/httputils/v4 v4.52.1
github.com/ViBiOh/httputils/v4 v4.52.6
github.com/ViBiOh/mailer v1.30.18
github.com/golang/mock v1.6.0
github.com/jackc/pgconn v1.13.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ github.com/ViBiOh/auth/v2 v2.14.20 h1:xCTQrnTOFLiyFLIV0CMXlCPrHEbimganZsbTbdHUh5
github.com/ViBiOh/auth/v2 v2.14.20/go.mod h1:lL4rXpvS0Gtui4CSy0J/AK1pq59XVXaR4Qz1ELsQ3eY=
github.com/ViBiOh/flags v1.2.0 h1:DaujjNXzD29KxKyp4eZdn7c9+uBN5DokWgDAe7DcUmc=
github.com/ViBiOh/flags v1.2.0/go.mod h1:UyMB5zeD/aId7Xw3x7577ZNU298JmukzOcV8p/H2W1s=
github.com/ViBiOh/httputils/v4 v4.52.1 h1:0hfZXlwLhTDPRFvcryvrNe6ZUaYnQfrFdB0tnrrf1Vg=
github.com/ViBiOh/httputils/v4 v4.52.1/go.mod h1:YA+JJC5yrILqjk+OI9L0emleE2rXD3Q/z6gcS22IZlE=
github.com/ViBiOh/httputils/v4 v4.52.6 h1:/d848oQoxwBpwO7VpvxsmTDaHNuDOZaBGoTeqRhRdEs=
github.com/ViBiOh/httputils/v4 v4.52.6/go.mod h1:YA+JJC5yrILqjk+OI9L0emleE2rXD3Q/z6gcS22IZlE=
github.com/ViBiOh/mailer v1.30.18 h1:56WqAM8RewgkCXYP+jtBnQKjdTobnkappxU7gIErV0E=
github.com/ViBiOh/mailer v1.30.18/go.mod h1:F4YM+ANIsVzXcYqjA3I6JfJCJqC9QB+jirML+XPg4RY=
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
Expand Down
4 changes: 2 additions & 2 deletions pkg/ketchup/ketchup.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ type App struct {
ketchupService ketchup.App
repositoryService repository.App
cacheApp cache.App[model.User, []model.Repository]
redisApp redis.App
redisApp redis.Client
rendererApp renderer.App
}

// New creates new App from Config
func New(rendererApp renderer.App, ketchupService ketchup.App, userService user.App, repositoryService repository.App, redisApp redis.App, tracerApp tracer.App) App {
func New(rendererApp renderer.App, ketchupService ketchup.App, userService user.App, repositoryService repository.App, redisApp redis.Client, tracerApp tracer.App) App {
app := App{
rendererApp: rendererApp,
ketchupService: ketchupService,
Expand Down
2 changes: 1 addition & 1 deletion pkg/provider/github/github.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ var (
)

type redis interface {
Ping() error
Ping(context.Context) error
Exclusive(context.Context, string, time.Duration, func(context.Context) error) (bool, error)
}

Expand Down
4 changes: 2 additions & 2 deletions pkg/scheduler/scheduler.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ type app struct {
tracer trace.Tracer
timezone string
hour string
redisApp redis.App
redisApp redis.Client
notifierApp notifier.App
}

Expand All @@ -45,7 +45,7 @@ func Flags(fs *flag.FlagSet, prefix string) Config {
}

// New creates new App from Config
func New(config Config, notifierApp notifier.App, redisApp redis.App, tracer trace.Tracer) App {
func New(config Config, notifierApp notifier.App, redisApp redis.Client, tracer trace.Tracer) App {
if !*config.enabled {
return nil
}
Expand Down

0 comments on commit 2815379

Please sign in to comment.