Skip to content

Commit 0eea433

Browse files
committed
update dependencies
1 parent 008d0f8 commit 0eea433

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
### Changed
1515

16-
- Bump _System.Text.Json_ from 8.0.5 to 9.0.0 (netstandard2.0) (concerns _Aqua.Text.Json_)
16+
- Bump _System.Text.Json_ from 8.0.5 to 9.0.2 (netstandard2.0) (concerns _Aqua.Text.Json_)
17+
- Bump _protobuf-net_ from 2.4.8 to 2.4.9 (concerns _Aqua.protobuf-net_)
1718
- Type resolution prioritize publicly visible types in case of multiple matching candidates [#36][issue#36]
1819
- Declare members of `DynamicObject`, `PropertySet`, and `Property` virtual
1920

Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@
6161
</PropertyGroup>
6262

6363
<ItemGroup>
64-
<PackageReference Include="aqua.tool.Validation" Version="3.2.0">
64+
<PackageReference Include="aqua.tool.Validation" Version="3.2.1">
6565
<PrivateAssets>all</PrivateAssets>
6666
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
6767
</PackageReference>
6868
</ItemGroup>
6969

7070
<ItemGroup>
7171
<AdditionalFiles Include="$(MSBuildThisFileDirectory)Stylecop.json" Visible="false" />
72-
<PackageReference Include="SonarAnalyzer.CSharp" Version="10.4.0.108396" Condition=" '$(EnableSonarAnalyzers)' == 'true' ">
72+
<PackageReference Include="SonarAnalyzer.CSharp" Version="10.7.0.110445" Condition=" '$(EnableSonarAnalyzers)' == 'true' ">
7373
<PrivateAssets>all</PrivateAssets>
7474
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
7575
</PackageReference>

src/Aqua.Text.Json/Aqua.Text.Json.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</ItemGroup>
1515

1616
<ItemGroup Condition=" '$(TargetFramework)' == 'netStandard2.0' ">
17-
<PackageReference Include="System.Text.Json" Version="9.0.0" />
17+
<PackageReference Include="System.Text.Json" Version="9.0.2" />
1818
</ItemGroup>
1919

2020
</Project>

src/Aqua.protobuf-net/Aqua.protobuf-net.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
serialization of the value property of type System.Object. While supported in v2, this cannot be done in v3
1919
and no workaround has been found yet. Contributions are welcome ;)
2020
-->
21-
<PackageReference Include="protobuf-net" Version="2.4.8" />
21+
<PackageReference Include="protobuf-net" Version="2.4.9" />
2222

2323
<!--
2424
NOTE: System.Text.RegularExpressions 4.3.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-cmhx-cq75-c4mj

test/Directory.Build.props

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup Condition=" $(MSBuildProjectName.EndsWith('.Tests')) ">
14-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" PrivateAssets="all" />
15-
<PackageReference Include="xunit" Version="2.9.2" PrivateAssets="all" />
16-
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.1-pre.2" PrivateAssets="all" />
14+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" PrivateAssets="all" />
15+
<PackageReference Include="xunit" Version="2.9.3" PrivateAssets="all" />
16+
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2" PrivateAssets="all" />
1717
<PackageReference Include="Xunit.SkippableFact" Version="1.5.23" PrivateAssets="all" />
18-
<PackageReference Include="Shouldly" Version="4.2.1" PrivateAssets="all" />
18+
<PackageReference Include="Shouldly" Version="4.3.0" PrivateAssets="all" />
1919
</ItemGroup>
2020

2121
</Project>

0 commit comments

Comments
 (0)