Skip to content

Commit 22df640

Browse files
Bump PollyVersion from 8.0.0-alpha.4 to 8.0.0-alpha.5 (#1381)
* Bump PollyVersion from 8.0.0-alpha.4 to 8.0.0-alpha.5 Bumps `PollyVersion` from 8.0.0-alpha.4 to 8.0.0-alpha.5. Updates `Polly` from 8.0.0-alpha.4 to 8.0.0-alpha.5 - [Release notes](https://github.com/App-vNext/Polly/releases) - [Changelog](https://github.com/App-vNext/Polly/blob/main/CHANGELOG.md) - [Commits](8.0.0-alpha.4...8.0.0-alpha.5) Updates `Polly.Core` from 8.0.0-alpha.4 to 8.0.0-alpha.5 - [Release notes](https://github.com/App-vNext/Polly/releases) - [Changelog](https://github.com/App-vNext/Polly/blob/main/CHANGELOG.md) - [Commits](8.0.0-alpha.4...8.0.0-alpha.5) Updates `Polly.Extensions` from 8.0.0-alpha.4 to 8.0.0-alpha.5 - [Release notes](https://github.com/App-vNext/Polly/releases) - [Changelog](https://github.com/App-vNext/Polly/blob/main/CHANGELOG.md) - [Commits](8.0.0-alpha.4...8.0.0-alpha.5) --- updated-dependencies: - dependency-name: Polly dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: Polly.Core dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: Polly.Extensions dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * Adopt alpha.5 --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Martin Tomka <[email protected]>
1 parent a806318 commit 22df640

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<MicrosoftExtensionsVersion>7.0.0</MicrosoftExtensionsVersion>
44
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
5-
<PollyVersion>8.0.0-alpha.4</PollyVersion>
5+
<PollyVersion>8.0.0-alpha.5</PollyVersion>
66
</PropertyGroup>
77
<ItemGroup>
88
<PackageVersion Include="coverlet.msbuild" Version="6.0.0" />

samples/Extensibility/Program.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,10 @@ protected override async ValueTask<Outcome<TResult>> ExecuteCoreAsync<TResult, T
9999
// ...
100100

101101
// You can then report important telemetry events
102-
telemetry.Report("MyCustomEvent", context, new OnCustomEventArguments(context));
102+
telemetry.Report(
103+
new ResilienceEvent(ResilienceEventSeverity.Information, "MyCustomEvent"),
104+
context,
105+
new OnCustomEventArguments(context));
103106

104107
// Call the delegate if provided by the user
105108
if (onCustomEvent is not null)

0 commit comments

Comments
 (0)