This is an automated email from the ASF dual-hosted git repository. thisisnic pushed a commit to branch maint-25.0.0-r in repository https://gitbox.apache.org/repos/asf/arrow.git
commit 22eb85e827ab8cc127f5089d90fb1e0606214471 Author: Nic Crane <[email protected]> AuthorDate: Mon Jul 13 11:11:55 2026 +0100 [R] Advance arrow_available() and type() from Deprecated to Defunct Both functions have been deprecated for years (type() since 2021, arrow_available() since 2022). Advance to .Defunct() for this release. Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]> --- r/R/arrow-info.R | 3 +-- r/R/type.R | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/r/R/arrow-info.R b/r/R/arrow-info.R index 699f94dcbd..017b9709ea 100644 --- a/r/R/arrow-info.R +++ b/r/R/arrow-info.R @@ -76,8 +76,7 @@ arrow_info <- function() { #' @rdname arrow_info #' @export arrow_available <- function() { - .Deprecated(msg = "Arrow C++ is always available as of 7.0.0") - TRUE + .Defunct(msg = "Arrow C++ is always available as of 7.0.0") } #' @rdname arrow_info diff --git a/r/R/type.R b/r/R/type.R index 27cb0afe3d..fc89a8ff21 100644 --- a/r/R/type.R +++ b/r/R/type.R @@ -91,8 +91,7 @@ infer_type <- function(x, ...) UseMethod("infer_type") #' @rdname infer_type #' @export type <- function(x) { - .Deprecated("infer_type") - infer_type(x) + .Defunct("infer_type") } #' @export
