Skip to content

Commit bda4ab0

Browse files
committed
release: v0.9.7
1 parent ac3395c commit bda4ab0

17 files changed

Lines changed: 512 additions & 397 deletions

.pre-commit-config.yaml

Lines changed: 0 additions & 5 deletions
This file was deleted.

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.6...HEAD)
3+
## [Unreleased](https://github.com/openfga/python-sdk/compare/v0.9.7...HEAD)
44

5-
### [0.9.6](https://github.com/openfga/python-sdk/compare/v0.9.5...0.9.6) (2025-09-15)
5+
### [0.9.7](https://github.com/openfga/python-sdk/compare/v0.9.6...0.9.7) (2025-10-06)
6+
7+
- feat: `headers` configuration property (#233)
8+
- fix: per-request custom header precedence (#230)
9+
10+
### [v0.9.6](https://github.com/openfga/python-sdk/compare/v0.9.5...v0.9.6) (2025-09-15)
611

712
- fix: reuse ssl context in the sync client (#222) - thanks @wadells!
813
- feat: add OAuth2 scopes parameter support to CredentialConfiguration (#213) - thanks @SoulPancake

VERSION.txt

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

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.6
7+
openfga-sdk >= 0.9.7
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.6"]
18+
REQUIRES = ["openfga-sdk >= 0.9.7"]
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.6"
13+
__version__ = "0.9.7"
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.6"
42+
DEFAULT_USER_AGENT = "openfga-sdk python/0.9.7"
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
@@ -543,7 +543,7 @@ def to_debug_report(self):
543543
f"OS: {sys.platform}\n"
544544
f"Python Version: {sys.version}\n"
545545
"Version of the API: 1.x\n"
546-
"SDK Package Version: 0.9.6"
546+
"SDK Package Version: 0.9.7"
547547
)
548548

549549
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.6",
93+
"User-Agent": "openfga-sdk (python) 0.9.7",
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.6"
41+
DEFAULT_USER_AGENT = "openfga-sdk python/0.9.7"
4242

4343

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

0 commit comments

Comments
 (0)