File tree 5 files changed +17
-21
lines changed
5 files changed +17
-21
lines changed Original file line number Diff line number Diff line change 13
13
</ItemGroup >
14
14
15
15
<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" />
18
18
</ItemGroup >
19
19
20
20
<ItemGroup >
Original file line number Diff line number Diff line change @@ -5,24 +5,19 @@ namespace MongoDB.Entities;
5
5
public static partial class DB
6
6
{
7
7
/// <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.
10
10
/// If an instance already exists, that instance will be returned.
11
11
/// </summary>
12
12
/// <typeparam name="T">The entity type to get a watcher for</typeparam>
13
13
/// <param name="name">A unique name for the watcher of this entity type. Names can be duplicate among different entity types.</param>
14
14
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 ) ) ;
22
16
23
17
/// <summary>
24
18
/// Returns all the watchers for a given entity type
25
19
/// </summary>
26
20
/// <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
+ }
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
5
- <Version >23.0.1 </Version >
5
+ <Version >23.1.0 </Version >
6
6
7
7
<TargetFramework >netstandard2.1</TargetFramework >
8
8
<RootNamespace >MongoDB.Entities</RootNamespace >
31
31
32
32
<ItemGroup >
33
33
<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" />
35
35
<PackageReference Include =" Microsoft.SourceLink.GitHub" Version =" 8.0.0" PrivateAssets =" All" />
36
36
</ItemGroup >
37
37
Original file line number Diff line number Diff line change 10
10
</PropertyGroup >
11
11
12
12
<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 " >
18
18
<PrivateAssets >all</PrivateAssets >
19
19
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
20
20
</PackageReference >
Original file line number Diff line number Diff line change 2
2
3
3
### IMPROVEMENTS
4
4
5
- - upgrade mongodb driver to v2.23
5
+ - upgrade mongodb driver to v2.24
6
+ - minor internal refactors
6
7
7
8
[ // ] : # ( ### BREAKING CHANGES )
You can’t perform that action at this time.
0 commit comments