Skip to content

Commit d3ed8a2

Browse files
feat(go.mod): upgrade go-fastly from v9 to v10
1 parent 692eff0 commit d3ed8a2

462 files changed

Lines changed: 479 additions & 479 deletions

File tree

Some content is hidden

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

.tmpl/test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package ${CLI_PACKAGE}_test
33
import (
44
"testing"
55

6-
"github.com/fastly/go-fastly/v9/fastly"
6+
"github.com/fastly/go-fastly/v10/fastly"
77

88
"github.com/fastly/cli/pkg/mock"
99
"github.com/fastly/cli/pkg/testutil"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ require (
2727
)
2828

2929
require (
30-
github.com/fastly/go-fastly/v9 v9.14.0
30+
github.com/fastly/go-fastly/v10 v10.0.0
3131
github.com/hashicorp/cap v0.9.0
3232
github.com/kennygrant/sanitize v1.2.4
3333
github.com/otiai10/copy v1.14.1

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ github.com/dsnet/compress v0.0.2-0.20210315054119-f66993602bf5/go.mod h1:qssHWj6
2424
github.com/dsnet/golib v0.0.0-20171103203638-1ea166775780/go.mod h1:Lj+Z9rebOhdfkVLjJ8T6VcRQv3SXugXy999NBtR9aFY=
2525
github.com/dustinkirkland/golang-petname v0.0.0-20240428194347-eebcea082ee0 h1:aYo8nnk3ojoQkP5iErif5Xxv0Mo0Ga/FR5+ffl/7+Nk=
2626
github.com/dustinkirkland/golang-petname v0.0.0-20240428194347-eebcea082ee0/go.mod h1:8AuBTZBRSFqEYBPYULd+NN474/zZBLP+6WeT5S9xlAc=
27-
github.com/fastly/go-fastly/v9 v9.14.0 h1:ptSfSJELrJ7HJv8gquC4VdAgNp5/LDioVFwJkKX7gC8=
28-
github.com/fastly/go-fastly/v9 v9.14.0/go.mod h1:ZVG7JYdNvVU20gxq4Vy8Zu397nrzPdvkbIM5j29Me+M=
27+
github.com/fastly/go-fastly/v10 v10.0.0 h1:qK3dmemdPuAumbDiKoMzKO3mYJjfniPuFHGDGxfsftA=
28+
github.com/fastly/go-fastly/v10 v10.0.0/go.mod h1:q4FqB+nIJj8fQGJufIKAGdEqGnd+ZHO4qWisZLTJmcM=
2929
github.com/fastly/kingpin v2.1.12-0.20191105091915-95d230a53780+incompatible h1:FhrXlfhgGCS+uc6YwyiFUt04alnjpoX7vgDKJxS6Qbk=
3030
github.com/fastly/kingpin v2.1.12-0.20191105091915-95d230a53780+incompatible/go.mod h1:U8UynVoU1SQaqD2I4ZqgYd5lx3A1ipQYn4aSt2Y5h6c=
3131
github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk=

pkg/api/interface.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"crypto/ed25519"
55
"net/http"
66

7-
"github.com/fastly/go-fastly/v9/fastly"
7+
"github.com/fastly/go-fastly/v10/fastly"
88
)
99

1010
// HTTPClient models a concrete http.Client. It's a consumer contract for some

pkg/app/run.go

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

15-
"github.com/fastly/go-fastly/v9/fastly"
15+
"github.com/fastly/go-fastly/v10/fastly"
1616
"github.com/fastly/kingpin"
1717
"github.com/fatih/color"
1818
"github.com/hashicorp/cap/oidc"

pkg/argparser/cmd.go

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

7-
"github.com/fastly/go-fastly/v9/fastly"
7+
"github.com/fastly/go-fastly/v10/fastly"
88
"github.com/fastly/kingpin"
99

1010
"4d63.com/optional"

pkg/argparser/flags.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"strconv"
1313
"strings"
1414

15-
"github.com/fastly/go-fastly/v9/fastly"
15+
"github.com/fastly/go-fastly/v10/fastly"
1616
"github.com/fastly/kingpin"
1717

1818
"github.com/fastly/cli/pkg/api"

pkg/argparser/flags_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"strings"
1111
"testing"
1212

13-
"github.com/fastly/go-fastly/v9/fastly"
13+
"github.com/fastly/go-fastly/v10/fastly"
1414

1515
"github.com/fastly/cli/pkg/argparser"
1616
"github.com/fastly/cli/pkg/manifest"

pkg/commands/acl/acl_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package acl_test
33
import (
44
"testing"
55

6-
"github.com/fastly/go-fastly/v9/fastly"
6+
"github.com/fastly/go-fastly/v10/fastly"
77

88
root "github.com/fastly/cli/pkg/commands/acl"
99
"github.com/fastly/cli/pkg/mock"

pkg/commands/acl/create.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package acl
33
import (
44
"io"
55

6-
"github.com/fastly/go-fastly/v9/fastly"
6+
"github.com/fastly/go-fastly/v10/fastly"
77

88
"4d63.com/optional"
99
"github.com/fastly/cli/pkg/argparser"

0 commit comments

Comments
 (0)