Skip to content

Commit

Permalink
Bump SonarAnalyzer.CSharp from 9.11.0.78383 to 9.12.0.78982 (#1690)
Browse files Browse the repository at this point in the history
Bumps [SonarAnalyzer.CSharp](https://github.com/SonarSource/sonar-dotnet) from 9.11.0.78383 to 9.12.0.78982.
- [Release notes](https://github.com/SonarSource/sonar-dotnet/releases)
- [Commits](SonarSource/sonar-dotnet@9.11.0.78383...9.12.0.78982)

---
updated-dependencies:
- dependency-name: SonarAnalyzer.CSharp
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Oct 13, 2023
1 parent e68645d commit a3293f7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<PackageVersion Include="Polly.Testing" Version="$(PollyVersion)" />
<PackageVersion Include="Polly.Contrib.WaitAndRetry" Version="1.1.1" />
<PackageVersion Include="ReportGenerator" Version="5.1.26" />
<PackageVersion Include="SonarAnalyzer.CSharp" Version="9.11.0.78383" />
<PackageVersion Include="SonarAnalyzer.CSharp" Version="9.12.0.78982" />
<PackageVersion Include="StyleCop.Analyzers" Version="1.2.0-beta.507" />
<PackageVersion Include="System.ComponentModel.Annotations" Version="4.5.0" />
<PackageVersion Include="System.Diagnostics.DiagnosticSource" Version="$(MicrosoftExtensionsVersion)" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public static ResiliencePipelineBuilder<TResult> AddChaosResult<TResult>(this Re
{
Enabled = enabled,
InjectionRate = injectionRate,
Outcome = new(result)
Outcome = new Outcome<TResult>(result)
});
return builder;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class OutcomeChaosPipelineBuilderExtensionsTests
InjectionRate = 0.6,
Enabled = true,
Randomizer = () => 0.5,
Outcome = new(100)
Outcome = new Outcome<int>(100)
});
AssertResultStrategy(builder, true, 0.6, new(100))
Expand All @@ -28,7 +28,7 @@ public class OutcomeChaosPipelineBuilderExtensionsTests
{
builder =>
{
builder.AddChaosFault<string>(new FaultStrategyOptions
builder.AddChaosFault(new FaultStrategyOptions
{
InjectionRate = 0.6,
Enabled = true,
Expand Down

0 comments on commit a3293f7

Please sign in to comment.