Skip to content

Commit 7bff860

Browse files
committed
Bump v4
1 parent 29bd6e6 commit 7bff860

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+122
-104
lines changed

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ updates:
44
directory: "/"
55
schedule:
66
interval: "daily"
7+
time: "08:00"
8+
timezone: "Europe/Paris"
9+
labels:
10+
- ":game_die: dependencies"
11+
- ":robot: bot"
12+
- package-ecosystem: "github-actions"
13+
directory: "/"
14+
schedule:
15+
interval: "daily"
16+
time: "08:00"
717
timezone: "Europe/Paris"
818
labels:
919
- ":game_die: dependencies"

.github/labels.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## https://github.com/crazy-max/ghaction-github-labeler
1+
## more info https://github.com/crazy-max/ghaction-github-labeler
22
- # bot
33
name: ":robot: bot"
44
color: "69cde9"
@@ -59,10 +59,18 @@
5959
name: ":thinking: needs more info"
6060
color: "795548"
6161
description: ""
62+
- # pinned
63+
name: ":pushpin: pinned"
64+
color: "28008e"
65+
description: ""
6266
- # question
6367
name: ":question: question"
6468
color: "3f51b5"
6569
description: ""
70+
- # stale
71+
name: ":skull: stale"
72+
color: "237da0"
73+
description: ""
6674
- # upstream
6775
name: ":eyes: upstream"
6876
color: "fbca04"

cmd/main.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ import (
1010
"time"
1111

1212
"github.com/alecthomas/kong"
13-
"github.com/crazy-max/diun/v3/internal/app"
14-
"github.com/crazy-max/diun/v3/internal/config"
15-
"github.com/crazy-max/diun/v3/internal/logging"
16-
"github.com/crazy-max/diun/v3/internal/model"
13+
"github.com/crazy-max/diun/v4/internal/app"
14+
"github.com/crazy-max/diun/v4/internal/config"
15+
"github.com/crazy-max/diun/v4/internal/logging"
16+
"github.com/crazy-max/diun/v4/internal/model"
1717
"github.com/rs/zerolog/log"
1818
)
1919

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/crazy-max/diun/v3
1+
module github.com/crazy-max/diun/v4
22

33
go 1.13
44

internal/app/diun.go

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ import (
55
"sync/atomic"
66
"time"
77

8-
"github.com/crazy-max/diun/v3/internal/config"
9-
"github.com/crazy-max/diun/v3/internal/db"
10-
"github.com/crazy-max/diun/v3/internal/logging"
11-
"github.com/crazy-max/diun/v3/internal/model"
12-
"github.com/crazy-max/diun/v3/internal/notif"
13-
dockerPrd "github.com/crazy-max/diun/v3/internal/provider/docker"
14-
filePrd "github.com/crazy-max/diun/v3/internal/provider/file"
15-
swarmPrd "github.com/crazy-max/diun/v3/internal/provider/swarm"
16-
"github.com/crazy-max/diun/v3/pkg/registry"
8+
"github.com/crazy-max/diun/v4/internal/config"
9+
"github.com/crazy-max/diun/v4/internal/db"
10+
"github.com/crazy-max/diun/v4/internal/logging"
11+
"github.com/crazy-max/diun/v4/internal/model"
12+
"github.com/crazy-max/diun/v4/internal/notif"
13+
dockerPrd "github.com/crazy-max/diun/v4/internal/provider/docker"
14+
filePrd "github.com/crazy-max/diun/v4/internal/provider/file"
15+
swarmPrd "github.com/crazy-max/diun/v4/internal/provider/swarm"
16+
"github.com/crazy-max/diun/v4/pkg/registry"
1717
"github.com/hako/durafmt"
1818
"github.com/panjf2000/ants/v2"
1919
"github.com/robfig/cron/v3"

internal/app/job.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"fmt"
55
"regexp"
66

7-
"github.com/crazy-max/diun/v3/internal/model"
8-
"github.com/crazy-max/diun/v3/pkg/registry"
9-
"github.com/crazy-max/diun/v3/pkg/utl"
7+
"github.com/crazy-max/diun/v4/internal/model"
8+
"github.com/crazy-max/diun/v4/pkg/registry"
9+
"github.com/crazy-max/diun/v4/pkg/utl"
1010
"github.com/imdario/mergo"
1111
"github.com/rs/zerolog/log"
1212
)

internal/config/config.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55
"fmt"
66
"os"
77

8-
"github.com/crazy-max/diun/v3/internal/model"
9-
"github.com/crazy-max/diun/v3/third_party/traefik/config/env"
10-
"github.com/crazy-max/diun/v3/third_party/traefik/config/file"
8+
"github.com/crazy-max/diun/v4/internal/model"
9+
"github.com/crazy-max/diun/v4/third_party/traefik/config/env"
10+
"github.com/crazy-max/diun/v4/third_party/traefik/config/file"
1111
"github.com/go-playground/validator/v10"
1212
"github.com/pkg/errors"
1313
)

internal/config/config_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"testing"
77
"time"
88

9-
"github.com/crazy-max/diun/v3/internal/config"
10-
"github.com/crazy-max/diun/v3/internal/model"
11-
"github.com/crazy-max/diun/v3/pkg/utl"
9+
"github.com/crazy-max/diun/v4/internal/config"
10+
"github.com/crazy-max/diun/v4/internal/model"
11+
"github.com/crazy-max/diun/v4/pkg/utl"
1212
"github.com/stretchr/testify/assert"
1313
"github.com/stretchr/testify/require"
1414
)

internal/db/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"reflect"
66
"time"
77

8-
"github.com/crazy-max/diun/v3/internal/model"
8+
"github.com/crazy-max/diun/v4/internal/model"
99
"github.com/rs/zerolog/log"
1010
bolt "go.etcd.io/bbolt"
1111
)

internal/db/manifest.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"bytes"
55
"encoding/json"
66

7-
"github.com/crazy-max/diun/v3/pkg/registry"
7+
"github.com/crazy-max/diun/v4/pkg/registry"
88
bolt "go.etcd.io/bbolt"
99
)
1010

0 commit comments

Comments
 (0)