Skip to content

Commit e58eb70

Browse files
committed
v24 release
1 parent 65dddf0 commit e58eb70

File tree

7 files changed

+23
-18
lines changed

7 files changed

+23
-18
lines changed

.github/workflows/publish-to-nuget.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup .Net SDK
1515
uses: actions/setup-dotnet@v2
1616
with:
17-
dotnet-version: 8.x
17+
dotnet-version: 9.x
1818

1919
- name: Make Nuget Packages
2020
run: dotnet pack MongoDB.Entities/MongoDB.Entities.csproj -c Release

Benchmark/Benchmark.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net8.0</TargetFramework>
5+
<TargetFramework>net9.0</TargetFramework>
66
<Nullable>enable</Nullable>
77
</PropertyGroup>
88

MongoDB.Entities/MongoDB.Entities.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44

5-
<Version>23.2.0.1-beta</Version>
5+
<Version>24.0.0</Version>
66

77
<TargetFramework>netstandard2.1</TargetFramework>
88
<RootNamespace>MongoDB.Entities</RootNamespace>

Tests/Init.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ namespace MongoDB.Entities.Tests;
1111
public static class InitTest
1212
{
1313
static MongoClientSettings ClientSettings { get; set; }
14-
static bool UseTestContainers;
14+
static bool _useTestContainers;
1515

1616
[AssemblyInitialize]
1717
public static async Task Init(TestContext _)
1818
{
1919
BsonSerializer.RegisterSerializer(new GuidSerializer(GuidRepresentation.Standard));
2020

21-
UseTestContainers = System.Environment.GetEnvironmentVariable("MONGODB_ENTITIES_TESTCONTAINERS") != null;
21+
_useTestContainers = System.Environment.GetEnvironmentVariable("MONGODB_ENTITIES_TESTCONTAINERS") != null;
2222

23-
if (UseTestContainers)
23+
if (_useTestContainers)
2424
{
2525
var testContainer = await TestDatabase.CreateDatabase();
2626
ClientSettings = MongoClientSettings.FromConnectionString(testContainer.GetConnectionString());
@@ -31,7 +31,7 @@ public static async Task Init(TestContext _)
3131

3232
public static async Task InitTestDatabase(string databaseName)
3333
{
34-
if (UseTestContainers)
34+
if (_useTestContainers)
3535
await DB.InitAsync(databaseName, ClientSettings);
3636
else
3737
await DB.InitAsync(databaseName);

Tests/TestDatabase.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@
44

55
public static class TestDatabase
66
{
7-
private static SemaphoreSlim _semaphore = new(1, 1);
7+
private static readonly SemaphoreSlim _semaphore = new(1, 1);
88
private static MongoDbContainer? _testContainer;
99

1010
public static async Task<MongoDbContainer> CreateDatabase()
1111
{
1212
await _semaphore.WaitAsync();
13+
1314
try
1415
{
1516
var database = await CreateTestDatabase();
@@ -25,9 +26,8 @@ public static async Task<MongoDbContainer> CreateDatabase()
2526
private static async Task<MongoDbContainer> CreateTestDatabase()
2627
{
2728
if (_testContainer != null)
28-
{
2929
return _testContainer;
30-
}
30+
3131
_testContainer = new MongoDbBuilder()
3232
.WithPortBinding(27017)
3333
.WithPassword("username")
@@ -36,7 +36,7 @@ private static async Task<MongoDbContainer> CreateTestDatabase()
3636
.Build();
3737

3838
await _testContainer.StartAsync();
39-
39+
4040
return _testContainer;
4141
}
4242
}

Tests/Tests.csproj

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<IsPackable>false</IsPackable>
66
<AssemblyName>MongoDB.Entities.Tests</AssemblyName>
77
<RootNamespace>MongoDB.Entities.Tests</RootNamespace>
@@ -10,11 +10,11 @@
1010
</PropertyGroup>
1111

1212
<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"/>
1818
<PackageReference Include="coverlet.collector" Version="6.0.2">
1919
<PrivateAssets>all</PrivateAssets>
2020
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

changelog.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
- upgrade to mongodb driver v3.0
44

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
611

712
[//]: # (### BREAKING CHANGES)

0 commit comments

Comments
 (0)