Skip to content

Commit ba83406

Browse files
committed
upgrade dependencies & cleanups
1 parent 875285c commit ba83406

File tree

5 files changed

+17
-21
lines changed

5 files changed

+17
-21
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.11"/>
17-
<PackageReference Include="MongoDB.Driver.GridFS" Version="2.23.0"/>
16+
<PackageReference Include="BenchmarkDotNet" Version="0.13.12"/>
17+
<PackageReference Include="MongoDB.Driver.GridFS" Version="2.24.0"/>
1818
</ItemGroup>
1919

2020
<ItemGroup>

MongoDB.Entities/DB/DB.Watcher.cs

+6-11
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,19 @@ namespace MongoDB.Entities;
55
public static partial class DB
66
{
77
/// <summary>
8-
/// Retrieves the 'change-stream' watcher instance for a given unique name.
9-
/// If an instance for the name does not exist, it will return a new instance.
8+
/// Retrieves the 'change-stream' watcher instance for a given unique name.
9+
/// If an instance for the name does not exist, it will return a new instance.
1010
/// If an instance already exists, that instance will be returned.
1111
/// </summary>
1212
/// <typeparam name="T">The entity type to get a watcher for</typeparam>
1313
/// <param name="name">A unique name for the watcher of this entity type. Names can be duplicate among different entity types.</param>
1414
public static Watcher<T> Watcher<T>(string name) where T : IEntity
15-
{
16-
// Normalize the name once
17-
var normalizedName = name.ToLower().Trim();
18-
19-
// Use GetOrAdd to ensure thread-safe retrieval or addition of the watcher.
20-
return Cache<T>.Watchers.GetOrAdd(normalizedName, newName => new Watcher<T>(newName));
21-
}
15+
=> Cache<T>.Watchers.GetOrAdd(name.ToLower().Trim(), newName => new(newName));
2216

2317
/// <summary>
2418
/// Returns all the watchers for a given entity type
2519
/// </summary>
2620
/// <typeparam name="T">The entity type to get the watcher of</typeparam>
27-
public static IEnumerable<Watcher<T>> Watchers<T>() where T : IEntity => Cache<T>.Watchers.Values;
28-
}
21+
public static IEnumerable<Watcher<T>> Watchers<T>() where T : IEntity
22+
=> Cache<T>.Watchers.Values;
23+
}

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.1</Version>
5+
<Version>23.1.0</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.23.0"/>
34+
<PackageReference Include="MongoDB.Driver" Version="2.24.0"/>
3535
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
3636
</ItemGroup>
3737

Tests/Tests.csproj

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

1212
<ItemGroup>
13-
<PackageReference Include="Medo.Uuid7" Version="1.8.2"/>
14-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0"/>
15-
<PackageReference Include="MSTest.TestAdapter" Version="3.1.1"/>
16-
<PackageReference Include="MSTest.TestFramework" Version="3.1.1"/>
17-
<PackageReference Include="coverlet.collector" Version="6.0.0">
13+
<PackageReference Include="Medo.Uuid7" Version="1.9.1"/>
14+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0"/>
15+
<PackageReference Include="MSTest.TestAdapter" Version="3.2.2"/>
16+
<PackageReference Include="MSTest.TestFramework" Version="3.2.2"/>
17+
<PackageReference Include="coverlet.collector" Version="6.0.1">
1818
<PrivateAssets>all</PrivateAssets>
1919
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2020
</PackageReference>

changelog.md

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

33
### IMPROVEMENTS
44

5-
- upgrade mongodb driver to v2.23
5+
- upgrade mongodb driver to v2.24
6+
- minor internal refactors
67

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

0 commit comments

Comments
 (0)