You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by as...@apache.org on 2024/02/08 01:42:02 UTC

(arrow) 02/02: [cran] bump version and update NEWS.md

This is an automated email from the ASF dual-hosted git repository.

assignuser pushed a commit to branch maint-14.0.2-cran
in repository https://gitbox.apache.org/repos/asf/arrow.git

commit 11a2dcb47714a724acb1611d552c3df78a22a952
Author: Jacob Wujciak-Jens <ja...@wujciak.de>
AuthorDate: Thu Feb 8 02:06:43 2024 +0100

    [cran] bump version and update NEWS.md
---
 r/DESCRIPTION     |  2 +-
 r/NEWS.md         | 33 ++++++++-------------------------
 r/tools/nixlibs.R |  5 ++++-
 3 files changed, 13 insertions(+), 27 deletions(-)

diff --git a/r/DESCRIPTION b/r/DESCRIPTION
index 996e10c4c3..6cd5e9b355 100644
--- a/r/DESCRIPTION
+++ b/r/DESCRIPTION
@@ -1,6 +1,6 @@
 Package: arrow
 Title: Integration to 'Apache' 'Arrow'
-Version: 14.0.2
+Version: 14.0.2.1
 Authors@R: c(
     person("Neal", "Richardson", email = "neal.p.richardson@gmail.com", role = c("aut")),
     person("Ian", "Cook", email = "ianmcook@gmail.com", role = c("aut")),
diff --git a/r/NEWS.md b/r/NEWS.md
index b3d1d94078..7a2230878b 100644
--- a/r/NEWS.md
+++ b/r/NEWS.md
@@ -17,36 +17,19 @@
   under the License.
 -->
 
-# arrow 14.0.2.9000
-
-##  New features
-
-* Bindings for `base::prod` have been added so you can now use it in your dplyr
-  pipelines (i.e., `tbl |> summarize(prod(col))`) without having to pull the
-  data into R (@m-muecke, #38601).
-* Calling `dimnames` or `colnames` on `Dataset` objects now returns a useful
-  result rather than just `NULL` (#38377).
-* The `code()` method on Schema objects now takes an optional `namespace` 
-  argument which, when `TRUE`, prefixes names with `arrow::` which makes
-  the output more portable (@orgadish, #38144).
+# arrow 14.0.2.1
 
 ##  Minor improvements and fixes
 
 * Don't download cmake when ARROW_OFFLINE_BUILD=true and update `SystemRequirements` (#39602).
 * Fallback to source build gracefully if binary download fails (#39587).
-* An error is now thrown instead of warning and pulling the data into R when any
-  of `sub`, `gsub`, `stringr::str_replace`, `stringr::str_replace_all` are
-  passed a length > 1 vector of values in `pattern` (@abfleishman, #39219).
-* Missing documentation was added to `?open_dataset` documenting how to use the
-  ND-JSON support added in arrow 13.0.0 (@Divyansh200102, #38258).
-* To make debugging problems easier when using arrow with AWS S3
-  (e.g., `s3_bucket`, `S3FileSystem`), the debug log level for S3 can be set
-  with the `AWS_S3_LOG_LEVEL` environment variable. 
-  See `?S3FileSystem` for more information. (#38267)
-* Using arrow with duckdb (i.e., `to_duckdb()`) no longer results in warnings
-  when quitting your R session. (#38495)
-* A large number of minor spelling mistakes were fixed (@jsoref, #38929, #38257)
-* The developer documentation has been updated to match changes made in recent releases (#38220)
+* The developer documentation has been updated to match changes made in recent releases (#38220).
+* Check for internet access when building from source and fallback to a 
+  minimally scoped Arrow C++ build (#39699).
+* Built from source by default on macOS (#39861).
+* Support build against older versions of Arrow C++. This is currently opt-in and 
+  requires atleast Arrow C++ 13.0.0 (#39739).
+* Make it possible to use Arrow C++ from rtools on windows (in future rtools versions).  (#39986). 
 
 # arrow 14.0.2
 
diff --git a/r/tools/nixlibs.R b/r/tools/nixlibs.R
index b675baa64d..791313c720 100644
--- a/r/tools/nixlibs.R
+++ b/r/tools/nixlibs.R
@@ -111,7 +111,10 @@ validate_checksum <- function(binary_url, libfile, hush = quietly) {
     enforce_checksum) {
     # Munge the path to the correct sha file which we include during the
     # release process
-    checksum_file <- sub(".+/(.+\\.zip)", "\\1\\.sha512", binary_url)
+    checksum_file <- sub(".+/bin/(.+\\.zip)", "\\1\\.sha512", binary_url)
+    if (grepl("rwinlib", binary_url)) {
+      checksum_file <- "windows/arrow-13.0.0.zip.sha512"
+    }
     checksum_file <- file.path(checksum_path, checksum_file)
 
     # Try `shasum`, and if that doesn't work, fall back to `sha512sum` if not found