-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
group_by(.dots) handling - breaking change? #4734
Comments
Thanks for the bug report — I've fixed the bug and I'm about to make it clear that this argument is deprecated. I'll do a soft deprecation which means it shouldn't affect user group, but it will encourage downstream packages (like dbplyr!) to not use it; we'll move to a stronger deprecation at some point in the future. |
I'm updating a package to remove usage of library(dplyr)
library(rlang)
# leaning towards this one
mtcars %>%
group_by(across(c("mpg", "cyl")))
mtcars %>%
group_by(!!!syms(c("mpg", "cyl"))) |
@tyluRp either is fine. |
Code that used to work in current CRAN release 0.8.3, does not work anymore in recent devel.
Clean R environment, just installed cran
remotes
and githubdplyr
, as of 30m ago.There seems to be a breaking change in the way how
.dots
argument is processed(?). I haven't found any references in NEWS file regarding this.The text was updated successfully, but these errors were encountered: