1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
# Release History
## 1.1.2 (Unreleased)
## 1.1.1 (2020-09-08)
**Bug fixes**
- Fixed a bug that may gradually slow down retrieving checkpoint data from the storage blob if the storage account "File share soft delete" is enabled. #12836
## 1.1.0 (2020-03-09)
**New features**
- Param `api_version` of `BlobCheckpointStore` now supports older versions of Azure Storage Service API.
## 1.0.0 (2020-01-13)
Stable release. No new features or API changes.
## 1.0.0b6 (2019-12-04)
**Breaking changes**
- Renamed `BlobPartitionManager` to `BlobCheckpointStore`.
- Constructor of `BlobCheckpointStore` has been updated to take the storage container details directly rather than an instance of `ContainerClient`.
- A `from_connection_string` constructor has been added for Blob Storage connection strings.
- Module `blobstoragepmaio` is now internal, all imports should be directly from `azure.eventhub.extensions.checkpointstoreblobaio`.
- `BlobCheckpointStore` now has a `close()` function for shutting down an HTTP connection pool, additionally the object can be used in a context manager to manage the connection.
## 1.0.0b5 (2019-11-04)
**New features**
- Added method `list_checkpoints` which list all the checkpoints under given eventhub namespace, eventhub name and consumer group.
## 1.0.0b4 (2019-10-09)
This release has trivial internal changes only. No feature changes.
## 1.0.0b1 (2019-09-10)
**New features**
- `BlobPartitionManager` that uses Azure Blob Storage Block Blob to store EventProcessor checkpoint data

|