Skip to content

Commit 0cdebeb

Browse files
committed
release: v0.9.6
1 parent 4c22a78 commit 0cdebeb

File tree

16 files changed

+32
-27
lines changed

16 files changed

+32
-27
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
# Changelog
22

3-
## [Unreleased](https://github.com/openfga/python-sdk/compare/v0.9.5...HEAD)
3+
## [Unreleased](https://github.com/openfga/python-sdk/compare/v0.9.6...HEAD)
44

5-
### [0.9.5](https://github.com/openfga/python-sdk/compare/v0.9.4...0.9.5) (2025-07-09)
5+
### [0.9.6](https://github.com/openfga/python-sdk/compare/v0.9.5...0.9.6) (2025-09-15)
6+
7+
- fix: reuse ssl context in the sync client (#222) - thanks @wadells!
8+
- feat: add OAuth2 scopes parameter support to CredentialConfiguration (#213) - thanks @SoulPancake
9+
10+
### [v0.9.5](https://github.com/openfga/python-sdk/compare/v0.9.4...v0.9.5) (2025-07-09)
611

712
- fix: aiohttp.ClientResponse.data should be awaited (#197) - thanks @cmbernard333
813

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.5
1+
0.9.6

example/example1/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ attrs >= 25.3.0
44
frozenlist >= 1.7.0
55
idna >= 3.10
66
multidict >= 6.6.4
7-
openfga-sdk >= 0.9.5
7+
openfga-sdk >= 0.9.6
88
python-dateutil >= 2.9.0.post0
99
urllib3 >= 1.26.19, != 2.0.*, != 2.1.*, != 2.2.0, != 2.2.1, < 3
1010
yarl >= 1.20.1

example/example1/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
NAME = "example1"
1717
VERSION = "0.0.1"
18-
REQUIRES = ["openfga-sdk >= 0.9.5"]
18+
REQUIRES = ["openfga-sdk >= 0.9.6"]
1919

2020
setup(
2121
name=NAME,

openfga_sdk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
NOTE: This file was auto generated by OpenAPI Generator (https://openapi-generator.tech). DO NOT EDIT.
1111
"""
1212

13-
__version__ = "0.9.5"
13+
__version__ = "0.9.6"
1414

1515
from openfga_sdk.api.open_fga_api import OpenFgaApi
1616
from openfga_sdk.api_client import ApiClient

openfga_sdk/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
from openfga_sdk.telemetry.attributes import TelemetryAttribute, TelemetryAttributes
4040

4141

42-
DEFAULT_USER_AGENT = "openfga-sdk python/0.9.5"
42+
DEFAULT_USER_AGENT = "openfga-sdk python/0.9.6"
4343

4444

4545
def random_time(loop_count, min_wait_in_ms) -> float:

openfga_sdk/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ def to_debug_report(self):
538538
f"OS: {sys.platform}\n"
539539
f"Python Version: {sys.version}\n"
540540
"Version of the API: 1.x\n"
541-
"SDK Package Version: 0.9.5"
541+
"SDK Package Version: 0.9.6"
542542
)
543543

544544
def get_host_settings(self):

openfga_sdk/oauth2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ async def _obtain_token(self, client):
9090
{
9191
"Accept": "application/json",
9292
"Content-Type": "application/x-www-form-urlencoded",
93-
"User-Agent": "openfga-sdk (python) 0.9.5",
93+
"User-Agent": "openfga-sdk (python) 0.9.6",
9494
}
9595
)
9696

openfga_sdk/sync/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
from openfga_sdk.telemetry.attributes import TelemetryAttribute, TelemetryAttributes
3939

4040

41-
DEFAULT_USER_AGENT = "openfga-sdk python/0.9.5"
41+
DEFAULT_USER_AGENT = "openfga-sdk python/0.9.6"
4242

4343

4444
def random_time(loop_count, min_wait_in_ms) -> float:

openfga_sdk/sync/oauth2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def _obtain_token(self, client):
9090
{
9191
"Accept": "application/json",
9292
"Content-Type": "application/x-www-form-urlencoded",
93-
"User-Agent": "openfga-sdk (python) 0.9.5",
93+
"User-Agent": "openfga-sdk (python) 0.9.6",
9494
}
9595
)
9696

0 commit comments

Comments
 (0)