File tree 7 files changed +23
-18
lines changed
7 files changed +23
-18
lines changed Original file line number Diff line number Diff line change 14
14
- name : Setup .Net SDK
15
15
uses : actions/setup-dotnet@v2
16
16
with :
17
- dotnet-version : 8 .x
17
+ dotnet-version : 9 .x
18
18
19
19
- name : Make Nuget Packages
20
20
run : dotnet pack MongoDB.Entities/MongoDB.Entities.csproj -c Release
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<OutputType >Exe</OutputType >
5
- <TargetFramework >net8 .0</TargetFramework >
5
+ <TargetFramework >net9 .0</TargetFramework >
6
6
<Nullable >enable</Nullable >
7
7
</PropertyGroup >
8
8
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
5
- <Version >23.2.0.1-beta </Version >
5
+ <Version >24.0.0 </Version >
6
6
7
7
<TargetFramework >netstandard2.1</TargetFramework >
8
8
<RootNamespace >MongoDB.Entities</RootNamespace >
Original file line number Diff line number Diff line change @@ -11,16 +11,16 @@ namespace MongoDB.Entities.Tests;
11
11
public static class InitTest
12
12
{
13
13
static MongoClientSettings ClientSettings { get ; set ; }
14
- static bool UseTestContainers ;
14
+ static bool _useTestContainers ;
15
15
16
16
[ AssemblyInitialize ]
17
17
public static async Task Init ( TestContext _ )
18
18
{
19
19
BsonSerializer . RegisterSerializer ( new GuidSerializer ( GuidRepresentation . Standard ) ) ;
20
20
21
- UseTestContainers = System . Environment . GetEnvironmentVariable ( "MONGODB_ENTITIES_TESTCONTAINERS" ) != null ;
21
+ _useTestContainers = System . Environment . GetEnvironmentVariable ( "MONGODB_ENTITIES_TESTCONTAINERS" ) != null ;
22
22
23
- if ( UseTestContainers )
23
+ if ( _useTestContainers )
24
24
{
25
25
var testContainer = await TestDatabase . CreateDatabase ( ) ;
26
26
ClientSettings = MongoClientSettings . FromConnectionString ( testContainer . GetConnectionString ( ) ) ;
@@ -31,7 +31,7 @@ public static async Task Init(TestContext _)
31
31
32
32
public static async Task InitTestDatabase ( string databaseName )
33
33
{
34
- if ( UseTestContainers )
34
+ if ( _useTestContainers )
35
35
await DB . InitAsync ( databaseName , ClientSettings ) ;
36
36
else
37
37
await DB . InitAsync ( databaseName ) ;
Original file line number Diff line number Diff line change 4
4
5
5
public static class TestDatabase
6
6
{
7
- private static SemaphoreSlim _semaphore = new ( 1 , 1 ) ;
7
+ private static readonly SemaphoreSlim _semaphore = new ( 1 , 1 ) ;
8
8
private static MongoDbContainer ? _testContainer ;
9
9
10
10
public static async Task < MongoDbContainer > CreateDatabase ( )
11
11
{
12
12
await _semaphore . WaitAsync ( ) ;
13
+
13
14
try
14
15
{
15
16
var database = await CreateTestDatabase ( ) ;
@@ -25,9 +26,8 @@ public static async Task<MongoDbContainer> CreateDatabase()
25
26
private static async Task < MongoDbContainer > CreateTestDatabase ( )
26
27
{
27
28
if ( _testContainer != null )
28
- {
29
29
return _testContainer ;
30
- }
30
+
31
31
_testContainer = new MongoDbBuilder ( )
32
32
. WithPortBinding ( 27017 )
33
33
. WithPassword ( "username" )
@@ -36,7 +36,7 @@ private static async Task<MongoDbContainer> CreateTestDatabase()
36
36
. Build ( ) ;
37
37
38
38
await _testContainer . StartAsync ( ) ;
39
-
39
+
40
40
return _testContainer ;
41
41
}
42
42
}
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net8 .0</TargetFramework >
4
+ <TargetFramework >net9 .0</TargetFramework >
5
5
<IsPackable >false</IsPackable >
6
6
<AssemblyName >MongoDB.Entities.Tests</AssemblyName >
7
7
<RootNamespace >MongoDB.Entities.Tests</RootNamespace >
10
10
</PropertyGroup >
11
11
12
12
<ItemGroup >
13
- <PackageReference Include =" Medo.Uuid7" Version =" 2.0.0 " />
14
- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.11.1 " />
15
- <PackageReference Include =" MSTest.TestAdapter" Version =" 3.6.1 " />
16
- <PackageReference Include =" MSTest.TestFramework" Version =" 3.6.1 " />
17
- <PackageReference Include =" Testcontainers.MongoDb" Version =" 3.10 .0" />
13
+ <PackageReference Include =" Medo.Uuid7" Version =" 2.1.1 " />
14
+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.12.0 " />
15
+ <PackageReference Include =" MSTest.TestAdapter" Version =" 3.6.3 " />
16
+ <PackageReference Include =" MSTest.TestFramework" Version =" 3.6.3 " />
17
+ <PackageReference Include =" Testcontainers.MongoDb" Version =" 4.0 .0" />
18
18
<PackageReference Include =" coverlet.collector" Version =" 6.0.2" >
19
19
<PrivateAssets >all</PrivateAssets >
20
20
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
Original file line number Diff line number Diff line change 2
2
3
3
- upgrade to mongodb driver v3.0
4
4
5
- [ // ] : # ( ### IMPROVEMENTS )
5
+ > should be a pretty straightforward upgrade unless you're affected by any of the points mentioned in the driver [ v3 upgrade guide] ( https://www.mongodb.com/docs/drivers/csharp/v3.0/upgrade/v3/ ) .
6
+
7
+ ### IMPROVEMENTS
8
+
9
+ - upgrade build pipeline to .net 9.0
10
+ - upgrade project dependencies to latest
6
11
7
12
[ // ] : # ( ### BREAKING CHANGES )
You can’t perform that action at this time.
0 commit comments