Skip to content

Commit 189e54f

Browse files
authored
Merge branch 'dev' into copilot/fix-http-utils-client-session
2 parents 6312e23 + fd9d26b commit 189e54f

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

azure/durable_functions/models/DurableOrchestrationContext.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,8 +246,10 @@ def call_http(self, method: str, uri: str, content: Optional[str] = None,
246246
The HTTP request method.
247247
uri: str
248248
The HTTP request uri.
249-
content: Optional[str]
250-
The HTTP request content.
249+
content: str or dict, optional
250+
The HTTP request content. Can be a string or a JSON-serializable dictionary.
251+
Note: Although the type hint says 'str', a dictionary is accepted
252+
and will be serialized to JSON.
251253
headers: Optional[Dict[str, str]]
252254
The HTTP request headers.
253255
token_source: TokenSource

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pytest==7.1.2
44
python-dateutil==2.8.0
55
requests==2.32.4
66
jsonschema==4.25.1
7-
aiohttp==3.12.14
7+
aiohttp==3.13.3
88
azure-functions>=1.11.3b3
99
nox==2019.11.9
1010
furl==2.1.0

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def run(self, *args, **kwargs):
5555
python_requires='>=3.9,<4',
5656
install_requires=[
5757
'azure-functions>=1.12.0',
58-
'aiohttp>=3.12.14',
58+
'aiohttp>=3.13.3',
5959
'requests==2.*',
6060
'python-dateutil>=2.8.0',
6161
'furl>=2.1.0',
@@ -69,7 +69,6 @@ def run(self, *args, **kwargs):
6969
'python-dateutil==2.8.0',
7070
'requests==2.22.0',
7171
'jsonschema==4.25.1',
72-
'aiohttp==3.6.2',
7372
'azure-functions>=1.2.0',
7473
'nox==2019.11.9',
7574
'furl==2.1.0',

0 commit comments

Comments
 (0)