Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .jules/forge.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,8 @@
**Observation:** Tests and benchmarks had compiler warnings for nullability when `Nullable` was set to `enable` in the projects.

**Strategic Action:** Resolved nullability warnings in tests and legacy benchmark code by using explicit nullability (e.g., `DummyObject?[]`) or null-forgiving operators where required to ensure strict clean builds.
## 2026-06-02 - ObjectPool Dependencies Modernization

**Observation:** Test and benchmark dependencies were slightly outdated.

**Strategic Action:** Updated `Microsoft.NET.Test.Sdk` to 18.8.1 and `Microsoft.Extensions.ObjectPool` to 10.0.10.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.15.8" />
<PackageReference Include="BenchmarkDotNet.Annotations" Version="0.15.8" />
<PackageReference Include="Microsoft.Extensions.ObjectPool" Version="10.0.8" />
<PackageReference Include="Microsoft.Extensions.ObjectPool" Version="10.0.10" />
</ItemGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions src/Tedd.ObjectPool.Tests/AegisCoverageTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ public void Prefill_WhenFastSlotOccupied_ShouldPopulateArraySlots()

// 2 objects from manual allocation + 5 from prefill
Assert.Equal(7, createCount);
}

[Fact]
public void Prefill_WhenSomeArraySlotsOccupied_ShouldSkipOccupiedSlots()
Expand Down
2 changes: 1 addition & 1 deletion src/Tedd.ObjectPool.Tests/Tedd.ObjectPool.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.6.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.8.1" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
Loading