Skip to content

Commit

Permalink
release: v0.5.0 (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
ewanharris authored Jun 17, 2024
1 parent 3b7f094 commit 8d3cee7
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## v0.5.0

### [0.5.0](https://github.com/openfga/go-sdk/compare/v0.4.0...v0.5.0) (2024-06-14)
- fix: correctly set HTTPClient - thanks @wonyx
- chore!: remove excluded users from ListUsers response

BREAKING CHANGE:

This version removes the `ExcludedUsers` field from the `ListUsersResponse` and `ClientListUsersResponse` structs,
for more details see the [associated API change](https://github.com/openfga/api/pull/171).

## v0.4.0

### [0.4.0](https://github.com/openfga/go-sdk/compare/v0.3.7...v0.4.0) (2024-05-30)
Expand Down
4 changes: 2 additions & 2 deletions configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ import (
)

const (
SdkVersion = "0.4.0"
SdkVersion = "0.5.0"

defaultUserAgent = "openfga-sdk go/0.4.0"
defaultUserAgent = "openfga-sdk go/0.5.0"
)

// RetryParams configures configuration for retry in case of HTTP too many request
Expand Down
4 changes: 2 additions & 2 deletions example/example1/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ module example1

go 1.22.2

require github.com/openfga/go-sdk v0.4.0
require github.com/openfga/go-sdk v0.5.0

require golang.org/x/sync v0.7.0 // indirect

// To reference local build, uncomment below and run `go mod tidy`
replace github.com/openfga/go-sdk v0.4.0 => ../../
replace github.com/openfga/go-sdk v0.5.0 => ../../

0 comments on commit 8d3cee7

Please sign in to comment.