2024-01-20 07:21:37 by Makoto Fujiwara | Files touched by this commit (2) |
Log message:
(devel/R-evaluate) Updated 0.21 to 0.23, make test passed
Version 0.23
================================================================================
- Prevent existing plots from leaking into `evaluate()` results
(thanks, @dmurdoch, yihui/knitr#2297).
- If the environment variable `R_EVALUATE_BYPASS_MESSAGES` is set to
true, the arguments `keep_message` and `keep_warning` of
`evaluate()` will be set to `NA`, regardless of user input, which
means messages and warnings will not be captured by
`evaluate()`. This provides a possibility to force logging messages
and warnings (thanks, @slodge, yihui/yihui.org#1458).
Version 0.22
================================================================================
- Fixed a problem in the internal function `plot_calls()` that made
the examples of `recordGraphics` fail to run on its help page
(thanks, Kurt Hornik).
|
2023-06-11 17:08:17 by Makoto Fujiwara | Files touched by this commit (2) |
Log message:
(devel/R-evaluate) Update 0.19 to 0.21
Version 0.21
================================================================================
- `evaluate()` gains `log_echo` and `log_warning` arguments. When set to `TRUE`
these cause code and warnings (respectively) to be immediately emitted to
`stderr()`. This is useful for logging in unattended environments (#118).
- Improved the error message when users accidentally called
`closeAllConnections()` (thanks, @guslipkin,
quarto-dev/quarto-cli#5214).
Version 0.20
================================================================================
- The arguments `keep_message` and `keep_warning` of `evaluate()` can
take the value `NA` now, which means `evaluate()` will not capture
the messages and they will be sent to the console. This is
equivalent to the `FALSE` value before v0.19 (thanks, @gadenbuie,
https://github.com/yihui/yihui.org/discussions/1458).
|
2022-12-18 02:29:20 by Makoto Fujiwara | Files touched by this commit (2) |
Log message:
(devel/R-evaluate) Updated 0.15 to 0.19
Version 0.19
================================================================================
- In `evaluate()`, `keep_message` and `keep_warning` will completely
drop messages and warnings, respectively, when their values are
`FALSE`. Previously messages would still be emitted (to the console)
even if they take `FALSE` values.
- Fixed the bug that `parse_all()` fails with line directives (thanks,
@ArcadeAntics, #114).
Version 0.18
================================================================================
- Fixed tests that were still using the deprecated `ggplot2::qplot()`.
Version 0.17
================================================================================
- Adapted a unit test to the next version of **ggplot2** (thanks,
@thomasp85, #113).
Version 0.16
================================================================================
- Fixed a bug that an empty **ggplot2** plot could be recorded and
incorrectly saved (thanks, @sjspielman, rstudio/rmarkdown#2363).
|
2022-04-16 08:04:38 by Makoto Fujiwara | Files touched by this commit (2) |
Log message:
(devel/R-evaluate) Updated 0.14 to 0.15
Version 0.15
================================================================================
- `new_output_handler()` gains a `calling_handlers` argument. These
are passed to `withCallingHandlers()` before `evaluate()` captures
any conditions.
- Fixed #106: do not assume that `is.atomic(NULL)` returns `TRUE`
(thanks, @mmaechler).
|
2021-10-26 12:20:11 by Nia Alarie | Files touched by this commit (3016) |
Log message:
archivers: Replace RMD160 checksums with BLAKE2s checksums
All checksums have been double-checked against existing RMD160 and
SHA512 hashes
Could not be committed due to merge conflict:
devel/py-traitlets/distinfo
The following distfiles were unfetchable (note: some may be only fetched
conditionally):
./devel/pvs/distinfo pvs-3.2-solaris.tgz
./devel/eclipse/distinfo eclipse-sourceBuild-srcIncluded-3.0.1.zip
|
2021-10-07 15:44:44 by Nia Alarie | Files touched by this commit (3017) |
Log message:
devel: Remove SHA1 hashes for distfiles
|
2019-08-08 21:53:58 by Brook Milligan | Files touched by this commit (189) | |
Log message:
Update all R packages to canonical form.
The canonical form [1] of an R package Makefile includes the
following:
- The first stanza includes R_PKGNAME, R_PKGVER, PKGREVISION (as
needed), and CATEGORIES.
- HOMEPAGE is not present but defined in math/R/Makefile.extension to
refer to the CRAN web page describing the package. Other relevant
web pages are often linked from there via the URL field.
This updates all current R packages to this form, which will make
regular updates _much_ easier, especially using pkgtools/R2pkg.
[1] http://mail-index.netbsd.org/tech-pkg/2019/08/02/msg021711.html
|
2018-07-28 16:40:53 by Brook Milligan | Files touched by this commit (126) |
Log message:
Remove MASTER_SITES= from individual R package Makefiles.
Each R package should include ../../math/R/Makefile.extension, which also
defines MASTER_SITES. Consequently, it is redundant for the individual
packages to do the same. Package-specific definitions also prevent
redefining MASTER_SITES in a single common place.
|
2018-02-05 20:01:54 by Min Sik Kim | Files touched by this commit (2) |
Log message:
devel/R-evaluate: Update to 0.10.1
Changes:
- Added parse_all.call() method to use the original source for
evaluating call objects (because base::deparse() breaks non-ascii
source code).
|
2016-12-18 03:28:50 by Wen Heping | Files touched by this commit (2) |
Log message:
Update to 0.10
Upstream changes:
Version 0.10
------------------------------------------------------------------------------
* Added option for the evaluate function to include timing information of ran
commands. This information will be subsequently rendered by the replay.
Example usage:
evaluate::replay(evaluate::evaluate('Sys.sleep(1)', include_timing = TRUE))
* Added a new function `flush_console()` to emulate `flush.console()` in
`evaluate()` (#61).
* Added a `inject_funs()` function to create functions in the environment passed
to the `envir` argument of `evaluate()`.
|