Changelog
Source:NEWS.md
config 0.3.2.9000 (development version)
New features:
- Allow expressions in the
inherits:
line of the yaml file (#38)
Bug fixes:
- Fixes bug introduced in v0.3.2 where the result of
config::get()
doesn’t have the correct class, resulting in problems converting to JSON (#49)
config 0.3.2
CRAN release: 2023-08-30
New features:
Better handling of R expressions in the
config.yml
. In particular, you can now refer to other configuration values in the R expression.Check if package is attached and throw message to use
config::ge()
instead.New function
with_config()
that might be useful for testing and in vignettes.Allow using a string for
.active_config
inwith_config()
Documentation:
- New vignettes, in particular using
config
with Posit Connect. - Better documentation to not attach the package and use
config::get()
instead.
config 0.3.1 (2020-12-15)
CRAN release: 2020-12-17
- Bug fix: evaluate expressions only for the active config (not all configs). In previous versions of
config
, all expressions in theyml
file were evaluated, regardless whether these expressions were used in the active config. In this version, the appropriate config is selected, and only then are the expressions evaluated. Fixes #20