Skip to content

Commit 3936955

Browse files
authored
release: v0.9.3 (#180)
1 parent 46214ab commit 3936955

File tree

15 files changed

+22
-19
lines changed

15 files changed

+22
-19
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,14 @@
22

33
## [Unreleased](https://github.com/openfga/python-sdk/compare/v0.9.2...HEAD)
44

5+
### [0.9.3](https://github.com/openfga/python-sdk/compare/v0.9.2...v0.9.3) (2025-03-26)
6+
7+
- fix: urllib3 compatibility < v2 (#179)
8+
59
### [0.9.2](https://github.com/openfga/python-sdk/compare/v0.9.1...v0.9.2) (2025-03-25)
610

7-
- fix(telemetry): fixes for telemetry attributes and metrics tracking
8-
- fix: REST client should not close after `stream` request
11+
- fix(telemetry): fixes for telemetry attributes and metrics tracking (#177)
12+
- fix: REST client should not close after `stream` request (#172)
913

1014
## v0.9.1
1115

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.2
1+
0.9.3

example/example1/requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ attrs >= 23.1.0
44
frozenlist >= 1.4.1
55
idna >= 3.6
66
multidict >= 6.0.4
7-
openfga-sdk >= 0.9.2
7+
openfga-sdk >= 0.9.3
88
python-dateutil >= 2.8.2
99
urllib3 >= 2.1.0
1010
yarl >= 1.9.4
1111
python-dotenv >= 1, <2
12-

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.2"]
18+
REQUIRES = ["openfga-sdk >= 0.9.3"]
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.2"
13+
__version__ = "0.9.3"
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.2"
42+
DEFAULT_USER_AGENT = "openfga-sdk python/0.9.3"
4343

4444

4545
def random_time(loop_count, min_wait_in_ms):

openfga_sdk/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ def to_debug_report(self):
517517
f"OS: {sys.platform}\n"
518518
f"Python Version: {sys.version}\n"
519519
"Version of the API: 1.x\n"
520-
"SDK Package Version: 0.9.1"
520+
"SDK Package Version: 0.9.3"
521521
)
522522

523523
def get_host_settings(self):

openfga_sdk/oauth2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ async def _obtain_token(self, client):
8383
{
8484
"Accept": "application/json",
8585
"Content-Type": "application/x-www-form-urlencoded",
86-
"User-Agent": "openfga-sdk (python) 0.9.2",
86+
"User-Agent": "openfga-sdk (python) 0.9.3",
8787
}
8888
)
8989

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.2"
41+
DEFAULT_USER_AGENT = "openfga-sdk python/0.9.3"
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
@@ -83,7 +83,7 @@ def _obtain_token(self, client):
8383
{
8484
"Accept": "application/json",
8585
"Content-Type": "application/x-www-form-urlencoded",
86-
"User-Agent": "openfga-sdk (python) 0.9.2",
86+
"User-Agent": "openfga-sdk (python) 0.9.3",
8787
}
8888
)
8989

0 commit comments

Comments
 (0)