Update dependencies and add comparison benchmarks#30
Merged
Conversation
Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps Meziantou.Analyzer from 3.0.105 to 3.0.114 Bumps Microsoft.VisualStudio.Threading.Analyzers from 17.14.15 to 18.7.23 --- updated-dependencies: - dependency-name: Meziantou.Analyzer dependency-version: 3.0.114 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: analyzers - dependency-name: Microsoft.VisualStudio.Threading.Analyzers dependency-version: 18.7.23 dependency-type: direct:production update-type: version-update:semver-major dependency-group: analyzers ... Signed-off-by: dependabot[bot] <support@github.com>
… across libraries
…lop/analyzers-41a5d25db7 Bump the analyzers group with 2 updates
…ions/develop/actions/cache-6 build(deps): bump actions/cache from 5 to 6
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #30 +/- ##
=======================================
Coverage 97.43% 97.43%
=======================================
Files 43 43
Lines 1323 1323
Branches 199 199
=======================================
Hits 1289 1289
Misses 9 9
Partials 25 25 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
Benchmark ResultsMeasured on Benchmarks.Perf.AsyncReaderBenchmarks
Benchmarks.Perf.ByteReaderBenchmarks
Benchmarks.Perf.ByteReaderPoolingBenchmarks
Benchmarks.Perf.ByteReaderStreamBenchmarks
Benchmarks.Perf.ComparisonBenchmarks
Benchmarks.Perf.ComparisonWriterBenchmarks
Benchmarks.Perf.ParserBenchmarks
Benchmarks.Perf.PipeReaderBenchmarks
Benchmarks.Perf.ReaderBenchmarks
Benchmarks.Perf.ReaderStartupBenchmarks
Benchmarks.Perf.SourceGenParserBenchmarks
Benchmarks.Perf.WriterBenchmarks
|
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.
This pull request introduces a comprehensive cross-library performance comparison for fixed-width file reading and writing, benchmarking the project's implementation against popular alternatives. It also updates several dependencies and CI configurations for improved reliability and up-to-date tooling.
Summary of important changes:
Benchmarking and Documentation
FixedWidthParserwithFileHelpers,FlatFiles, andRecordParserfor both reading and writing fixed-width records. This includes two new benchmark classes:ComparisonBenchmarksandComparisonWriterBenchmarks, which systematically measure speed and memory allocations across libraries. [1] [2] [3]README.mdto include a new section with detailed benchmark results and analysis, highlighting the performance and allocation advantages ofFixedWidthParserover alternative libraries.Dependency Updates
Directory.Build.props, specifically bumpingMeziantou.Analyzerto3.0.114andMicrosoft.VisualStudio.Threading.Analyzersto18.7.23. [1] [2]FileHelpers,FlatFiles, andRecordParseras dependencies to the benchmark project (tests/Benchmarks/Benchmarks.csproj) to enable cross-library comparisons.CI/CD Workflow Maintenance
actions/cache@v6(from v5) for NuGet package caching, ensuring more reliable and up-to-date caching in all workflows (ci.yml,release.yml,benchmark-pr.yml,benchmark-pages.yml). [1] [2] [3] [4]