jonkeane commented on a change in pull request #12159:
URL: https://github.com/apache/arrow/pull/12159#discussion_r787231365
##########
File path: r/NEWS.md
##########
@@ -19,15 +19,54 @@
# arrow 6.0.1.9000
-* Added `decimal256()`. Updated `decimal()`, which now calls `decimal256()` or
`decimal128()` based on the value of the `precision` argument.
-* updated `write_csv_arrow()` to follow the signature of `readr::write_csv()`.
The following arguments are supported:
+## New features
+* Code to generate schemas (and individual data type specficiations) are now
accessible with the `$code()` on a `schema` or `type`. This allows you to
easily get the code needed to create a schema from an object that already has
one.
+* Arrow `Duration` type is now mapped to base R `difftime`.
+* Updated `write_csv_arrow()` to follow the signature of `readr::write_csv()`.
The following arguments are supported:
* `file` identical to `sink`
* `col_names` identical to `include_header`
* other arguments are currently unsupported, but the function errors with a
meaningful message.
-* Added `decimal128()` (~~identical to `decimal()`~~) as the name is more
explicit and updated docs to encourage its use.
+* `lubridate::week()` is now supported in dplyr queries.
+* Added `decimal256()`. Updated `decimal()`, which now calls `decimal256()` or
`decimal128()` based on the value of the `precision` argument.
+* When adding columns in a dplyr pipeline, one can now use `tibble` and
`data.frame` to create columns of tibbles or data.frames respectively (e.g.
`... %>% mutate(df_col = tibble(a, b)) %>% ...`).
+* More of `lubridate`'s `is.*` functions are natively supported in Arrow.
+* Dictionaries (base R's factors) are now supported inside of `coalesce()`.
+* The package now compiles and installs on Raspberry Pi OS.
+
+## Breaking changes
+* R 3.3 is no longer supported (`glue`, which we depend on transitively has
dropped support for 3.3 so we did as well).
Review comment:
¯\_(ツ)_/¯ It would break if you're on 3.3, but I'll move it / get rid of
breaking changes
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]