Skip to content

Commit cf1e8bd

Browse files
authored
[EventHub] prep release 5.15.0 (#40530)
* update release date + bump aiohttp * bump dev reqs aiohttp version
1 parent 6b6a8c0 commit cf1e8bd

File tree

6 files changed

+5
-13
lines changed

6 files changed

+5
-13
lines changed

sdk/eventhub/azure-eventhub-checkpointstoreblob-aio/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
### Other Changes
66

77
- Updated type annotations in `BlobCheckpointStore`.
8-
- Bumped `aiohttp` min dependency version to 3.10.10.
8+
- Bumped `aiohttp` min dependency version to 3.11.0.
99

1010
## 1.2.0 (2025-02-13)
1111

sdk/eventhub/azure-eventhub-checkpointstoreblob-aio/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,6 @@
8080
"isodate>=0.6.1",
8181
# end of dependencies for the vendored storage blob
8282
'azure-eventhub>=5.0.0',
83-
'aiohttp>=3.10.10',
83+
'aiohttp>=3.11.0',
8484
]
8585
)

sdk/eventhub/azure-eventhub/CHANGELOG.md

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

3-
## 5.15.0 (2025-04-09)
3+
## 5.15.0 (2025-04-15)
44

55
### Features Added
66

@@ -10,7 +10,7 @@
1010
### Bugs Fixed
1111

1212
- Fixed a bug where service errors were incorrectly required and expected to have info/description fields.
13-
- Fixed a bug so that the BufferedProducer ThreadPoolExecutor uses one worker is used per partition. ([#38961](https://github.com/Azure/azure-sdk-for-python/issues/38961))
13+
- Fixed a bug so that the BufferedProducer ThreadPoolExecutor uses one worker per partition. ([#38961](https://github.com/Azure/azure-sdk-for-python/issues/38961))
1414

1515
### Other Changes
1616

sdk/eventhub/azure-eventhub/dev_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
azure-identity~=1.17.0
44
azure-mgmt-eventhub<=10.1.0
55
azure-mgmt-resource==20.0.0
6-
aiohttp>=3.10.10
6+
aiohttp>=3.11.0
77
websocket-client
88
../azure-eventhub-checkpointstoreblob-aio
99
../azure-eventhub-checkpointstoreblob

sdk/eventhub/azure-eventhub/tests/pyamqp_tests/asynctests/test_websocket_async.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,6 @@ async def send_message(live_eventhub):
3333

3434

3535
@pytest.mark.asyncio
36-
@pytest.mark.skipif(
37-
not pytest.importorskip("aiohttp", reason="aiohttp is required for this test"),
38-
reason="aiohttp is not installed"
39-
)
4036
async def test_event_hubs_client_web_socket_async(live_eventhub):
4137
uri = "sb://{}/{}".format(live_eventhub["hostname"], live_eventhub["event_hub"])
4238
sas_auth = _authentication_async.SASTokenAuthAsync(

sdk/eventhub/azure-eventhub/tests/pyamqp_tests/unittest/asynctests/test_websocket_exception_async.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@
77

88
# class WebsocketException(unittest.TestCase):
99
@pytest.mark.asyncio
10-
@pytest.mark.skipif(
11-
sys.version_info < (3, 9),
12-
reason="Python 3.8 or less is not supported for this test"
13-
)
1410
async def test_websocket_aiohttp_exception_async():
1511
import aiohttp
1612
with patch.object(aiohttp.ClientSession, "ws_connect", side_effect=aiohttp.ClientOSError):

0 commit comments

Comments
 (0)