Skip to content

Commit 0df8c16

Browse files
Executing automated changes
1 parent d67e89c commit 0df8c16

5 files changed

Lines changed: 6 additions & 5 deletions

File tree

cmd/crank/beta/validate/image.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"sort"
2727
"strings"
2828

29-
"github.com/Masterminds/semver"
29+
"github.com/Masterminds/semver/v3"
3030
"github.com/google/go-containerregistry/pkg/crane"
3131
"github.com/google/go-containerregistry/pkg/name"
3232
conregv1 "github.com/google/go-containerregistry/pkg/v1"

go.mod

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ replace github.com/crossplane/crossplane/apis/v2 => ./apis
77
require (
88
dario.cat/mergo v1.0.2
99
github.com/AdaLogics/go-fuzz-headers v0.0.0-20240806141605-e8a1dd7889d6
10-
github.com/Masterminds/semver v1.5.0
10+
github.com/Masterminds/semver/v3 v3.4.0
1111
github.com/alecthomas/kong v1.14.0
1212
github.com/charmbracelet/bubbletea v1.3.10
1313
github.com/containerd/errdefs v1.0.0
@@ -44,6 +44,7 @@ require (
4444
)
4545

4646
require (
47+
github.com/Masterminds/semver v1.5.0 // indirect
4748
github.com/google/go-containerregistry/pkg/authn/k8schain v0.0.0-20230919002926-dbcd01c402b2 // indirect
4849
github.com/in-toto/in-toto-golang v0.10.0 // indirect
4950
github.com/oklog/ulid/v2 v2.1.1 // indirect

internal/controller/pkg/resolver/reconciler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"strings"
2626
"time"
2727

28-
"github.com/Masterminds/semver"
28+
"github.com/Masterminds/semver/v3"
2929
"github.com/google/go-containerregistry/pkg/name"
3030
conregv1 "github.com/google/go-containerregistry/pkg/v1"
3131
kerrors "k8s.io/apimachinery/pkg/api/errors"

internal/controller/pkg/revision/dependency.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"fmt"
2222
"strings"
2323

24-
"github.com/Masterminds/semver"
24+
"github.com/Masterminds/semver/v3"
2525
"github.com/google/go-containerregistry/pkg/name"
2626
conregv1 "github.com/google/go-containerregistry/pkg/v1"
2727
kerrors "k8s.io/apimachinery/pkg/api/errors"

internal/dag/upgrading_dag.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
package dag
1818

1919
import (
20-
"github.com/Masterminds/semver"
20+
"github.com/Masterminds/semver/v3"
2121

2222
"github.com/crossplane/crossplane-runtime/v2/pkg/errors"
2323
)

0 commit comments

Comments
 (0)