CVS commit: pkgsrc/devel/ruby-simplecov
"Takahiro Kambe" <[email protected]>
| Newsgroups | gmane.os.netbsd.devel.pkgsrc.cvs |
|---|---|
| Message-ID | <[email protected]> |
Module Name: pkgsrc Committed By: taca Date: Tue Aug 11 16:03:41 UTC 2026 Modified Files: pkgsrc/devel/ruby-simplecov: Makefile PLIST distinfo Log Message: devel/ruby-simplecov: update to 1.1.0 1.1.0 (2026-08-10) What's Changed * Bump actions/checkout from 7.0.0 to 7.0.1 by @dependabot[bot] in #1243 * Bump ruby/setup-ruby from 1.318.0 to 1.320.0 by @dependabot[bot] in #1242 * Improve collate performance by @danielwestendorf in #1244 * Bump ruby/setup-ruby from 1.320.0 to 1.321.0 by @dependabot[bot] in #1247 * Make the HTML report a single self-contained index.html by @sferik in #1245 * Cut unloaded-file injection cost, fix 100% coverage in merged reports by @sferik in #1252 * Stop matching the :nocov: regex twice on every classified line by @andriytyurnikov in #1253 * Absorb resultsets into one accumulator instead of folding pairwise by @andriytyurnikov in #1254 * Inject unloaded files once at the merge point, not once per process by @sferik in #1255 * Fix CommandGuesser mislabelling suites from incidental path substrings by @sferik in #1251 * Speed up SimpleCov.collate with optional multi-process merge by @danielwestendorf in #1246 * Keep branch and method data the resultsets carried by @sferik in #1256 * Colorblind mode by @sferik in #1257 New Contributors * @danielwestendorf made their first contribution in #1244 * @andriytyurnikov made their first contribution in #1253 To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.31 pkgsrc/devel/ruby-simplecov/Makefile cvs rdiff -u -r1.18 -r1.19 pkgsrc/devel/ruby-simplecov/PLIST cvs rdiff -u -r1.27 -r1.28 pkgsrc/devel/ruby-simplecov/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
(unnamed)
(text/x-diff, 8.4 KB)
Modified files: Index: pkgsrc/devel/ruby-simplecov/Makefile diff -u pkgsrc/devel/ruby-simplecov/Makefile:1.30 pkgsrc/devel/ruby-simplecov/Makefile:1.31 --- pkgsrc/devel/ruby-simplecov/Makefile:1.30 Tue Aug 4 14:19:52 2026 +++ pkgsrc/devel/ruby-simplecov/Makefile Tue Aug 11 16:03:41 2026 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.30 2026/08/04 14:19:52 taca Exp $ +# $NetBSD: Makefile,v 1.31 2026/08/11 16:03:41 taca Exp $ -DISTNAME= simplecov-1.0.3 +DISTNAME= simplecov-1.1.0 CATEGORIES= devel MAINTAINER= [email protected] Index: pkgsrc/devel/ruby-simplecov/PLIST diff -u pkgsrc/devel/ruby-simplecov/PLIST:1.18 pkgsrc/devel/ruby-simplecov/PLIST:1.19 --- pkgsrc/devel/ruby-simplecov/PLIST:1.18 Sat Jul 18 15:22:13 2026 +++ pkgsrc/devel/ruby-simplecov/PLIST Tue Aug 11 16:03:41 2026 @@ -1,19 +1,19 @@ -@comment $NetBSD: PLIST,v 1.18 2026/07/18 15:22:13 taca Exp $ +@comment $NetBSD: PLIST,v 1.19 2026/08/11 16:03:41 taca Exp $ bin/simplecov${RUBY_SUFFIX} ${GEM_HOME}/cache/${GEM_NAME}.gem ${GEM_LIBDIR}/LICENSE ${GEM_LIBDIR}/README.md -${GEM_LIBDIR}/doc/alternate-formatters.md -${GEM_LIBDIR}/doc/commercial-services.md -${GEM_LIBDIR}/doc/editor-integration.md ${GEM_LIBDIR}/exe/simplecov ${GEM_LIBDIR}/lib/minitest/simplecov_plugin.rb ${GEM_LIBDIR}/lib/simplecov-html.rb ${GEM_LIBDIR}/lib/simplecov.rb +${GEM_LIBDIR}/lib/simplecov/atomic_file.rb ${GEM_LIBDIR}/lib/simplecov/autostart.rb ${GEM_LIBDIR}/lib/simplecov/cli.rb ${GEM_LIBDIR}/lib/simplecov/cli/clean.rb +${GEM_LIBDIR}/lib/simplecov/cli/command_helpers.rb ${GEM_LIBDIR}/lib/simplecov/cli/coverage.rb +${GEM_LIBDIR}/lib/simplecov/cli/coverage_file.rb ${GEM_LIBDIR}/lib/simplecov/cli/diff.rb ${GEM_LIBDIR}/lib/simplecov/cli/dotfile.rb ${GEM_LIBDIR}/lib/simplecov/cli/merge.rb @@ -21,11 +21,15 @@ ${GEM_LIBDIR}/lib/simplecov/cli/open.rb ${GEM_LIBDIR}/lib/simplecov/cli/report.rb ${GEM_LIBDIR}/lib/simplecov/cli/run.rb ${GEM_LIBDIR}/lib/simplecov/cli/serve.rb +${GEM_LIBDIR}/lib/simplecov/cli/serve/report_preparer.rb +${GEM_LIBDIR}/lib/simplecov/cli/serve/static_file_handler.rb ${GEM_LIBDIR}/lib/simplecov/cli/uncovered.rb ${GEM_LIBDIR}/lib/simplecov/color.rb ${GEM_LIBDIR}/lib/simplecov/combine.rb ${GEM_LIBDIR}/lib/simplecov/combine/branches_combiner.rb -${GEM_LIBDIR}/lib/simplecov/combine/files_combiner.rb +${GEM_LIBDIR}/lib/simplecov/combine/coverage_accumulator.rb +${GEM_LIBDIR}/lib/simplecov/combine/identity_interner.rb +${GEM_LIBDIR}/lib/simplecov/combine/interned_counts.rb ${GEM_LIBDIR}/lib/simplecov/combine/lines_combiner.rb ${GEM_LIBDIR}/lib/simplecov/combine/methods_combiner.rb ${GEM_LIBDIR}/lib/simplecov/combine/results_combiner.rb @@ -33,17 +37,21 @@ ${GEM_LIBDIR}/lib/simplecov/command_gues ${GEM_LIBDIR}/lib/simplecov/configuration.rb ${GEM_LIBDIR}/lib/simplecov/configuration/coverage.rb ${GEM_LIBDIR}/lib/simplecov/configuration/coverage_criteria.rb +${GEM_LIBDIR}/lib/simplecov/configuration/eval_coverage.rb ${GEM_LIBDIR}/lib/simplecov/configuration/filters.rb ${GEM_LIBDIR}/lib/simplecov/configuration/formatting.rb +${GEM_LIBDIR}/lib/simplecov/configuration/groups.rb ${GEM_LIBDIR}/lib/simplecov/configuration/ignored_entries.rb ${GEM_LIBDIR}/lib/simplecov/configuration/merging.rb ${GEM_LIBDIR}/lib/simplecov/configuration/thresholds.rb +${GEM_LIBDIR}/lib/simplecov/coverage_json.rb ${GEM_LIBDIR}/lib/simplecov/coverage_statistics.rb ${GEM_LIBDIR}/lib/simplecov/coverage_violations.rb ${GEM_LIBDIR}/lib/simplecov/defaults.rb ${GEM_LIBDIR}/lib/simplecov/deprecation.rb ${GEM_LIBDIR}/lib/simplecov/directive.rb ${GEM_LIBDIR}/lib/simplecov/exit_codes.rb +${GEM_LIBDIR}/lib/simplecov/exit_codes/check.rb ${GEM_LIBDIR}/lib/simplecov/exit_codes/exit_code_handling.rb ${GEM_LIBDIR}/lib/simplecov/exit_codes/maximum_coverage_drop_check.rb ${GEM_LIBDIR}/lib/simplecov/exit_codes/maximum_overall_coverage_check.rb @@ -55,19 +63,17 @@ ${GEM_LIBDIR}/lib/simplecov/file_list.rb ${GEM_LIBDIR}/lib/simplecov/filter.rb ${GEM_LIBDIR}/lib/simplecov/formatter.rb ${GEM_LIBDIR}/lib/simplecov/formatter/base.rb +${GEM_LIBDIR}/lib/simplecov/formatter/coverage_json_writer.rb ${GEM_LIBDIR}/lib/simplecov/formatter/html_formatter.rb -${GEM_LIBDIR}/lib/simplecov/formatter/html_formatter/public/application.css -${GEM_LIBDIR}/lib/simplecov/formatter/html_formatter/public/application.js -${GEM_LIBDIR}/lib/simplecov/formatter/html_formatter/public/favicon_green.png -${GEM_LIBDIR}/lib/simplecov/formatter/html_formatter/public/favicon_red.png -${GEM_LIBDIR}/lib/simplecov/formatter/html_formatter/public/favicon_yellow.png ${GEM_LIBDIR}/lib/simplecov/formatter/html_formatter/public/index.html +${GEM_LIBDIR}/lib/simplecov/formatter/html_formatter/viewer_data_validator.rb ${GEM_LIBDIR}/lib/simplecov/formatter/json_formatter.rb ${GEM_LIBDIR}/lib/simplecov/formatter/json_formatter/errors_formatter.rb ${GEM_LIBDIR}/lib/simplecov/formatter/json_formatter/result_hash_formatter.rb ${GEM_LIBDIR}/lib/simplecov/formatter/json_formatter/source_file_formatter.rb ${GEM_LIBDIR}/lib/simplecov/formatter/multi_formatter.rb ${GEM_LIBDIR}/lib/simplecov/formatter/simple_formatter.rb +${GEM_LIBDIR}/lib/simplecov/group_names.rb ${GEM_LIBDIR}/lib/simplecov/last_run.rb ${GEM_LIBDIR}/lib/simplecov/lines_classifier.rb ${GEM_LIBDIR}/lib/simplecov/load_global_config.rb @@ -77,6 +83,7 @@ ${GEM_LIBDIR}/lib/simplecov/parallel_ada ${GEM_LIBDIR}/lib/simplecov/parallel_adapters/generic.rb ${GEM_LIBDIR}/lib/simplecov/parallel_adapters/parallel_tests.rb ${GEM_LIBDIR}/lib/simplecov/parallel_coordination.rb +${GEM_LIBDIR}/lib/simplecov/parallel_result_merger.rb ${GEM_LIBDIR}/lib/simplecov/process.rb ${GEM_LIBDIR}/lib/simplecov/profiles.rb ${GEM_LIBDIR}/lib/simplecov/profiles/bundler_filter.rb @@ -85,6 +92,8 @@ ${GEM_LIBDIR}/lib/simplecov/profiles/rai ${GEM_LIBDIR}/lib/simplecov/profiles/root_filter.rb ${GEM_LIBDIR}/lib/simplecov/profiles/strict.rb ${GEM_LIBDIR}/lib/simplecov/profiles/test_frameworks.rb +${GEM_LIBDIR}/lib/simplecov/report_deferral.rb +${GEM_LIBDIR}/lib/simplecov/report_stamp.rb ${GEM_LIBDIR}/lib/simplecov/result.rb ${GEM_LIBDIR}/lib/simplecov/result/missing_source_files_reporter.rb ${GEM_LIBDIR}/lib/simplecov/result/source_file_builder.rb @@ -92,8 +101,11 @@ ${GEM_LIBDIR}/lib/simplecov/result_adapt ${GEM_LIBDIR}/lib/simplecov/result_merger.rb ${GEM_LIBDIR}/lib/simplecov/result_merger/legacy_format_adapter.rb ${GEM_LIBDIR}/lib/simplecov/result_merger/resultset_file.rb +${GEM_LIBDIR}/lib/simplecov/result_merger/resultset_run_identity.rb ${GEM_LIBDIR}/lib/simplecov/result_merger/resultset_store.rb +${GEM_LIBDIR}/lib/simplecov/result_merger/unloaded_files.rb ${GEM_LIBDIR}/lib/simplecov/result_processing.rb +${GEM_LIBDIR}/lib/simplecov/run_identity.rb ${GEM_LIBDIR}/lib/simplecov/simulate_coverage.rb ${GEM_LIBDIR}/lib/simplecov/source_file.rb ${GEM_LIBDIR}/lib/simplecov/source_file/branch.rb @@ -111,8 +123,10 @@ ${GEM_LIBDIR}/lib/simplecov/static_cover ${GEM_LIBDIR}/lib/simplecov/static_coverage_extractor/condition_folding.rb ${GEM_LIBDIR}/lib/simplecov/static_coverage_extractor/location_conventions.rb ${GEM_LIBDIR}/lib/simplecov/static_coverage_extractor/method_collector.rb +${GEM_LIBDIR}/lib/simplecov/static_coverage_extractor/prism_compat.rb ${GEM_LIBDIR}/lib/simplecov/static_coverage_extractor/value_position.rb ${GEM_LIBDIR}/lib/simplecov/static_coverage_extractor/visitor.rb +${GEM_LIBDIR}/lib/simplecov/unloaded_file_injector.rb ${GEM_LIBDIR}/lib/simplecov/useless_results_remover.rb ${GEM_LIBDIR}/lib/simplecov/version.rb ${GEM_LIBDIR}/lib/simplecov_json_formatter.rb Index: pkgsrc/devel/ruby-simplecov/distinfo diff -u pkgsrc/devel/ruby-simplecov/distinfo:1.27 pkgsrc/devel/ruby-simplecov/distinfo:1.28 --- pkgsrc/devel/ruby-simplecov/distinfo:1.27 Tue Aug 4 14:19:52 2026 +++ pkgsrc/devel/ruby-simplecov/distinfo Tue Aug 11 16:03:41 2026 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.27 2026/08/04 14:19:52 taca Exp $ +$NetBSD: distinfo,v 1.28 2026/08/11 16:03:41 taca Exp $ -BLAKE2s (simplecov-1.0.3.gem) = 09d8ea8bd60cc3c1091e8225cc7eb220e42041c05290a2751ba4629a01fe069a -SHA512 (simplecov-1.0.3.gem) = 64cdf43b591b1080c8b183b189d9b302c5032aec1c7b6bd9c2638d1335813986daeee8c256da80d40527d33823f3a9a08be0b6f2a2dfd346d033590f75e60355 -Size (simplecov-1.0.3.gem) = 169472 bytes +BLAKE2s (simplecov-1.1.0.gem) = c741b69b7200752784c37ac9a4a324a0f7a34c5bffa415d5bad8f198a8c7fc64 +SHA512 (simplecov-1.1.0.gem) = df990ccdef1bb3b0eb362be8e3b531cdb11cc4253a24037a4d8d4ef0ea9c69c116643d4b41097462610edb18150b416d692288bd4f7515e74d4141788e72c43b +Size (simplecov-1.1.0.gem) = 179712 bytes