Skip to content

Commit 0955b64

Browse files
Release v12.0.0 (#759)
### Change summary <!-- Briefly describe the changes introduced in this pull request. Include context or reasoning behind the changes, even if they seem minor. If relevant, link to any related discussions (e.g. Slack threads, tickets, documents). --> All Submissions: * [x] Have you followed the guidelines in our Contributing document? * [x] Have you checked to ensure there aren't other open [Pull Requests](https://github.com/fastly/go-fastly/pulls) for the same update/change? <!-- You can erase any parts of this template not applicable to your Pull Request. --> ### New Feature Submissions: * [x] Does your submission pass tests?
1 parent 067d92a commit 0955b64

File tree

168 files changed

+276
-266
lines changed

Some content is hidden

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

168 files changed

+276
-266
lines changed

CHANGELOG.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,19 @@
22

33
## [UNRELEASED]
44

5-
[Full Changelog](https://github.com/fastly/go-fastly/compare/v11.2.0...)
5+
[Full Changelog](https://github.com/fastly/go-fastly/compare/v12.0.0...)
6+
7+
### Breaking:
8+
9+
### Enhancements:
10+
11+
### Bug fixes:
12+
13+
### Dependencies:
14+
15+
## [v12.0.0](https://github.com/fastly/go-fastly/releases/tag/v12.0.0) (2025-09-17)
16+
17+
[Full Changelog](https://github.com/fastly/go-fastly/compare/v11.3.1...v12.0.0)
618

719
### Breaking:
820

@@ -14,8 +26,6 @@
1426

1527
- feat(ngwaf/rules): add support for the multival condition type ([#755](https://github.com/fastly/go-fastly/pull/755))
1628

17-
### Bug fixes:
18-
1929
### Dependencies:
2030

2131
- build(deps): `golang.org/x/crypto` from 0.41.0 to 0.42.0 ([#751](https://github.com/fastly/go-fastly/pull/751))

EXAMPLES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"log"
1818
"os"
1919

20-
"github.com/fastly/go-fastly/v11/fastly"
20+
"github.com/fastly/go-fastly/v12/fastly"
2121
)
2222

2323
func main() {

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ fixes available.
3232
## Usage
3333

3434
```go
35-
import "github.com/fastly/go-fastly/v11/fastly"
35+
import "github.com/fastly/go-fastly/v12/fastly"
3636
```
3737

3838
## Reference
@@ -42,4 +42,4 @@ import "github.com/fastly/go-fastly/v11/fastly"
4242
- [EXAMPLES.md](./EXAMPLES.md)
4343
- [TESTING.md](./TESTING.md)
4444

45-
[latest]: https://pkg.go.dev/github.com/fastly/go-fastly/v11/fastly
45+
[latest]: https://pkg.go.dev/github.com/fastly/go-fastly/v12/fastly

SERIALIZATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ service with SID `1234abcd` might look like this:
3434
```go
3535
import (
3636
"context"
37-
"github.com/fastly/go-fastly/v11/fastly"
37+
"github.com/fastly/go-fastly/v12/fastly"
3838
)
3939

4040
client := fastly.DefaultClient()

fastly/client.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"github.com/hashicorp/go-cleanhttp"
2525
"github.com/mitchellh/mapstructure"
2626

27-
"github.com/fastly/go-fastly/v11/fastly/impersonation"
27+
"github.com/fastly/go-fastly/v12/fastly/impersonation"
2828
)
2929

3030
// APIKeyEnvVar is the name of the environment variable where the Fastly API
@@ -64,7 +64,7 @@ const UserAgentEnvVar = "FASTLY_USER_AGENT"
6464
var ProjectURL = "github.com/fastly/go-fastly"
6565

6666
// ProjectVersion is the version of this library.
67-
var ProjectVersion = "11.3.1"
67+
var ProjectVersion = "12.0.0"
6868

6969
// UserAgent is the user agent for this particular client.
7070
var UserAgent = fmt.Sprintf("FastlyGo/%s (+%s; %s)",

fastly/client_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
"github.com/stretchr/testify/require"
1111

12-
"github.com/fastly/go-fastly/v11/fastly/impersonation"
12+
"github.com/fastly/go-fastly/v12/fastly/impersonation"
1313
)
1414

1515
func TestClient_RawRequest(t *testing.T) {

fastly/computeacls/api_create.go

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

8-
"github.com/fastly/go-fastly/v11/fastly"
8+
"github.com/fastly/go-fastly/v12/fastly"
99
)
1010

1111
// CreateInput specifies the information needed for the Create() function to

fastly/computeacls/api_delete.go

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

7-
"github.com/fastly/go-fastly/v11/fastly"
7+
"github.com/fastly/go-fastly/v12/fastly"
88
)
99

1010
// DeleteInput specifies the information needed for the Delete() function to

fastly/computeacls/api_describe.go

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

8-
"github.com/fastly/go-fastly/v11/fastly"
8+
"github.com/fastly/go-fastly/v12/fastly"
99
)
1010

1111
// DescribeInput specifies the information needed for the Describe() function to perform

fastly/computeacls/api_list_acls.go

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

8-
"github.com/fastly/go-fastly/v11/fastly"
8+
"github.com/fastly/go-fastly/v12/fastly"
99
)
1010

1111
// ListACLs retrieves all compute ACLs.

0 commit comments

Comments
 (0)