@azure/eventhubs-checkpointstore-blob 1.1.0-alpha.20220513.3 → 1.1.0-alpha.20220517.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/CHANGELOG.md +0 -62
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/eventhubs-checkpointstore-blob",
|
|
3
3
|
"sdk-type": "client",
|
|
4
|
-
"version": "1.1.0-alpha.
|
|
4
|
+
"version": "1.1.0-alpha.20220517.1",
|
|
5
5
|
"description": "An Azure Storage Blob solution to store checkpoints when using Event Hubs.",
|
|
6
6
|
"author": "Microsoft Corporation",
|
|
7
7
|
"license": "MIT",
|
package/CHANGELOG.md
DELETED
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
# Release History
|
|
2
|
-
|
|
3
|
-
## 1.1.0-beta.1 (Unreleased)
|
|
4
|
-
|
|
5
|
-
### Features Added
|
|
6
|
-
|
|
7
|
-
- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details.
|
|
8
|
-
- Updates all async methods on `BlobCheckpointStore` to accept
|
|
9
|
-
an optional `options` parameter that can be used to pass in an
|
|
10
|
-
`abortSignal` and `tracingOptions`.
|
|
11
|
-
Resolves issue [#9492](https://github.com/Azure/azure-sdk-for-js/issues/9492).
|
|
12
|
-
|
|
13
|
-
### Breaking Changes
|
|
14
|
-
|
|
15
|
-
### Key Bugs Fixed
|
|
16
|
-
|
|
17
|
-
- Fixed a bug where `ContainerClient` could not passed to `BlobCheckpointStore` if the `ContainerClient` was created by another version of `@azure/storage-blob`.
|
|
18
|
-
|
|
19
|
-
## 1.0.1 (2020-08-03)
|
|
20
|
-
|
|
21
|
-
- Fixes issue [#10132](https://github.com/Azure/azure-sdk-for-js/issues/10132)
|
|
22
|
-
where using an Azure Storage Account with soft-deletes or blob versioning enabled
|
|
23
|
-
would cause `listCheckpoints` to suffer performance penalties proportional to the
|
|
24
|
-
number of times `updateCheckpoint` was called.
|
|
25
|
-
|
|
26
|
-
## 1.0.0 (2020-01-09)
|
|
27
|
-
|
|
28
|
-
- This release marks the general availability of the `@azure/eventhubs-checkpointstore-blob` package.
|
|
29
|
-
- `claimOwnership()` will throw on underlying issues with storage, rather than
|
|
30
|
-
failing silently.
|
|
31
|
-
|
|
32
|
-
## 1.0.0-preview.5 (2019-12-03)
|
|
33
|
-
|
|
34
|
-
- Updated to use the latest version of the `@azure/event-hubs` package.
|
|
35
|
-
- Updated to use version 12.x.x of the `@azure/storage-blob` package.
|
|
36
|
-
|
|
37
|
-
Breaking changes:
|
|
38
|
-
|
|
39
|
-
- `BlobPartitionManager` has been renamed to `BlobCheckpointStore` to reflect naming changes
|
|
40
|
-
made in the `@azure/event-hubs` package.
|
|
41
|
-
- `BlobCheckpointStore` storage layout has changed and is incompatible with checkpoints and ownerships
|
|
42
|
-
serialized from previous previews.
|
|
43
|
-
- `updateCheckpoint` no longer returns an `Promise<string>` with an etag. It now returns `Promise<void>`.
|
|
44
|
-
- `Checkpoint` and `PartitionOwnership` have had redundant/overlapping fields removed.
|
|
45
|
-
|
|
46
|
-
## 1.0.0-preview.4 (2019-11-05)
|
|
47
|
-
|
|
48
|
-
- Updated to use the latest version of the `@azure/event-hubs` package and `@azure/storage-blob` packages.
|
|
49
|
-
|
|
50
|
-
## 1.0.0-preview.3 (2019-10-08)
|
|
51
|
-
|
|
52
|
-
- Updated to use the latest version of the `@azure/event-hubs` package.
|
|
53
|
-
|
|
54
|
-
## 1.0.0-preview.2 (2019-10-07)
|
|
55
|
-
|
|
56
|
-
- Current implementation of the Partition Manager takes the event hub name, consumer group name and partition id to ensure uniqueness for the checkpoint and ownership.
|
|
57
|
-
Since the same event hub name and consumer group name can exist in another namespace, we added `fullyQualifiedNamespace` as well to ensure uniqueness.
|
|
58
|
-
([PR #5153](https://github.com/Azure/azure-sdk-for-js/pull/5153))
|
|
59
|
-
|
|
60
|
-
## 1.0.0-preview.1 (2019-09-12)
|
|
61
|
-
|
|
62
|
-
This is the first preview of the `@azure/eventhubs-checkpointstore-blob` library which provides the implementation for the `PartitionManager` interface from the `@azure/event-hubs` library which is required to store checkpoints & aid in load balancing of multiple instances of an EventProcessor.
|