Skip to content

Commit

Permalink
[EH Pyproto] Release updates (Azure#23349)
Browse files Browse the repository at this point in the history
* update docs

* add todo
  • Loading branch information
yunhaoling authored and kashifkhan committed May 10, 2022
1 parent 82ca837 commit 3d7227b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 13 deletions.
13 changes: 2 additions & 11 deletions sdk/eventhub/azure-eventhub/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,11 @@
# Release History

## 5.8.0b3 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed
## 5.8.0a3 (2022-03-08)

### Other Changes

## 0.2.0a1 (unreleased)

- Swapped out Proton dependency for uAMQP.
- Improved the performance of async sending and receiving.

![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python/sdk/eventhub/azure-eventhub/HISTORY.png)
## 5.8.0a2 (2022-02-09)

### Features Added
Expand Down
2 changes: 1 addition & 1 deletion sdk/eventhub/azure-eventhub/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ There, you can also find detailed instructions for using the Azure CLI, Azure Po
Install the Azure Event Hubs client library for Python with pip:

```
$ pip install azure-eventhub --pre
$ pip install azure-eventhub==5.8.0a3
```

### Authenticate the client
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,7 @@ async def listen(self, wait=False, batch=1, **kwargs):
return
for _ in range(batch):
if await asyncio.ensure_future(self._listen_one_frame(**kwargs)):
# TODO: compare the perf difference between ensure_future and direct await
break
except (OSError, IOError, SSLError, socket.error) as exc:
self._error = AMQPConnectionError(
Expand Down
2 changes: 1 addition & 1 deletion sdk/eventhub/azure-eventhub/samples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ There, you can also find detailed instructions for using the Azure CLI, Azure Po

1. Install the Azure Event Hubs client library for Python with [pip](https://pypi.org/project/pip/):
```bash
pip install azure-eventhub
pip install azure-eventhub==5.8.0a3
```

To run samples that utilize the Azure Active Directory for authentication, please install the `azure-identity` library:
Expand Down

0 comments on commit 3d7227b

Please sign in to comment.