From 9a204b361538e0c221aa8ac834a5f8cd672e89cf Mon Sep 17 00:00:00 2001 From: Raghd Hamzeh Date: Fri, 13 Oct 2023 12:27:27 -0400 Subject: [PATCH] release(v0.2.3): with various client fixes --- CHANGELOG.md | 12 ++++++++++++ configuration.go | 4 ++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fc7cbd..cbc0cd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## v0.2.3 + +### [0.2.3](https://github.com/openfga/go-sdk/compare/v0.2.2...v0.2.3) (2023-10-13) + +- fix: allow setting user agent +- fix(client): resolve null pointer exceptions when getting auth model id +- fix(client): allow read to contain empty fields +- fix(client): require auth model id and store id to be ulids +- fix(client): resolve cases where req options was not respected +- fix: add retry logic to oauth +- chore: target go1.21.3 and upgrade dependencies + ## v0.2.2 ### [0.2.2](https://github.com/openfga/go-sdk/compare/v0.2.1...v0.2.2) (2023-04-21) diff --git a/configuration.go b/configuration.go index 71d54f2..5047324 100644 --- a/configuration.go +++ b/configuration.go @@ -20,9 +20,9 @@ import ( ) const ( - SdkVersion = "0.2.2" + SdkVersion = "0.2.3" - defaultUserAgent = "openfga-sdk go/0.2.2" + defaultUserAgent = "openfga-sdk go/0.2.3" ) // RetryParams configures configuration for retry in case of HTTP too many request