Skip to content

Commit 7d3876a

Browse files
committed
Update most dependencies
Except for xUnit.net and Microsoft.Testing.Platform related packages
1 parent 5bb65ff commit 7d3876a

8 files changed

Lines changed: 73 additions & 73 deletions

File tree

samples/MongoDbSample/MongoDbSample.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
<ItemGroup>
1111
<PackageReference Include="Chisel" Version="1.1.2" PrivateAssets="all" />
12-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.9" />
12+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.0" />
1313
<PackageReference Include="MongoDB.Driver" Version="[2.30.0,3.0.0)" />
14-
<PackageReference Include="Testcontainers.MongoDb" Version="4.7.0" />
14+
<PackageReference Include="Testcontainers.MongoDb" Version="4.8.1" />
1515
</ItemGroup>
1616

1717
<PropertyGroup>

samples/SqlClientSample/SqlClientSample.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
<Nullable>enable</Nullable>
1010
<UseCurrentRuntimeIdentifier>true</UseCurrentRuntimeIdentifier>
1111
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
12-
<MicrosoftDataSqlClientVersion>6.1.1</MicrosoftDataSqlClientVersion>
12+
<MicrosoftDataSqlClientVersion>6.1.3</MicrosoftDataSqlClientVersion>
1313
</PropertyGroup>
1414

1515
<ItemGroup>
1616
<PackageReference Include="Chisel" Version="1.1.2" PrivateAssets="all" />
1717
<PackageReference Include="Microsoft.Data.SqlClient" Version="$(MicrosoftDataSqlClientVersion)" />
18-
<PackageReference Include="System.Memory.Data" Version="9.0.9" />
18+
<PackageReference Include="System.Memory.Data" Version="10.0.0" />
1919
</ItemGroup>
2020

2121
<ItemGroup Condition="$([MSBuild]::VersionLessThan('$(MicrosoftDataSqlClientVersion)', '6.0'))">

src/Chisel/Chisel.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
</ItemGroup>
7373

7474
<ItemGroup>
75-
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="17.14.8" PrivateAssets="all" ExcludeAssets="runtime" />
75+
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="17.14.28" PrivateAssets="all" ExcludeAssets="runtime" />
7676
<PackageReference Include="MinVer" Version="6.0.0" PrivateAssets="all" />
7777
<PackageReference Include="NuGet.ProjectModel" Version="6.11.1" PrivateAssets="all" />
7878
<PackageReference Include="PolySharp" Version="1.15.0" PrivateAssets="all" />

