Skip to content

Commit 0fe6b1b

Browse files
[chore] Update dependency to github.com/godbus/dbus/v5 (#2860)
Signed-off-by: Mikel Olasagasti Uranga <[email protected]>
1 parent 8b72389 commit 0fe6b1b

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

go.mod

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ require (
1212
github.com/dustin/go-humanize v1.0.1
1313
github.com/ergochat/readline v0.1.0
1414
github.com/fatih/color v1.16.0
15-
github.com/godbus/dbus v0.0.0-20190623212516-8a1682060722
15+
github.com/godbus/dbus/v5 v5.1.0
1616
github.com/gokyle/twofactor v1.0.1
1717
github.com/google/go-cmp v0.6.0
1818
github.com/google/go-github v17.0.0+incompatible
@@ -64,7 +64,6 @@ require (
6464
github.com/gdamore/encoding v1.0.1 // indirect
6565
github.com/gdamore/tcell/v2 v2.7.4 // indirect
6666
github.com/gen2brain/shm v0.1.0 // indirect
67-
github.com/godbus/dbus/v5 v5.1.0 // indirect
6867
github.com/google/go-querystring v1.1.0 // indirect
6968
github.com/jezek/xgb v1.1.1 // indirect
7069
github.com/jwalton/gchalk v1.3.0 // indirect

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,6 @@ github.com/gdamore/tcell/v2 v2.7.4 h1:sg6/UnTM9jGpZU+oFYAsDahfchWAFW8Xx2yFinNSAY
5656
github.com/gdamore/tcell/v2 v2.7.4/go.mod h1:dSXtXTSK0VsW1biw65DZLZ2NKr7j0qP/0J7ONmsraWg=
5757
github.com/gen2brain/shm v0.1.0 h1:MwPeg+zJQXN0RM9o+HqaSFypNoNEcNpeoGp0BTSx2YY=
5858
github.com/gen2brain/shm v0.1.0/go.mod h1:UgIcVtvmOu+aCJpqJX7GOtiN7X2ct+TKLg4RTxwPIUA=
59-
github.com/godbus/dbus v0.0.0-20190623212516-8a1682060722 h1:NNKZiuNXd6lpZRyoFM/uhssj5W9Ps1DbhGHxT49Pm9I=
60-
github.com/godbus/dbus v0.0.0-20190623212516-8a1682060722/go.mod h1:bBOAhwG1umN6/6ZUMtDFBMQR8jRg9O75tm9K00oMsK4=
6159
github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA=
6260
github.com/godbus/dbus/v5 v5.1.0 h1:4KLkAxT3aOY8Li4FRJe/KvhoNFFxo0m6fNuFUO8QJUk=
6361
github.com/godbus/dbus/v5 v5.1.0/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA=

internal/notify/notify_dbus.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"context"
88
"os"
99

10-
"github.com/godbus/dbus"
10+
"github.com/godbus/dbus/v5"
1111
"github.com/gopasspw/gopass/internal/config"
1212
"github.com/gopasspw/gopass/pkg/debug"
1313
)

pkg/clipboard/unclip_linux.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"fmt"
99
"strings"
1010

11-
"github.com/godbus/dbus"
11+
"github.com/godbus/dbus/v5"
1212
)
1313

1414
func clearClipboardHistory(ctx context.Context) error {

0 commit comments

Comments
 (0)