Changelog
Source:NEWS.md
checked 0.5.4
Improve error messaging when using basic_tty
Various improvements to reporters and minor display tweaks
checked 0.5.3
Make is possible to construct reporter environments with additional values to better control their behavior.
Add
checks_onlyparameter toreporter_basic_ttywhich if set to TRUE will make the reporter broadcast only check tasks instead of both install and check.Address changes related to default parameters changes in
callrand resulting NULL comparison inchecked(@gaborcsardi, #93)Multiple API changes facilitating additional customization for tasks.
Ensure packages destined into isolated libraries or those coming from non-standard sources are always installed.
Redesign logs by grouping them into package specific directories.
checked 0.5.2
Add timers striping to
strip_details_from_issue()to avoid false-positives.Remove
pkg_origin_is_base()helper function and use memoisedbase_pkgs().Update
RE_CHECKto capture even more edge cases while parsing R CMD check output.Finish check process even if checks seem incomplete but 3 or mire minutes have passed since the process ended to avoid infinite loops.
Further improvements to the check process finisher.
Make
graph_dedup_attrsrebuild the graph from scratch with deduplicated attributes rather than manipulating the exiting graph. I significantly speeds up the function.
checked 0.5.1
CRAN release: 2026-02-25
Export STATUS vector to make external statuses analysis easier.
Allow obtaining partial results for uncompleted checks.
Export
results_to_df()and make it a generic.
checked 0.2.3
Fix check processes hanging forever in some system configurations.
Remove all whitespaces (
"[[:space:]]") before comparing potential issues to skip most of the false positives.Shortened many user-facing function names. In general, uses of
reversewere shortened torev,dependencieswas shortened todeps,developmentwas shortened todevandpackagewas shortened topkg. For example,check_reverse_dependencies_development()was shortened tocheck_dev_rev_deps()(@dgkf-roche)Fix names in the
enumfunction for R lower than 4.3.Add tests for the reverse dependency check use case.
Make
install_processcapture session’savailable_packages_filtersand reuse them when installing packages to ensure consistency with the main session filtering.Prettify output by stripping excessive new lines.
Force garbage collection before scheduling task, to make sure any already finished processes are removed from the memory.
checked 0.2.3
Use custom
checkedfinisher’s instead of theprocessxfinalizer’s when cleaning up finished processes to avoid executing callbacks when objects are garbage collected.In
rev_dep_check_tasks_dfadd custom package value for each check associated with the release version of the package to make sure, the current release version of the package is always fetched and installed.Prevent
resultsfrom attempting to read results for unfinished checks.
checked 0.2.2
Clear some of the unused utils functions (
can_symlink,symlink_or_copy).Make sure output directory is always created.
checked 0.2.0
CRAN release: 2024-07-26
Change default private
lib.locvalue incheck_processR6 class to NULL to avoid staged installation failures.Terminate all the subprocesses if the
runfunction is interrupted to comply with CRAN requirements.Reorganize methods in the
check_designmaking some of the private.Remove warning about possible problems with isolation.
Rename
development_onlyparameter toversionsin therev_dep_check_tasks_dfMake sure
check_reverse_dependenciesworks when package is not available in the remote sources or has no reverse dependencies.Add
keepparameters to the theprint.checked_results_check_task_spec.Add
error_onparameters to the theresults.check_design.Add
$get_r_exit_status()method to both check and install processes.Add warnings to the reporter whenever sub-processes have non-zero exit status.
Fix race condition when reporting progress for check processes.