Open
Conversation
Run build and functional tests on pull requests and pushes to main. Skips Performance, Benchmark, Profiling, and Endurance test categories. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Replace Stream.Read/ReadAsync with ReadExactly/ReadExactlyAsync where return value was unused (CA2022) - Convert blocking .Wait()/.Result to async/await (xUnit1031) - Convert Task.WaitAll to await Task.WhenAll in endurance tests Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Add NuGet package metadata to csproj (no hardcoded version) - Add release.yml: build, test, pack, push to NuGet on v* tag - Auto-create GitHub Release with release notes Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Library targets netstandard2.1 + net10.0; net10.0 users get Memory/ValueTask overrides and DisposeAsync - Test project targets net8.0 + net10.0 to cover both code paths - Add ThrowHelper and IsExternalInit polyfills for netstandard2.1 - Conditional compilation for AesGcm ctor, Rfc2898DeriveBytes.Pbkdf2, Stream Span overloads, and async Memory overrides - Replace Array.Clear(x) with Array.Clear(x, 0, x.Length) everywhere - CI workflows install both .NET 8 and .NET 10 SDKs Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Collect coverage via coverlet XPlat Code Coverage - Generate markdown report with ReportGenerator - Post coverage summary as sticky PR comment - Write coverage summary to GitHub job summary Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
SummarySummary
CoverageCipheredFileStream - 87.4%
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
.github/workflows/ci.ymlto run CI on PRs and pushes to mainTest plan
🤖 Generated with Claude Code