Skip to content

Commit

Permalink
Update reference packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
yang-xiaodong committed Dec 22, 2023
1 parent 13a41d0 commit 8b6acaf
Show file tree
Hide file tree
Showing 10 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/DotNetCore.CAP.AmazonSQS/AmazonSQSConsumerClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public void Commit(object? sender)
{
_ = _sqsClient!.DeleteMessageAsync(_queueUrl, (string)sender!).GetAwaiter().GetResult();
}
catch (InvalidIdFormatException ex)
catch (ReceiptHandleIsInvalidException ex)
{
InvalidIdFormatLog(ex.Message);
}
Expand Down
4 changes: 2 additions & 2 deletions src/DotNetCore.CAP.AmazonSQS/DotNetCore.CAP.AmazonSQS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AWSSDK.SimpleNotificationService" Version="3.7.101.82" />
<PackageReference Include="AWSSDK.SQS" Version="3.7.103.4" />
<PackageReference Include="AWSSDK.SimpleNotificationService" Version="3.7.300.24" />
<PackageReference Include="AWSSDK.SQS" Version="3.7.300.24" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="KubernetesClient" Version="11.0.21" />
<PackageReference Include="KubernetesClient" Version="12.1.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DotNetCore.CAP.Dashboard\DotNetCore.CAP.Dashboard.csproj" />
Expand Down
1 change: 1 addition & 0 deletions src/DotNetCore.CAP.Dashboard/CAP.DashboardOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ public class DashboardOptions
{
public DashboardOptions()
{
PathBase = string.Empty;
PathMatch = "/cap";
StatsPollingInterval = 2000;
AllowAnonymousExplicit = true;
Expand Down
2 changes: 1 addition & 1 deletion src/DotNetCore.CAP.Kafka/DotNetCore.CAP.Kafka.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Confluent.Kafka" Version="2.1.1" />
<PackageReference Include="Confluent.Kafka" Version="2.3.0" />
</ItemGroup>

<ItemGroup>
Expand Down
1 change: 0 additions & 1 deletion src/DotNetCore.CAP.MongoDB/DotNetCore.CAP.MongoDB.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="MongoDB.Bson" Version="2.19.2" />
<PackageReference Include="MongoDB.Driver" Version="2.19.2" />
</ItemGroup>

Expand Down
1 change: 0 additions & 1 deletion src/DotNetCore.CAP.MySql/DotNetCore.CAP.MySql.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.0" />
<PackageReference Include="MySqlConnector" Version="2.3.1" />
<ProjectReference Include="..\DotNetCore.CAP\DotNetCore.CAP.csproj" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="OpenTelemetry" Version="1.5.0" />
<PackageReference Include="OpenTelemetry" Version="1.7.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.0" />
<PackageReference Include="Npgsql" Version="7.0.4" />
<ProjectReference Include="..\DotNetCore.CAP\DotNetCore.CAP.csproj" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.0" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.1.1" />
<ProjectReference Include="..\DotNetCore.CAP\DotNetCore.CAP.csproj" />
Expand Down

0 comments on commit 8b6acaf

Please sign in to comment.