Skip to content

Commit 63edc3e

Browse files
authored
fix: accidental v3 imports (#22068)
Signed-off-by: Michael Crenshaw <[email protected]>
1 parent 2dd70de commit 63edc3e

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

cmd/argocd/commands/root.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ package commands
33
import (
44
"fmt"
55

6-
"github.com/argoproj/argo-cd/v3/util/cache"
7-
86
"github.com/spf13/cobra"
97
"k8s.io/client-go/tools/clientcmd"
108

@@ -13,6 +11,7 @@ import (
1311
cmdutil "github.com/argoproj/argo-cd/v2/cmd/util"
1412
"github.com/argoproj/argo-cd/v2/common"
1513
argocdclient "github.com/argoproj/argo-cd/v2/pkg/apiclient"
14+
"github.com/argoproj/argo-cd/v2/util/cache"
1615
"github.com/argoproj/argo-cd/v2/util/cli"
1716
"github.com/argoproj/argo-cd/v2/util/config"
1817
"github.com/argoproj/argo-cd/v2/util/env"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ require (
1010
github.com/TomOnTime/utfutil v0.0.0-20180511104225-09c41003ee1d
1111
github.com/alicebob/miniredis/v2 v2.34.0
1212
github.com/antonmedv/expr v1.15.1
13-
github.com/argoproj/argo-cd/v3 v3.0.0-20250218162052-944f9f7b68b9
1413
github.com/argoproj/gitops-engine v0.7.1-0.20250207220447-65db274b8d73
1514
github.com/argoproj/notifications-engine v0.4.1-0.20241007194503-2fef5c9049fd
1615
github.com/argoproj/pkg v0.13.7-0.20230626144333-d56162821bd1
@@ -146,6 +145,7 @@ require (
146145
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
147146
github.com/googleapis/gax-go/v2 v2.12.3 // indirect
148147
github.com/kylelemons/godebug v1.1.0 // indirect
148+
github.com/malexdev/utfutil v0.0.0-20180510171754-00c8d4a8e7a8 // indirect
149149
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
150150
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
151151
github.com/x448/float16 v0.8.4 // indirect

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,6 @@ github.com/antonmedv/expr v1.15.1/go.mod h1:0E/6TxnOlRNp81GMzX9QfDPAmHo2Phg00y4J
9090
github.com/apache/thrift v0.12.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ=
9191
github.com/apache/thrift v0.13.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ=
9292
github.com/appscode/go v0.0.0-20191119085241-0887d8ec2ecc/go.mod h1:OawnOmAL4ZX3YaPdN+8HTNwBveT1jMsqP74moa9XUbE=
93-
github.com/argoproj/argo-cd/v3 v3.0.0-20250218162052-944f9f7b68b9 h1:D2MeQ5xcOOlR7g12H7YU7v0/+WTJYnNcvOemFHWcpr4=
94-
github.com/argoproj/argo-cd/v3 v3.0.0-20250218162052-944f9f7b68b9/go.mod h1:w1g5UPbM+Gc2P44kGfuaX7jy+PJgMKbrKNO9WoF4xEk=
9593
github.com/argoproj/gitops-engine v0.7.1-0.20250207220447-65db274b8d73 h1:OdAuLtAjJQNnZI3lbskJ9xvASvpHbTgQ5ONEbwm6jD0=
9694
github.com/argoproj/gitops-engine v0.7.1-0.20250207220447-65db274b8d73/go.mod h1:h4Klm/rHWHcRJZJjsSkAxq61/SqdbPG0ef/SO2QYTks=
9795
github.com/argoproj/notifications-engine v0.4.1-0.20241007194503-2fef5c9049fd h1:lOVVoK89j9Nd4+JYJiKAaMNYC1402C0jICROOfUPWn0=

server/application/application.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ import (
1212
"strings"
1313
"time"
1414

15-
cacheutil "github.com/argoproj/argo-cd/v3/util/cache"
16-
1715
kubecache "github.com/argoproj/gitops-engine/pkg/cache"
1816
"github.com/argoproj/gitops-engine/pkg/diff"
1917
"github.com/argoproj/gitops-engine/pkg/sync/common"
@@ -50,6 +48,7 @@ import (
5048
"github.com/argoproj/argo-cd/v2/server/rbacpolicy"
5149
"github.com/argoproj/argo-cd/v2/util/argo"
5250
argoutil "github.com/argoproj/argo-cd/v2/util/argo"
51+
cacheutil "github.com/argoproj/argo-cd/v2/util/cache"
5352
"github.com/argoproj/argo-cd/v2/util/collections"
5453
"github.com/argoproj/argo-cd/v2/util/db"
5554
"github.com/argoproj/argo-cd/v2/util/env"

0 commit comments

Comments
 (0)