Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Event Hubs Client] September Release Updates #14965

Merged
merged 1 commit into from
Sep 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions eng/Packages.Data.props
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
<PackageReference Update="Azure.Security.KeyVault.Secrets" Version="4.0.1" />
<PackageReference Update="Azure.Security.KeyVault.Certificates" Version="4.0.0" />
<PackageReference Update="Azure.Security.KeyVault.Keys" Version="4.0.1" />
<PackageReference Update="Azure.Messaging.EventHubs" Version="5.1.0" />
<PackageReference Update="Azure.Messaging.EventHubs.Processor" Version="5.0.1" />
<PackageReference Update="Azure.Storage.Blobs" Version="12.2.0" />
<PackageReference Update="Azure.Messaging.EventHubs" Version="5.2.0" />
<PackageReference Update="Azure.Messaging.EventHubs.Processor" Version="5.2.0" />
<PackageReference Update="Azure.Storage.Blobs" Version="12.6.0" />
<PackageReference Update="Azure.Storage.Blobs.Batch" Version="12.1.1" />
<PackageReference Update="Azure.Storage.Common" Version="12.1.1" />
<PackageReference Update="Azure.Storage.Files.Shares" Version="12.0.1" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Release History

## 5.2.0-preview.4 (Unreleased)
## 5.3.0-beta.1 (Unreleased)
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The use of "beta" over "preview" was confirmed this morning.


## 5.2.0 (2020-09-08)

### Acknowledgments

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Azure Event Hubs is a highly scalable publish-subscribe service that can ingest millions of events per second and stream them to multiple consumers. This library extends its Event Processor with durable storage for checkpoint information using Azure Blob storage. For more information about Event Hubs, see https://azure.microsoft.com/en-us/services/event-hubs/</Description>
<Version>5.2.0-preview.4</Version>
<ApiCompatVersion>5.1.0</ApiCompatVersion>
<Version>5.3.0-beta.1</Version>
<ApiCompatVersion>5.2.0</ApiCompatVersion>
<PackageTags>Azure;Event Hubs;EventHubs;.NET;Event Processor;EventProcessor;$(PackageCommonTags)</PackageTags>
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
</PropertyGroup>
Expand All @@ -12,7 +12,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Azure.Messaging.EventHubs" VersionOverride="5.2.0-preview.3" /> <!--Version override exists to bind to the preview; this will be removed when v5.2.0 is released for GA -->
<PackageReference Include="Azure.Messaging.EventHubs" />
<PackageReference Include="Azure.Storage.Blobs" />
<PackageReference Include="Microsoft.Azure.Amqp" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" />
Expand Down
4 changes: 3 additions & 1 deletion sdk/eventhub/Azure.Messaging.EventHubs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Release History

## 5.2.0-preview.4 (Unreleased)
## 5.3.0-beta.1 (Unreleased)

## 5.2.0 (2020-09-08)

### Acknowledgments

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Azure Event Hubs is a highly scalable publish-subscribe service that can ingest millions of events per second and stream them to multiple consumers. This client library allows for both publishing and consuming events using Azure Event Hubs. For more information about Event Hubs, see https://azure.microsoft.com/en-us/services/event-hubs/</Description>
<Version>5.2.0-preview.4</Version>
<ApiCompatVersion>5.1.0</ApiCompatVersion>
<Version>5.3.0-beta.1</Version>
<ApiCompatVersion>5.2.0</ApiCompatVersion>
<PackageTags>Azure;Event Hubs;EventHubs;.NET;AMQP;IoT;$(PackageCommonTags)</PackageTags>
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
</PropertyGroup>
Expand Down