Skip to content

Commit 5f80160

Browse files
committed
v24.1 release
1 parent eda82cf commit 5f80160

File tree

4 files changed

+14
-16
lines changed

4 files changed

+14
-16
lines changed

MongoDB.Entities/DB/DB.Migrate.cs

+5-3
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,19 @@ static Task Migrate(Type? targetType)
4141

4242
if (targetType == null)
4343
{
44-
var excludes = new[]
45-
{
44+
string[] excludes =
45+
[
46+
"JetBrains.",
4647
"Microsoft.",
4748
"System.",
4849
"MongoDB.",
4950
"testhost",
5051
"netstandard",
5152
"Newtonsoft.",
53+
"NuGet",
5254
"mscorlib",
5355
"NuGet."
54-
};
56+
];
5557

5658
assemblies = AppDomain.CurrentDomain
5759
.GetAssemblies()

MongoDB.Entities/MongoDB.Entities.csproj

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

33
<PropertyGroup>
44

5-
<Version>24.0.0</Version>
5+
<Version>24.1.0</Version>
66

77
<TargetFramework>netstandard2.1</TargetFramework>
88
<RootNamespace>MongoDB.Entities</RootNamespace>
@@ -30,7 +30,7 @@
3030
</PropertyGroup>
3131

3232
<ItemGroup>
33-
<PackageReference Include="MongoDB.Driver" Version="3.0.0"/>
33+
<PackageReference Include="MongoDB.Driver" Version="3.1.0"/>
3434
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
3535
</ItemGroup>
3636

Tests/Tests.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="Medo.Uuid7" Version="2.1.1"/>
13+
<PackageReference Include="Medo.Uuid7" Version="3.0.0"/>
1414
<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"/>
15+
<PackageReference Include="MSTest.TestAdapter" Version="3.7.0"/>
16+
<PackageReference Include="MSTest.TestFramework" Version="3.7.0"/>
17+
<PackageReference Include="Testcontainers.MongoDb" Version="4.1.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

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
1-
### NEW
2-
3-
- upgrade to mongodb driver v3.0
4-
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/).
1+
[//]: # (### NEW)
62

73
### IMPROVEMENTS
84

9-
- upgrade build pipeline to .net 9.0
10-
- upgrade project dependencies to latest
5+
- exclude `JetBrains` assemblies from scanning for migration classes.
6+
- upgrade project dependencies to latest.
117

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

0 commit comments

Comments
 (0)