From e8c16a4df26e0c09dae29406a1beed62ea6aa61b Mon Sep 17 00:00:00 2001 From: Nic Crane Date: Wed, 23 Aug 2023 09:31:43 +0100 Subject: [PATCH] Update NEWS.md with missed changes --- r/NEWS.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/r/NEWS.md b/r/NEWS.md index 6d09355170a6..b96acb508831 100644 --- a/r/NEWS.md +++ b/r/NEWS.md @@ -19,11 +19,16 @@ # arrow 12.0.1.9000 +## Breaking changes + +* Input objects which inherit only from `data.frame` and no other classes now have the `class` attribute dropped, resulting in now always returning tibbles from file reading functions and `arrow_table()`, which results in consistency in the type of returned objects. Calling `as.data.frame()` on Arrow Tabular objects now always returns a `data.frame` object (#34775) + ## New features * `open_dataset()` now works with ND-JSON files (#35055) * Calling `schema()` on multiple Arrow objects now returns the object's schema (#35543) * dplyr `.by`/`by` argument now supported in arrow implementation of dplyr verbs (@eitsupi, #35667) +* Binding for `dplyr::case_when()` now accepts `.default` parameter to match the update in dplyr 1.1.0 (#35502) ## Minor improvements and fixes