Skip to content

Commit 4746012

Browse files
committed
upgrade mongo driver version
1 parent 7d7c0c2 commit 4746012

File tree

3 files changed

+7
-23
lines changed

3 files changed

+7
-23
lines changed

Benchmark/Benchmark.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
</ItemGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="BenchmarkDotNet" Version="0.13.10"/>
17-
<PackageReference Include="MongoDB.Driver.GridFS" Version="2.22.0"/>
16+
<PackageReference Include="BenchmarkDotNet" Version="0.13.11"/>
17+
<PackageReference Include="MongoDB.Driver.GridFS" Version="2.23.0"/>
1818
</ItemGroup>
1919

2020
<ItemGroup>

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>23.0.0</Version>
5+
<Version>23.0.1</Version>
66

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

3232
<ItemGroup>
3333
<PackageReference Include="Microsoft.CSharp" Version="4.7.0"/>
34-
<PackageReference Include="MongoDB.Driver" Version="2.22.0"/>
34+
<PackageReference Include="MongoDB.Driver" Version="2.23.0"/>
3535
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
3636
</ItemGroup>
3737

changelog.md

+3-19
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,7 @@
1-
### NEW
2-
3-
ability to use any type for primary key property and ability to name it based on mongodb conventions when implementing `IEntity` interface.
4-
5-
**NOTE:** due to a technical constraint, only the following primary key types are supported with referenced relationships.
6-
7-
- string
8-
- long
9-
- ObjectId
10-
11-
see #195 for more info.
1+
[//]: # (### NEW)
122

133
### IMPROVEMENTS
144

15-
- `Entity.ID` property has been made non-nullable #210
16-
- support for dictionary based index keys #206
17-
- upgrade mongodb driver to v2.22
18-
- various internal code refactors and optimizations
19-
20-
### BREAKING CHANGES
5+
- upgrade mongodb driver to v2.23
216

22-
- `Many<T>` is now `Many<TChild,TParent>` when defining referenced relationships. i.e. you now need to specify the type of the parent class that contains the property.
23-
- `IEntity.GenerateNewID()` & `IEntity.HasDefaultID()` method must be implemented by entities if implementing `IEntity` directly.
7+
[//]: # (### BREAKING CHANGES)

0 commit comments

Comments
 (0)