Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,7 @@ public void Set(string key, string? value)
ArgumentNullException.ThrowIfNull(key);

LogSet(GetType().Name, key, value);

#pragma warning disable S1121 // Assignments should not be made from within sub-expressions
// Justification: Workaround for Sonar bug https://github.com/SonarSource/sonar-dotnet/issues/9761.
ConfigurationRoot?[key] = value;
#pragma warning restore S1121 // Assignments should not be made from within sub-expressions
}

public void Dispose()
Expand Down
2 changes: 2 additions & 0 deletions src/Connectors/src/Connectors/PublicAPI.Unshipped.txt
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
#nullable enable
*REMOVED*virtual Steeltoe.Connectors.ConnectorCreateConnection.Invoke(System.IServiceProvider! serviceProvider, string! serviceBindingName) -> object!
*REMOVED*virtual Steeltoe.Connectors.ConnectorCreateHealthContributor.Invoke(System.IServiceProvider! serviceProvider, string! serviceBindingName) -> Steeltoe.Common.HealthChecks.IHealthContributor!
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@
<PropertyGroup>
<NoWarn>
<!--
Temporary workaround: Stable EF Core 10 packages for Npgsql.EntityFrameworkCore.PostgreSQL and
Pomelo.EntityFrameworkCore.MySql are not available yet.

Temporary workaround: Unstable EF Core 10 package for Pomelo.EntityFrameworkCore.MySql is not available yet.
NU1608: Detected package version outside of dependency constraint
-->
$(NoWarn);NU1608
Expand Down
1 change: 1 addition & 0 deletions src/Logging/src/Abstractions/PublicAPI.Unshipped.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
#nullable enable
*REMOVED*virtual Steeltoe.Logging.LoggerFilter.Invoke(Microsoft.Extensions.Logging.LogLevel level) -> bool
16 changes: 8 additions & 8 deletions versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@
<AspNetCoreHealthChecksVersion>9.0.*</AspNetCoreHealthChecksVersion>
<CoverletVersion>6.0.*</CoverletVersion>
<FluentAssertionsVersion>7.2.*</FluentAssertionsVersion>
<MicrosoftAzureCosmosVersion>3.54.*</MicrosoftAzureCosmosVersion>
<MicrosoftCodeAnalysisVersion>4.14.*</MicrosoftCodeAnalysisVersion>
<MicrosoftAzureCosmosVersion>3.57.*</MicrosoftAzureCosmosVersion>
<MicrosoftCodeAnalysisVersion>5.0.*</MicrosoftCodeAnalysisVersion>
<MicrosoftSqlClientVersion>6.1.*</MicrosoftSqlClientVersion>
<MockHttpVersion>7.0.*</MockHttpVersion>
<MongoDbDriverVersion>3.5.*</MongoDbDriverVersion>
<MongoDbDriverVersion>3.6.*</MongoDbDriverVersion>
<MoqVersion>4.20.69</MoqVersion>
<MySqlConnectorVersion>2.5.*</MySqlConnectorVersion>
<MySqlDataVersion>9.5.*</MySqlDataVersion>
<MySqlDataVersion>9.6.*</MySqlDataVersion>
<NewtonsoftJsonVersion>13.0.*</NewtonsoftJsonVersion>
<PublicApiAnalyzersVersion>4.14.*</PublicApiAnalyzersVersion>
<PublicApiAnalyzersVersion>3.3.*</PublicApiAnalyzersVersion>
<RabbitClientTestVersion>7.2.*</RabbitClientTestVersion>
<SerilogEnrichersThreadVersion>4.0.*</SerilogEnrichersThreadVersion>
<SerilogExceptionsVersion>8.4.*</SerilogExceptionsVersion>
<SonarAnalyzerVersion>10.15.0.120848</SonarAnalyzerVersion>
<SonarAnalyzerVersion>10.18.0.131500</SonarAnalyzerVersion>
<StyleCopVersion>1.2.0-beta.556</StyleCopVersion>
<SystemCommandLineVersion>2.0.*</SystemCommandLineVersion>
<SystemIdentityModelVersion>8.14.*</SystemIdentityModelVersion>
<SystemIdentityModelVersion>8.15.*</SystemIdentityModelVersion>
<SystemSqlClientVersion>4.9.*</SystemSqlClientVersion>
<TestSdkVersion>18.0.*</TestSdkVersion>
<XunitVersion>3.2.*</XunitVersion>
Expand All @@ -42,7 +42,7 @@
</PropertyGroup>

<PropertyGroup Condition="'$(TargetFramework)' == 'net10.0'">
<EntityFrameworkCoreTestVersion>10.0.*-*</EntityFrameworkCoreTestVersion>
<EntityFrameworkCoreTestVersion>10.0.*</EntityFrameworkCoreTestVersion>
<PomeloEntityFrameworkCoreTestVersion>
<!-- Temporary workaround: Unstable EF Core 10 package for Pomelo.EntityFrameworkCore.MySql is not available yet. -->
9.0.*
Expand Down