Use lifecycle to document the status of your exported functions and arguments:
Choose one of the 7 lifecycle stages a function or argument can be in. You can choose from 4 development stages (experimental, maturing, stable, and questioning) and 3 deprecation stages (soft-deprecated, deprecated, and defunct).
If the function or argument is deprecated, make sure your users know about by calling deprecate_soft()
, deprecate_warn()
, or deprecate_stop()
. These functions try to be informative without being too verbose, with increasing levels of verbosity as the deprecation stage advances.
Include the relevant lifecycle badge in your documentation.
The lifecycle stages for functions and arguments are summarised in the figure below. They’re designed to closely mirror the lifecycle stages for packages.
There are two development stages.
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.
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.
The probable end state of most functions is stable:
Sometimes we are no longer certain that a feature follows or implements the right approach. In this case, we mark it as questioning. It can then either become superseded once we have implemented an alternative, or deprecated. The difference between superseded and deprecated is that a superseded feature is maintained indefinitely for backward compatibility. Alternatively, we may realise that a questioning feature is actually important, and move it back to stable. User feedback is usually important for taking these decisions and always welcome.
The author is no longer convinced that the feature is the optimal approach. However, there are no recommended alternatives yet.
(Previously called retired) A superseded feature is no longer under active development, and a known better alternative is available. However, it is indefinitely kept in the package for backward compatibility. The author will only make the necessary changes to ensure that the function continues working. No new features will be added, and only critical bugs will be fixed.
The deprecation lifecycle is divided into three stages in order to give time to users to switch to an alternative.
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.
The feature is likely to be discontinued in the next major release. Users should switch to an alternative approach as soon as possible.
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.
Make sure your users know what stage a feature is by adding badges in the help topics of your functions.
Call usethis::use_lifecycle()
to import the badges in your package.
Use the lifecycle
Rd macro to insert a badge:
#' \lifecycle{experimental}
#' \lifecycle{soft-deprecated}
This badge renders as text in non-HTML documentation. To document the status of a whole function, a good place to include the badge is at the top of the @description
block. To document an argument, you can put the badge in the argument description.
For functions in development, you typically don’t need to advertise the status if it is the same as the package as a whole. For instance, if your package is maturing, only signal functions in the experimental, stable, and questioning stages.
lifecycle offers three levels of verbosity corresponding to the three deprecation stages.
Soft deprecation: At this stage, call deprecate_soft()
to start warning users about the deprecation in the least disruptive way.
This function only warns (a) users who try the feature from the global workspace, and (b) developers who directly use the feature, when they run unit tests with testthat. No warning is issued outside of unit tests, or when the deprecated feature is called from another package then ther own.
When a warning does get issued, users only see it once every 8 hours rather than at each invokation.
Deprecation: At this stage, call deprecate_warn()
to warn unconditionally about the deprecated feature. The warning is issued only once every 8 hours.
Defunct: The feature is discontinued. Call deprecate_stop()
to fail with an error.
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()")
#> Warning: `foo()` is deprecated as of mypkg 1.0.0.
#> This warning is displayed once every 8 hours.
#> Call `lifecycle::last_warnings()` to see where this warning was generated.
You can optionally provide a replacement:
deprecate_warn("1.0.0", "mypkg::foo()", "new()")
#> Warning: `foo()` is deprecated as of mypkg 1.0.0.
#> Please use `new()` instead.
#> This warning is displayed once every 8 hours.
#> Call `lifecycle::last_warnings()` to see where this warning was generated.
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 syntax for deprecating argument is based on the syntax for deprecating functions:
deprecate_warn("1.0.0", "mypkg::foo(arg = )")
#> Warning: The `arg` argument of `foo()` is deprecated as of mypkg 1.0.0.
#> This warning is displayed once every 8 hours.
#> Call `lifecycle::last_warnings()` to see where this warning was generated.
deprecate_warn("1.0.0", "mypkg::foo(arg = )", "mypkg::foo(new = )")
#> Warning: The `arg` argument of `foo()` is deprecated as of mypkg 1.0.0.
#> Please use the `new` argument instead.
#> This warning is displayed once every 8 hours.
#> Call `lifecycle::last_warnings()` to see where this warning was generated.
An argument can be partially deprecated by disallowing certain input types:
deprecate_warn("1.0.0", "mypkg::foo(arg = 'must be a scalar integer')")
#> Warning: The `arg` argument of `foo()` must be a scalar integer as of mypkg 1.0.0.
#> This warning is displayed once every 8 hours.
#> Call `lifecycle::last_warnings()` to see where this warning was generated.
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. Test whether the argument was supplied by the caller with lifecycle::is_present()
:
foobar_adder <- function(foo, bar, baz = deprecated()) {
# Check if user has supplied `baz` instead of `bar`
if (lifecycle::is_present(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
}
Call lifecycle::last_warnings()
to see backtraces for all the deprecation warnings that were issued during the last top-level command.
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:
Search for deprecate_stop()
and remove the feature from the package. The feature is now archived.
Search for deprecate_warn()
and replace with deprecate_stop()
.
Search for deprecate_soft()
and replace with deprecate_warn()
.
Call deprecate_soft()
from newly deprecated functions.
Don’t forget to update the badges in the documentation topics.
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:
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 whether a deprecated feature still works by setting lifecycle_verbosity
to "quiet"
:
test_that("`baz` argument of `foobar_adder()` still works", {
withr::local_options(list(lifecycle_verbosity = "quiet"))
foobar_adder(1, baz = 2)
})
You can also set up verbosity for a whole testthat file within setup()
and teardown()
blocks:
Test that a feature is correctly deprecated with expect_deprecated()
or expect_defunct()
:
test_that("`baz` argument of `foobar_adder()` is deprecated", {
expect_deprecated(foobar_adder(1, baz = 2))
})
test_that("`foo()` is defunct", {
expect_defunct(foo())
})
More control over verbosity can be exercised with the lifecycle_verbosity
option. See ?verbosity
.