Skip to content

Commit c2063aa

Browse files
committed
release: v0.9.1
1 parent ffa58f5 commit c2063aa

File tree

15 files changed

+25
-18
lines changed

15 files changed

+25
-18
lines changed

CHANGELOG.md

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

3-
## [Unreleased](https://github.com/openfga/python-sdk/compare/v0.9.0...HEAD)
3+
## [Unreleased](https://github.com/openfga/python-sdk/compare/v0.9.1...HEAD)
4+
5+
## v0.9.1
6+
7+
### [0.9.1](https://github.com/openfga/python-sdk/compare/v0.9.0...v0.9.1) (2025-01-23)
8+
9+
- feat: add `/streamed-list-objects` endpoint support (#163)
10+
- feat: add `contextual_tuples` support for `/expand` endpoint requests (#164)
411

512
## v0.9.0
613

@@ -69,7 +76,7 @@ Please note that if you use third-party OpenTelemetry tooling to visualize the a
6976
### [0.7.0](https://github.com/openfga/python-sdk/compare/v0.6.1...v0.7.0) (2024-08-30)
7077

7178
- feat: enhancements to OpenTelemetry support (#120)
72-
79+
7380
Note this introduces some breaking changes to our metrics:
7481
1. `fga-client.request.method` is now in TitleCase to match the naming conventions in the Protos, e.g. `Check`, `ListObjects`, etc..
7582
2. Due to possible high costs for attributes with high cardinality, we are no longer including the following attributes by default:

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.0
1+
0.9.1

example/example1/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ attrs >= 23.1.0
44
frozenlist >= 1.4.1
55
idna >= 3.6
66
multidict >= 6.0.4
7-
openfga-sdk >= 0.9.0
7+
openfga-sdk >= 0.9.1
88
python-dateutil >= 2.8.2
99
urllib3 >= 2.1.0
1010
yarl >= 1.9.4

example/example1/setup.py

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

1515
NAME = "example1"
1616
VERSION = "0.0.1"
17-
REQUIRES = ["openfga-sdk >= 0.9.0"]
17+
REQUIRES = ["openfga-sdk >= 0.9.1"]
1818

1919
setup(
2020
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.0"
13+
__version__ = "0.9.1"
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
@@ -36,7 +36,7 @@
3636
from openfga_sdk.telemetry import Telemetry
3737
from openfga_sdk.telemetry.attributes import TelemetryAttribute, TelemetryAttributes
3838

39-
DEFAULT_USER_AGENT = "openfga-sdk python/0.9.0"
39+
DEFAULT_USER_AGENT = "openfga-sdk python/0.9.1"
4040

4141

4242
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
@@ -515,7 +515,7 @@ def to_debug_report(self):
515515
"OS: {env}\n"
516516
"Python Version: {pyversion}\n"
517517
"Version of the API: 1.x\n"
518-
"SDK Package Version: 0.9.0".format(env=sys.platform, pyversion=sys.version)
518+
"SDK Package Version: 0.9.1".format(env=sys.platform, pyversion=sys.version)
519519
)
520520

521521
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.0",
86+
"User-Agent": "openfga-sdk (python) 0.9.1",
8787
}
8888
)
8989

openfga_sdk/sync/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
from openfga_sdk.telemetry import Telemetry
3636
from openfga_sdk.telemetry.attributes import TelemetryAttribute, TelemetryAttributes
3737

38-
DEFAULT_USER_AGENT = "openfga-sdk python/0.9.0"
38+
DEFAULT_USER_AGENT = "openfga-sdk python/0.9.1"
3939

4040

4141
def random_time(loop_count, min_wait_in_ms):

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.0",
86+
"User-Agent": "openfga-sdk (python) 0.9.1",
8787
}
8888
)
8989

0 commit comments

Comments
 (0)