-
Notifications
You must be signed in to change notification settings - Fork 6
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
Compatibility with dplyr 1.1.0 #30
Conversation
Join functions have gotten stricter in dplyr 1.1.0
Thanks for the PR and I'll take a look. I'm supposed to be submitting a new version anyway so will wrap the changes into it. |
I think as this is a data.frame join specific parameter (and not in the generic part of the API) I should let the user control this and pass through the value for On a separate issue though: I notice that the default values of Currently I guess I can explicitly check formal parameters for the
Speaking of documentation: since I inherit documentation from
I guess I should try and install the unstable github version of Many thanks in advance! |
That's a bit tricky. Maybe the simplest way is to pass |
Leaving Once 1.1.0 is released you can just update to |
In dplyr 1.1.0 the join functions are now stricter with unknown arguments instead of ignoring them. This PR fixes an issue where
suffix
would be supplied to join functions that don't have this argument, causing an error.I've also fixed a couple other issues related to tidyselect and I set
multiple = "all"
in join calls to silence a new warning about multiple matches. That might need adjustment if that's not the expected behaviour.We plan to release dplyr on January 27. If possible, a pre-emptive fix release would be helpful to our release process. Thanks!