You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue is inspired by doing revdep checks for glue. In the next release of glue, which is very soon, glue::glue() will error when .envir is not an actual environment. .envir has always been documented to be an environment and I've been working to make this actually true.
I last did revdep checks for this in December 2023 and I opened issue or PRs everywhere that I could. So logger's usage of this pattern must have arisen more recently (?).
glue_data()does officially accept something "list-ish" as .x. So you should switch to glue_data(.x = list_ish_thing, ...) as opposed to glue(.envir = list_ish_thing, ...) in many places here in this package. I haven't made a PR since it's not a simple, single change; I don't trust myself to get this right, quickly, in someone else's package.
I plan to do a major logger release on CRAN after going through the remaining PRs and deciding on the outstanding questions, and I will make sure to handle this before that happens.
This issue is inspired by doing revdep checks for glue. In the next release of glue, which is very soon,
glue::glue()
will error when.envir
is not an actual environment..envir
has always been documented to be an environment and I've been working to make this actually true.I last did revdep checks for this in December 2023 and I opened issue or PRs everywhere that I could. So logger's usage of this pattern must have arisen more recently (?).
glue_data()
does officially accept something "list-ish" as.x
. So you should switch toglue_data(.x = list_ish_thing, ...)
as opposed toglue(.envir = list_ish_thing, ...)
in many places here in this package. I haven't made a PR since it's not a simple, single change; I don't trust myself to get this right, quickly, in someone else's package.Relevant links in glue:
tidyverse/glue#308
tidyverse/glue@e2b74ff
tidyverse/glue#341
Here's what I'm currently seeing for logger in glue's revdep checks:
https://github.com/tidyverse/glue/blob/main/revdep/problems.md#logger
The text was updated successfully, but these errors were encountered: