This is an automated email from the ASF dual-hosted git repository.
thisisnic pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 8a16de63e8 GH-49330: [R] Update docs to reflect removal of OpenSSL 1.0
and 1.1 support (#49331)
8a16de63e8 is described below
commit 8a16de63e82e09076b9b03bb0b2fe17367cc5119
Author: Nic Crane <[email protected]>
AuthorDate: Thu Feb 19 13:48:44 2026 +0000
GH-49330: [R] Update docs to reflect removal of OpenSSL 1.0 and 1.1 support
(#49331)
### Rationale for this change
The R package documentation still references OpenSSL 1.0 and 1.1 binary
variants, but support for these older versions has been removed.
### What changes are included in this PR?
- Update minimum OpenSSL version requirement from 1.0.2 to 3.0
- Update LIBARROW_BINARY possible values to reflect current binaries
(linux-x86_64, linux-aarch64) instead of deprecated openssl-suffixed variants
### Are these changes tested?
Documentation only.
### Are there any user-facing changes?
Documentation clarification only.
---
This PR was generated by Claude. All outputs were reviewed and confirmed
before pushing.
* GitHub Issue: #49330
Authored-by: Nic Crane <[email protected]>
Signed-off-by: Nic Crane <[email protected]>
---
r/vignettes/install.Rmd | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/r/vignettes/install.Rmd b/r/vignettes/install.Rmd
index 14e6622e04..a058975ccf 100644
--- a/r/vignettes/install.Rmd
+++ b/r/vignettes/install.Rmd
@@ -36,7 +36,7 @@ Optional support for reading from cloud storage--AWS S3 and
Google Cloud Storage (GCS)--requires additional system dependencies:
* CURL: install `libcurl-devel` (rpm) or `libcurl4-openssl-dev` (deb)
-* OpenSSL >= 1.0.2: install `openssl-devel` (rpm) or `libssl-dev` (deb)
+* OpenSSL >= 3.0: install `openssl-devel` (rpm) or `libssl-dev` (deb)
The prebuilt binaries come with S3 and GCS support enabled, so you will need
to meet these system requirements in order to use them. If you're building
everything from source, the install script will check for the presence of these
dependencies and turn off S3 and GCS support in the build if the prerequisites
are not met--installation will succeed but without S3 or GCS functionality. If
afterwards you install the missing system requirements, you'll need to
reinstall the package in order [...]
@@ -271,8 +271,7 @@ See below for more in-depth explanations of these
environment variables.
will work with your system. You can set it to `false` to skip this option
altogether, or you can specify a string "distro-version" that corresponds to
a binary that is available, to override what this function may discover by
- default. Possible values are: "linux-openssl-1.0", "linux-openssl-1.1",
- "linux-openssl-3.0".
+ default. Possible values are: "linux-x86_64", "linux-aarch64".
* `LIBARROW_BUILD` : If set to `false`, the build script
will not attempt to build the C++ from source. This means you will only get
a working arrow R package if a prebuilt binary is found.