Skip to content

Commit 275a8d9

Browse files
committed
Package updates
1 parent 98c6e55 commit 275a8d9

File tree

6 files changed

+12
-18
lines changed

6 files changed

+12
-18
lines changed

src/Configuration/src/Abstractions/CompositeConfigurationProvider.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,7 @@ public void Set(string key, string? value)
9696
ArgumentNullException.ThrowIfNull(key);
9797

9898
LogSet(GetType().Name, key, value);
99-
100-
#pragma warning disable S1121 // Assignments should not be made from within sub-expressions
101-
// Justification: Workaround for Sonar bug https://github.com/SonarSource/sonar-dotnet/issues/9761.
10299
ConfigurationRoot?[key] = value;
103-
#pragma warning restore S1121 // Assignments should not be made from within sub-expressions
104100
}
105101

106102
public void Dispose()
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
#nullable enable
2+
*REMOVED*virtual Steeltoe.Connectors.ConnectorCreateConnection.Invoke(System.IServiceProvider! serviceProvider, string! serviceBindingName) -> object!
3+
*REMOVED*virtual Steeltoe.Connectors.ConnectorCreateHealthContributor.Invoke(System.IServiceProvider! serviceProvider, string! serviceBindingName) -> Steeltoe.Common.HealthChecks.IHealthContributor!

src/Connectors/test/EntityFrameworkCore.Test/Steeltoe.Connectors.EntityFrameworkCore.Test.csproj

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88
<PropertyGroup>
99
<NoWarn>
1010
<!--
11-
Temporary workaround: Stable EF Core 10 packages for Npgsql.EntityFrameworkCore.PostgreSQL and
12-
Pomelo.EntityFrameworkCore.MySql are not available yet.
13-
11+
Temporary workaround: Unstable EF Core 10 package for Pomelo.EntityFrameworkCore.MySql is not available yet.
1412
NU1608: Detected package version outside of dependency constraint
1513
-->
1614
$(NoWarn);NU1608

src/Discovery/src/Eureka/Configuration/EurekaInstanceOptions.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
using Steeltoe.Common;
1010
using Steeltoe.Discovery.Eureka.AppInfo;
1111

12-
// Workaround for Sonar bug, which incorrectly flags boolean expression as redundant.
13-
#pragma warning disable S2589 // Boolean expressions should not be gratuitous
14-
1512
namespace Steeltoe.Discovery.Eureka.Configuration;
1613

1714
public sealed class EurekaInstanceOptions
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
#nullable enable
2+
*REMOVED*virtual Steeltoe.Logging.LoggerFilter.Invoke(Microsoft.Extensions.Logging.LogLevel level) -> bool

versions.props

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,23 @@
88
<AspNetCoreHealthChecksVersion>9.0.*</AspNetCoreHealthChecksVersion>
99
<CoverletVersion>6.0.*</CoverletVersion>
1010
<FluentAssertionsVersion>7.2.*</FluentAssertionsVersion>
11-
<MicrosoftAzureCosmosVersion>3.54.*</MicrosoftAzureCosmosVersion>
12-
<MicrosoftCodeAnalysisVersion>4.14.*</MicrosoftCodeAnalysisVersion>
11+
<MicrosoftAzureCosmosVersion>3.57.*</MicrosoftAzureCosmosVersion>
12+
<MicrosoftCodeAnalysisVersion>5.0.*</MicrosoftCodeAnalysisVersion>
1313
<MicrosoftSqlClientVersion>6.1.*</MicrosoftSqlClientVersion>
1414
<MockHttpVersion>7.0.*</MockHttpVersion>
15-
<MongoDbDriverVersion>3.5.*</MongoDbDriverVersion>
15+
<MongoDbDriverVersion>3.6.*</MongoDbDriverVersion>
1616
<MoqVersion>4.20.69</MoqVersion>
1717
<MySqlConnectorVersion>2.5.*</MySqlConnectorVersion>
18-
<MySqlDataVersion>9.5.*</MySqlDataVersion>
18+
<MySqlDataVersion>9.6.*</MySqlDataVersion>
1919
<NewtonsoftJsonVersion>13.0.*</NewtonsoftJsonVersion>
20-
<PublicApiAnalyzersVersion>4.14.*</PublicApiAnalyzersVersion>
20+
<PublicApiAnalyzersVersion>3.3.*</PublicApiAnalyzersVersion>
2121
<RabbitClientTestVersion>7.2.*</RabbitClientTestVersion>
2222
<SerilogEnrichersThreadVersion>4.0.*</SerilogEnrichersThreadVersion>
2323
<SerilogExceptionsVersion>8.4.*</SerilogExceptionsVersion>
24-
<SonarAnalyzerVersion>10.15.0.120848</SonarAnalyzerVersion>
24+
<SonarAnalyzerVersion>10.18.0.131500</SonarAnalyzerVersion>
2525
<StyleCopVersion>1.2.0-beta.556</StyleCopVersion>
2626
<SystemCommandLineVersion>2.0.*</SystemCommandLineVersion>
27-
<SystemIdentityModelVersion>8.14.*</SystemIdentityModelVersion>
27+
<SystemIdentityModelVersion>8.15.*</SystemIdentityModelVersion>
2828
<SystemSqlClientVersion>4.9.*</SystemSqlClientVersion>
2929
<TestSdkVersion>18.0.*</TestSdkVersion>
3030
<XunitVersion>3.2.*</XunitVersion>
@@ -42,7 +42,7 @@
4242
</PropertyGroup>
4343

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

0 commit comments

Comments
 (0)