knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)
library(lifecycle)

Use lifecycle to document the status of your exported functions and arguments:

Stages

The lifecycle stages for functions and arguments closely mirror the lifecycle stages for packages.

There are 4 development stages.

  1. Experimental This is a new feature that is in the very early stage of development. It is exported so users can start to use it and report feedback, but its interface and/or behaviour is likely to change in the future. It is generally best to avoid depending on experimental features.

  2. Maturing The interface and behaviour of a maturing feature has been roughed out, but finer details are likely to change. It still needs more feedback to find the optimal API.

  3. Stable A feature is considered stable when the author is happy with its interface and behaviour. Major changes are unlikely, and breaking changes will occur gradually, through a deprecation process.

  4. Questioning The author is no longer convinced that the feature is the optimal approach. However, there are no recommended alternatives yet.

Once the decision of discontinuing a feature has been made, it goes through 3 deprecation stages.

  1. Soft deprecated The author is no longer happy with a feature because they consider it sub-optimal compared to some other approach, or simply because they no longer have the time to maintain it. A soft-deprecated feature can still be used without hassle, but users should consider switching to an alternative approach.

  2. Deprecated The feature is likely to be discontinued in the next major release. Users should switch to an alternative approach as soon as possible.

  3. Defunct The feature can no longer be used. A defunct function is still exported, and a defunct argument is still part of the signature. This way an informative error can be thrown.

Finally, when a feature is no longer exposed or mentioned in the released version of the package, it is said to be archived.

Badges {#rd-badges}

Make sure your users know what stage a feature is by adding badges in the help topics of your functions.

badge

Verbosity of deprecation

lifecycle offers three levels of verbosity corresponding to the three deprecation stages.

Deprecating functions

These functions take the version number starting from which the feature is considered deprecated (it should remain the same across all deprecation stages), and a feature descriptor:

deprecate_warn("1.0.0", "mypkg::foo()")

You can optionally provide a replacement:

deprecate_warn("1.0.0", "mypkg::foo()", "new()")

For the purpose of these examples we explicitly mentioned the namespace with mypkg::, however you can typically omit it because lifecycle infers the namespace from the calling environment. Specifying the namespace is mostly useful when the replacement is implemented in a different package.

# The new replacement
foobar_adder <- function(foo, bar) {
  foo + bar
}

# The old function still exported for compatibility
foobaz_adder <- function(foo, bar) {
  deprecate_warn("1.0.0", "foobaz_adder()", "foobar_adder()")
  foobar_adder(foo, bar)
}

Deprecating arguments

The syntax for deprecating argument is based on the syntax for deprecating functions:

deprecate_warn("1.0.0", "mypkg::foo(arg = )")

deprecate_warn("1.0.0", "mypkg::foo(arg = )", "mypkg::foo(new = )")

lifecycle also provides the deprecated() sentinel to use as default argument. This provides self-documentation for your users, and makes it possible for external tools to determine which arguments are deprecated. This sentinel is simply the missing argument, so you can test whether the argument was supplied with rlang::is_missing():

foobar_adder <- function(foo, bar, baz = deprecated()) {
  # Check if user has supplied `baz` instead of `bar`
  if (!rlang::is_missing(baz)) {

    # Signal the deprecation to the user
    deprecate_warn("1.0.0", "foobar_adder(baz = )", "foobar_adder(bar = )")

    # Deal with the deprecated argument for compatibility
    bar <- baz
  }

  foo + bar
}

Workflow

Where do these deprecation warnings come from?

Call lifecycle::last_warnings() to see backtraces for all the deprecation warnings that were issued during the last top-level command.

Bumping deprecation stage

Some manual search and replace is needed to bump the status of deprecated features. We recommend starting with defunct features and work your way up:

  1. Search for deprecate_stop() and remove the feature from the package. The feature is now archived.

  2. Search for deprecate_warn() and replace with deprecate_stop().

  3. Search for deprecate_soft() and replace with deprecate_warn().

  4. Call deprecate_soft() from newly deprecated functions.

Don't forget to update the badges in the documentation topics.

Find out what deprecated features you rely on

Test whether your package depends on deprecated features directly or indirectly by setting the verbosity option in the tests/testthat.R file just before test_check() is called:

library(testthat)
library(mypackage)

options(lifecycle_verbosity = "error")
test_check("mypackage")

This forces all deprecated features to fail. You can also set the relevant options manually to force warnings or errors in your session:

# Force silence
options(lifecycle_verbosity = "quiet")

# Force warnings
options(lifecycle_verbosity = "warning")

# Force errors
options(lifecycle_verbosity = "error")

Forcing warnings can be useful in conjuction with last_warnings(), which prints backtraces for all the deprecation warnings issued during the last top-level command.

Test deprecated features

Test whether a deprecated feature still works by disabling the warnings with scoped_lifecycle_silence():

test_that("`baz` argument of `foobar_adder()` still works", {
  withr::local_options(list(lifecycle_verbosity = "quiet"))
  foobar_adder(1, baz = 2)
})

Test that a feature is correctly deprecated by forcing warnings and checking the class "lifecycle_warning_deprecated":

test_that("`baz` argument of `foobar_adder()` is deprecated", {
  withr::local_options(list(lifecycle_verbosity = "warning"))
  expect_warning(foobar_adder(1, baz = 2), class = "lifecycle_warning_deprecated")
})

Defunct features throw errors of class "lifecycle_error_deprecated":

test_that("`foo()` is defunct", {
  expect_error(foo(), class = "lifecycle_error_deprecated")
})


kylehamilton/MAJOR documentation built on May 27, 2021, 5:48 a.m.