summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authortaca <taca@pkgsrc.org>2021-01-11 13:14:29 +0000
committertaca <taca@pkgsrc.org>2021-01-11 13:14:29 +0000
commiteff61b9fe9f501ee9d2c4c70f65d24af34133cd2 (patch)
tree1b531b36fb978b7f981a4de1b6acbd17b18b2529 /devel
parent88d403c1fb89c3b4c86e3b0a1c6731be20ea9d72 (diff)
downloadpkgsrc-eff61b9fe9f501ee9d2c4c70f65d24af34133cd2.tar.gz
devel/ruby-simplecov: update to 0.21.2
0.21.2 (2021-01-09) ========== ## Bugfixes * `maximum_coverage_drop` won't fail any more if `.last_run.json` is still in the old format. Thanks [@petertellgren](https://github.com/petertellgren) * `maximum_coverage_drop` won't fail if an expectation is specified for a previous unrecorded criterion, it will just pass (there's nothing, so nothing to drop) * fixed bug in `maximum_coverage_drop` calculation that could falsely report it had dropped for minimal differences 0.21.1 (2021-01-04) ========== ## Bugfixes * `minimum_coverage_by_file` works again as expected (errored out before 😱) 0.21.0 (2021-01-03) ========== The "Collate++" release making it more viable for big CI setups by limiting memory consumption. Also includes some nice new additions for branch coverage settings. ## Enhancements * Performance of `SimpleCov.collate` improved - it should both run faster and consume much less memory esp. when run with many files (memory consumption should not increase with number of files any more) * Can now define the minimum_coverage_by_file, maximum_coverage_drop and refuse_coverage_drop by branch as well as line coverage. Thanks to [@jemmaissroff](https://github.com/jemmaissroff) * Can set primary coverage to something other than line by setting `primary_coverage :branch` in SimpleCov Configuration. Thanks to [@jemmaissroff](https://github.com/jemmaissroff) ## Misc * reduce gem size by splitting Changelog into `Changelog.md` and a pre 0.18 `Changelog.old.md`, the latter of which is not included in the gem * The interface of `ResultMeger.merge_and_store` is changed to support the `collate` performance improvements mentioned above. It's not considered an official API, hence this is not in the breaking section. For people using it to merge results from different machines, it's recommended to migrate to [collate](https://github.com/simplecov-ruby/simplecov#merging-test-runs-under-different-execution-environments). 0.20.0 (2020-11-29) ========== The "JSON formatter" release. Starting now a JSON formatter is included by default in the release. This is mostly done for Code Climate reasons, you can find more details [in this issue](https://github.com/codeclimate/test-reporter/issues/413). Shipping with so much by default is sub-optimal, we know. It's the long term plan to also provide `simplecov-core` without the HTML or JSON formatters for those who don't need them/for other formatters to rely on. ## Enhancements * `simplecov_json_formatter` included by default ([docs](https://github.com/simplecov-ruby/simplecov#json-formatter)), this should enable the Code Climate test reporter to work again once it's updated * invalidate internal cache after switching `SimpleCov.root`, should help with some bugs 0.19.1 (2020-10-25) ========== ## Bugfixes * No more warnings triggered by `enable_for_subprocesses`. Thanks to [@mame](https://github.com/mame) * Avoid trying to patch `Process.fork` when it isn't available. Thanks to [@MSP-Greg](https://github.com/MSP-Greg)
Diffstat (limited to 'devel')
-rw-r--r--devel/ruby-simplecov/Makefile5
-rw-r--r--devel/ruby-simplecov/PLIST6
-rw-r--r--devel/ruby-simplecov/distinfo10
3 files changed, 10 insertions, 11 deletions
diff --git a/devel/ruby-simplecov/Makefile b/devel/ruby-simplecov/Makefile
index 965cc81aecc..0beb2785ea7 100644
--- a/devel/ruby-simplecov/Makefile
+++ b/devel/ruby-simplecov/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.26 2020/09/14 13:06:11 taca Exp $
+# $NetBSD: Makefile,v 1.27 2021/01/11 13:14:29 taca Exp $
-DISTNAME= simplecov-0.19.0
+DISTNAME= simplecov-0.21.2
CATEGORIES= devel
MAINTAINER= pkgsrc-users@NetBSD.org
@@ -10,6 +10,7 @@ LICENSE= mit
DEPENDS+= ${RUBY_PKGPREFIX}-simplecov-html>=0.11.0<1:../../devel/ruby-simplecov-html
DEPENDS+= ${RUBY_PKGPREFIX}-docile>=1.1.0<2:../../devel/ruby-docile
+DEPENDS+= ${RUBY_PKGPREFIX}-simplecov_json_formatter>=0.1<1:../../textproc/ruby-simplecov_json_formatter
USE_LANGUAGES= # none
diff --git a/devel/ruby-simplecov/PLIST b/devel/ruby-simplecov/PLIST
index 5599b5f7623..a446efe8a08 100644
--- a/devel/ruby-simplecov/PLIST
+++ b/devel/ruby-simplecov/PLIST
@@ -1,9 +1,6 @@
-@comment $NetBSD: PLIST,v 1.16 2020/09/14 13:06:11 taca Exp $
+@comment $NetBSD: PLIST,v 1.17 2021/01/11 13:14:29 taca Exp $
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/CHANGELOG.md
-${GEM_LIBDIR}/CODE_OF_CONDUCT.md
-${GEM_LIBDIR}/CONTRIBUTING.md
-${GEM_LIBDIR}/ISSUE_TEMPLATE.md
${GEM_LIBDIR}/LICENSE
${GEM_LIBDIR}/README.md
${GEM_LIBDIR}/doc/alternate-formatters.md
@@ -19,6 +16,7 @@ ${GEM_LIBDIR}/lib/simplecov/combine/results_combiner.rb
${GEM_LIBDIR}/lib/simplecov/command_guesser.rb
${GEM_LIBDIR}/lib/simplecov/configuration.rb
${GEM_LIBDIR}/lib/simplecov/coverage_statistics.rb
+${GEM_LIBDIR}/lib/simplecov/default_formatter.rb
${GEM_LIBDIR}/lib/simplecov/defaults.rb
${GEM_LIBDIR}/lib/simplecov/exit_codes.rb
${GEM_LIBDIR}/lib/simplecov/exit_codes/exit_code_handling.rb
diff --git a/devel/ruby-simplecov/distinfo b/devel/ruby-simplecov/distinfo
index 94ddb8c86ef..e1ea71f40f1 100644
--- a/devel/ruby-simplecov/distinfo
+++ b/devel/ruby-simplecov/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.21 2020/09/14 13:06:11 taca Exp $
+$NetBSD: distinfo,v 1.22 2021/01/11 13:14:29 taca Exp $
-SHA1 (simplecov-0.19.0.gem) = 6903ad979b33a1be1cb39f8c3ce91db16623cf58
-RMD160 (simplecov-0.19.0.gem) = 5f9e22c2865aca8171185db6a9258194a6e717c9
-SHA512 (simplecov-0.19.0.gem) = f885a1e9bc84065088f1d04e6a97d2252c178faf34249dc721f098dbc624a81e100fe39bd0256944a135bb81fa7d0da2fe4f2c668a76e15e59d7eae3d939f298
-Size (simplecov-0.19.0.gem) = 55808 bytes
+SHA1 (simplecov-0.21.2.gem) = 27c00e022edc07eed242a44fc486374e9ef7b172
+RMD160 (simplecov-0.21.2.gem) = 8dc584ceb15b2f44e68605d99673b8aea24993f4
+SHA512 (simplecov-0.21.2.gem) = 8b25f9b1b79ea180b78bcad27eeabd06f310c6674c681d17899e02144dcac6cb9c53befb70d622d907026cdcaac686be1122ca008d3d6b07139ee809daa8f7ff
+Size (simplecov-0.21.2.gem) = 47104 bytes