Skip to content

Commit

Permalink
release: v0.3.7 (#97)
Browse files Browse the repository at this point in the history
* chore: lower required go version to 1.21

fixes #94

* release: v0.3.7
  • Loading branch information
rhamzeh authored May 8, 2024
1 parent 7689bae commit 80ffe43
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
# Changelog

## v0.3.7

### [0.3.7](https://github.com/openfga/go-sdk/compare/v0.3.6...v0.3.7) (2024-05-08)
- feat: Add MaxParallelRequests option in ListRelations (#93) - thanks @gurleensethi
- chore: lower required go version to 1.21 (fixes #94)

## v0.3.6

### [0.3.6](https://github.com/openfga/go-sdk/compare/v0.3.5...v0.3.6) (2024-04-30)

- feat: support the [ListUsers](https://github.com/openfga/rfcs/blob/main/20231214-listUsers-api.md) endpoint (#81)
- feat: add retries to client credential requests (#51)
- fix: do not call ReadAuthorizationModel on BatchCheck or non-Transactional Write (#78)
- chore: fix typos in the readme (#91) - thanks @balaji-dongare
- chore!: raise required go version to 1.21.9

## v0.3.5

Expand Down
4 changes: 2 additions & 2 deletions configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ import (
)

const (
SdkVersion = "0.3.6"
SdkVersion = "0.3.7"

defaultUserAgent = "openfga-sdk go/0.3.6"
defaultUserAgent = "openfga-sdk go/0.3.7"
)

// 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.3.6
require github.com/openfga/go-sdk v0.3.7

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.3.6 => ../../
replace github.com/openfga/go-sdk v0.3.7 => ../../
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/openfga/go-sdk

go 1.21.9
go 1.21

require (
github.com/jarcoal/httpmock v1.3.1
Expand Down

0 comments on commit 80ffe43

Please sign in to comment.