From 1ede55fd0120532fd335e09481dfbc9bb4b8e16e Mon Sep 17 00:00:00 2001 From: Nic Crane Date: Sat, 25 May 2024 12:37:17 +0100 Subject: [PATCH] Remove future entries from NEWS.md --- r/NEWS.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/r/NEWS.md b/r/NEWS.md index 5afb295377904..36ef2db4c8b39 100644 --- a/r/NEWS.md +++ b/r/NEWS.md @@ -19,13 +19,6 @@ # arrow 16.1.0 -# arrow 15.0.2 -* R functions that users write that use functions that Arrow supports in dataset queries now can be used in queries too. Previously, only functions that used arithmetic operators worked. For example, `time_hours <- function(mins) mins / 60` worked, but `time_hours_rounded <- function(mins) round(mins / 60)` did not; now both work. These are automatic translations rather than true user-defined functions (UDFs); for UDFs, see `register_scalar_function()`. (#41223) -* `summarize()` supports more complex expressions, and correctly handles cases where column names are reused in expressions. -* The `na_matches` argument to the `dplyr::*_join()` functions is now supported. This argument controls whether `NA` values are considered equal when joining. (#41358) - -# arrow 16.1.0 - ## New features * Streams can now be written to socket connections (#38897)