src/Chisel/packages.lock.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
".NETStandard,Version=v2.0": {
55
"Microsoft.Build.Utilities.Core": {
66
"type": "Direct",
7-
"requested": "[17.14.8, )",
8-
"resolved": "17.14.8",
9-
"contentHash": "y9YkXfwoSduSYMSpf8wbIhn7XGmO+pNG5p4lqDSjGLxQ7KBHcnlvsfz+W3Hsp82abHFk3xCLPLImMZ9wUnWQCw==",
7+
"requested": "[17.14.28, )",
8+
"resolved": "17.14.28",
9+
"contentHash": "rhSdPo8QfLXXWM+rY0x0z1G4KK4ZhMoIbHROyDj8MUBFab9nvHR0NaMnjzOgXldhmD2zi2ir8d6xCatNzlhF5g==",
1010
"dependencies": {
11-
"Microsoft.Build.Framework": "17.14.8",
12-
"Microsoft.NET.StringTools": "17.14.8",
11+
"Microsoft.Build.Framework": "17.14.28",
12+
"Microsoft.NET.StringTools": "17.14.28",
1313
"Microsoft.Win32.Registry": "5.0.0",
1414
"System.Collections.Immutable": "9.0.0",
1515
"System.Configuration.ConfigurationManager": "9.0.0",
@@ -61,8 +61,8 @@
6161
},
6262
"Microsoft.Build.Framework": {
6363
"type": "Transitive",
64-
"resolved": "17.14.8",
65-
"contentHash": "hwpXdyiD8phuIRtYK4fcPrSKRXn6MHI37IkbvAM2D50OnPRbmKGPwtrXi/vYQ7+VQbMzmw1zaKp+rsroBwNGtg==",
64+
"resolved": "17.14.28",
65+
"contentHash": "wRcyTzGV0LRAtFdrddtioh59Ky4/zbvyraP0cQkDzRSRkhgAQb0K88D/JNC6VHLIXanRi3mtV1jU0uQkBwmiVg==",
6666
"dependencies": {
6767
"Microsoft.Win32.Registry": "5.0.0",
6868
"System.Diagnostics.DiagnosticSource": "9.0.0",
@@ -73,8 +73,8 @@
7373
},
7474
"Microsoft.NET.StringTools": {
7575
"type": "Transitive",
76-
"resolved": "17.14.8",
77-
"contentHash": "j85iHjtDLnqVSLCv2Rfee9WI6NzcQX9fqVjnuIgiSeQSTm5MFwBaeNL/rwil4RUaHUF9GXtfxvSEg6jYF6cxCw==",
76+
"resolved": "17.14.28",
77+
"contentHash": "DMIeWDlxe0Wz0DIhJZ2FMoGQAN2yrGZOi5jjFhRYHWR5ONd0CS6IpAHlRnA7uA/5BF+BADvgsETxW2XrPiFc1A==",
7878
"dependencies": {
7979
"System.Memory": "4.6.0",
8080
"System.Runtime.CompilerServices.Unsafe": "6.1.0"

tests/Chisel.Tests/Chisel.Tests.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="AwesomeAssertions" Version="9.2.0" />
11+
<PackageReference Include="AwesomeAssertions" Version="9.3.0" />
1212
<PackageReference Include="CliWrap" Version="3.9.0" />
1313
<PackageReference Include="Microsoft.Testing.Extensions.TrxReport" Version="1.9.0" />
14-
<PackageReference Include="NuGet.ProjectModel" Version="6.14.0" />
15-
<PackageReference Include="PublicApiGenerator" Version="11.4.6" />
16-
<PackageReference Include="System.Text.Json" Version="9.0.9" />
14+
<PackageReference Include="NuGet.ProjectModel" Version="7.0.0" />
15+
<PackageReference Include="PublicApiGenerator" Version="11.5.0" />
16+
<PackageReference Include="System.Text.Json" Version="10.0.0" />
1717
<PackageReference Include="Verify.XunitV3" Version="30.19.2" />
1818
<PackageReference Include="xunit.v3" Version="3.1.0" />
1919
<PackageReference Include="Xunit.Combinatorial" Version="2.0.24" />

tests/Chisel.Tests/ChiseledAppTests.RunTestApp_non-windows.verified.mermaid

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,24 @@ Azure.Core/1.47.1 --> System.Memory.Data/8.0.1
1212
Azure.Identity/1.14.2 --> Azure.Core/1.47.1
1313
Azure.Identity/1.14.2 --> Microsoft.Identity.Client/4.73.1
1414
Azure.Identity/1.14.2 --> Microsoft.Identity.Client.Extensions.Msal/4.73.1
15-
Microsoft.Data.SqlClient/6.1.1{{Microsoft.Data.SqlClient/6.1.1}} --> Azure.Core/1.47.1
16-
Microsoft.Data.SqlClient/6.1.1 --> Azure.Identity/1.14.2
17-
Microsoft.Data.SqlClient/6.1.1 --> Microsoft.Bcl.Cryptography/8.0.0
18-
Microsoft.Data.SqlClient/6.1.1 --> Microsoft.Extensions.Caching.Memory/8.0.1
19-
Microsoft.Data.SqlClient/6.1.1 --> Microsoft.IdentityModel.JsonWebTokens/7.7.1
20-
Microsoft.Data.SqlClient/6.1.1 --> Microsoft.IdentityModel.Protocols.OpenIdConnect/7.7.1
21-
Microsoft.Data.SqlClient/6.1.1 --> Microsoft.SqlServer.Server/1.0.0
22-
Microsoft.Data.SqlClient/6.1.1 --> System.Configuration.ConfigurationManager/8.0.1
23-
Microsoft.Data.SqlClient/6.1.1 --> System.Security.Cryptography.Pkcs/8.0.1
24-
Microsoft.Data.SqlClient/6.1.1 --> System.Text.Json/9.0.9
15+
Microsoft.Data.SqlClient/6.1.3{{Microsoft.Data.SqlClient/6.1.3}} --> Azure.Core/1.47.1
16+
Microsoft.Data.SqlClient/6.1.3 --> Azure.Identity/1.14.2
17+
Microsoft.Data.SqlClient/6.1.3 --> Microsoft.Bcl.Cryptography/8.0.0
18+
Microsoft.Data.SqlClient/6.1.3 --> Microsoft.Extensions.Caching.Memory/8.0.1
19+
Microsoft.Data.SqlClient/6.1.3 --> Microsoft.IdentityModel.JsonWebTokens/7.7.1
20+
Microsoft.Data.SqlClient/6.1.3 --> Microsoft.IdentityModel.Protocols.OpenIdConnect/7.7.1
21+
Microsoft.Data.SqlClient/6.1.3 --> Microsoft.SqlServer.Server/1.0.0
22+
Microsoft.Data.SqlClient/6.1.3 --> System.Configuration.ConfigurationManager/8.0.1
23+
Microsoft.Data.SqlClient/6.1.3 --> System.Security.Cryptography.Pkcs/8.0.1
24+
Microsoft.Data.SqlClient/6.1.3 --> System.Text.Json/10.0.0
2525
Microsoft.Extensions.Caching.Abstractions/8.0.0 --> Microsoft.Extensions.Primitives/8.0.0
2626
Microsoft.Extensions.Caching.Memory/8.0.1 --> Microsoft.Extensions.Caching.Abstractions/8.0.0
2727
Microsoft.Extensions.Caching.Memory/8.0.1 --> Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2
2828
Microsoft.Extensions.Caching.Memory/8.0.1 --> Microsoft.Extensions.Logging.Abstractions/8.0.3
2929
Microsoft.Extensions.Caching.Memory/8.0.1 --> Microsoft.Extensions.Options/8.0.2
3030
Microsoft.Extensions.Caching.Memory/8.0.1 --> Microsoft.Extensions.Primitives/8.0.0
31-
Microsoft.Extensions.DependencyModel/9.0.9{{Microsoft.Extensions.DependencyModel/9.0.9}} --> System.Text.Encodings.Web/9.0.9
32-
Microsoft.Extensions.DependencyModel/9.0.9 --> System.Text.Json/9.0.9
31+
Microsoft.Extensions.DependencyModel/10.0.0{{Microsoft.Extensions.DependencyModel/10.0.0}} --> System.Text.Encodings.Web/10.0.0
32+
Microsoft.Extensions.DependencyModel/10.0.0 --> System.Text.Json/10.0.0
3333
Microsoft.Extensions.Logging.Abstractions/8.0.3 --> Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2
3434
Microsoft.Extensions.Options/8.0.2 --> Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2
3535
Microsoft.Extensions.Options/8.0.2 --> Microsoft.Extensions.Primitives/8.0.0
@@ -50,8 +50,8 @@ System.Configuration.ConfigurationManager/8.0.1 --> System.Security.Cryptography
5050
System.Diagnostics.DiagnosticSource/6.0.1 --> System.Runtime.CompilerServices.Unsafe/6.0.0
5151
System.IdentityModel.Tokens.Jwt/7.7.1 --> Microsoft.IdentityModel.JsonWebTokens/7.7.1
5252
System.IdentityModel.Tokens.Jwt/7.7.1 --> Microsoft.IdentityModel.Tokens/7.7.1
53-
System.Text.Json/9.0.9 --> System.IO.Pipelines/9.0.9
54-
System.Text.Json/9.0.9 --> System.Text.Encodings.Web/9.0.9
53+
System.Text.Json/10.0.0 --> System.IO.Pipelines/10.0.0
54+
System.Text.Json/10.0.0 --> System.Text.Encodings.Web/10.0.0
5555

5656
class Azure.Core/1.47.1 removed
5757
click Azure.Core/1.47.1 "https://www.nuget.org/packages/Azure.Core/1.47.1" "Azure.Core 1.47.1"
@@ -61,18 +61,18 @@ class Microsoft.Bcl.AsyncInterfaces/8.0.0 removed
6161
click Microsoft.Bcl.AsyncInterfaces/8.0.0 "https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/8.0.0" "Microsoft.Bcl.AsyncInterfaces 8.0.0"
6262
class Microsoft.Bcl.Cryptography/8.0.0 default
6363
click Microsoft.Bcl.Cryptography/8.0.0 "https://www.nuget.org/packages/Microsoft.Bcl.Cryptography/8.0.0" "Microsoft.Bcl.Cryptography 8.0.0"
64-
class Microsoft.Data.SqlClient/6.1.1 root
65-
class Microsoft.Data.SqlClient/6.1.1 default
66-
click Microsoft.Data.SqlClient/6.1.1 "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.1.1" "Microsoft.Data.SqlClient 6.1.1"
64+
class Microsoft.Data.SqlClient/6.1.3 root
65+
class Microsoft.Data.SqlClient/6.1.3 default
66+
click Microsoft.Data.SqlClient/6.1.3 "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.1.3" "Microsoft.Data.SqlClient 6.1.3"
6767
class Microsoft.Extensions.Caching.Abstractions/8.0.0 default
6868
click Microsoft.Extensions.Caching.Abstractions/8.0.0 "https://www.nuget.org/packages/Microsoft.Extensions.Caching.Abstractions/8.0.0" "Microsoft.Extensions.Caching.Abstractions 8.0.0"
6969
class Microsoft.Extensions.Caching.Memory/8.0.1 default
7070
click Microsoft.Extensions.Caching.Memory/8.0.1 "https://www.nuget.org/packages/Microsoft.Extensions.Caching.Memory/8.0.1" "Microsoft.Extensions.Caching.Memory 8.0.1"
7171
class Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2 default
7272
click Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2 "https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2" "Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2"
73-
class Microsoft.Extensions.DependencyModel/9.0.9 root
74-
class Microsoft.Extensions.DependencyModel/9.0.9 default
75-
click Microsoft.Extensions.DependencyModel/9.0.9 "https://www.nuget.org/packages/Microsoft.Extensions.DependencyModel/9.0.9" "Microsoft.Extensions.DependencyModel 9.0.9"
73+
class Microsoft.Extensions.DependencyModel/10.0.0 root
74+
class Microsoft.Extensions.DependencyModel/10.0.0 default
75+
click Microsoft.Extensions.DependencyModel/10.0.0 "https://www.nuget.org/packages/Microsoft.Extensions.DependencyModel/10.0.0" "Microsoft.Extensions.DependencyModel 10.0.0"
7676
class Microsoft.Extensions.Logging.Abstractions/8.0.3 default
7777
click Microsoft.Extensions.Logging.Abstractions/8.0.3 "https://www.nuget.org/packages/Microsoft.Extensions.Logging.Abstractions/8.0.3" "Microsoft.Extensions.Logging.Abstractions 8.0.3"
7878
class Microsoft.Extensions.Options/8.0.2 default
@@ -107,8 +107,8 @@ class System.Diagnostics.EventLog/8.0.1 default
107107
click System.Diagnostics.EventLog/8.0.1 "https://www.nuget.org/packages/System.Diagnostics.EventLog/8.0.1" "System.Diagnostics.EventLog 8.0.1"
108108
class System.IdentityModel.Tokens.Jwt/7.7.1 removed
109109
click System.IdentityModel.Tokens.Jwt/7.7.1 "https://www.nuget.org/packages/System.IdentityModel.Tokens.Jwt/7.7.1" "System.IdentityModel.Tokens.Jwt 7.7.1"
110-
class System.IO.Pipelines/9.0.9 default
111-
click System.IO.Pipelines/9.0.9 "https://www.nuget.org/packages/System.IO.Pipelines/9.0.9" "System.IO.Pipelines 9.0.9"
110+
class System.IO.Pipelines/10.0.0 default
111+
click System.IO.Pipelines/10.0.0 "https://www.nuget.org/packages/System.IO.Pipelines/10.0.0" "System.IO.Pipelines 10.0.0"
112112
class System.Memory.Data/8.0.1 removed
113113
click System.Memory.Data/8.0.1 "https://www.nuget.org/packages/System.Memory.Data/8.0.1" "System.Memory.Data 8.0.1"
114114
class System.Runtime.CompilerServices.Unsafe/6.0.0 removed
@@ -117,7 +117,7 @@ class System.Security.Cryptography.Pkcs/8.0.1 default
117117
click System.Security.Cryptography.Pkcs/8.0.1 "https://www.nuget.org/packages/System.Security.Cryptography.Pkcs/8.0.1" "System.Security.Cryptography.Pkcs 8.0.1"
118118
class System.Security.Cryptography.ProtectedData/8.0.0 default
119119
click System.Security.Cryptography.ProtectedData/8.0.0 "https://www.nuget.org/packages/System.Security.Cryptography.ProtectedData/8.0.0" "System.Security.Cryptography.ProtectedData 8.0.0"
120-
class System.Text.Encodings.Web/9.0.9 default
121-
click System.Text.Encodings.Web/9.0.9 "https://www.nuget.org/packages/System.Text.Encodings.Web/9.0.9" "System.Text.Encodings.Web 9.0.9"
122-
class System.Text.Json/9.0.9 default
123-
click System.Text.Json/9.0.9 "https://www.nuget.org/packages/System.Text.Json/9.0.9" "System.Text.Json 9.0.9"
120+
class System.Text.Encodings.Web/10.0.0 default
121+
click System.Text.Encodings.Web/10.0.0 "https://www.nuget.org/packages/System.Text.Encodings.Web/10.0.0" "System.Text.Encodings.Web 10.0.0"
122+
class System.Text.Json/10.0.0 default
123+
click System.Text.Json/10.0.0 "https://www.nuget.org/packages/System.Text.Json/10.0.0" "System.Text.Json 10.0.0"

0 commit comments

Comments
 (0)