Compare commits

...

4 commits

13 changed files with 257 additions and 189 deletions

View file

@ -1,9 +1,11 @@
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples # Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on: on:
push: # push:
branches: [main, master] # branches: [main, master]
pull_request: # pull_request:
workflow_dispatch:
name: test-coverage.yaml name: test-coverage.yaml

View file

@ -23,23 +23,18 @@ Description: Casting metadata for REDCap database creation and handling of
Harris et al (2019) <doi:10.1016/j.jbi.2019.103208>). Harris et al (2019) <doi:10.1016/j.jbi.2019.103208>).
Depends: R (>= 4.1.0) Depends: R (>= 4.1.0)
Suggests: Suggests:
httr,
jsonlite,
testthat,
Hmisc, Hmisc,
knitr, knitr,
rmarkdown, rmarkdown,
styler,
devtools, devtools,
roxygen2, roxygen2,
spelling, spelling,
rhub, jsonlite,
rsconnect, testthat
pkgconfig
License: GPL (>= 3) License: GPL (>= 3)
Encoding: UTF-8 Encoding: UTF-8
LazyData: true LazyData: true
RoxygenNote: 7.3.2 RoxygenNote: 7.3.3
URL: https://github.com/agdamsbo/REDCapCAST, https://agdamsbo.github.io/REDCapCAST/ URL: https://github.com/agdamsbo/REDCapCAST, https://agdamsbo.github.io/REDCapCAST/
BugReports: https://github.com/agdamsbo/REDCapCAST/issues BugReports: https://github.com/agdamsbo/REDCapCAST/issues
Imports: Imports:

14
NEWS.md
View file

@ -1,9 +1,21 @@
# REDCapCAST 26.1.1
25.11.1 was never pushed to CRAN, so this fills in for that.
* FIX: spelling
* FIX: Suggested dependencies were trimmed including {styler}.
* FIX: export_redcap_instrument was updated to include default file name for the instrument zip. Ensures custom names has correct file extension.
# REDCapCAST 25.11.1 # REDCapCAST 25.11.1
* FIX: logiccals exported as numeric for data upload * FIX: logicals exported as numeric for data upload
* FIX: improved name cleaning * FIX: improved name cleaning
* FIX: use the more robust readr::write_csv() to export data.
# REDCapCAST 25.3.2 # REDCapCAST 25.3.2
* BUG: The `redcap_wider()` function would attempt to pivot empty selection of columns from list, and failing, causing all functions relying on this to fail. Fixed by filtering out data.frames in list with no additional columns than the "generics". * BUG: The `redcap_wider()` function would attempt to pivot empty selection of columns from list, and failing, causing all functions relying on this to fail. Fixed by filtering out data.frames in list with no additional columns than the "generics".

View file

@ -36,10 +36,16 @@
#' # ) |> #' # ) |>
#' # purrr::pluck("meta") |> #' # purrr::pluck("meta") |>
#' # export_redcap_instrument(file=here::here(paste0("instrument",Sys.Date(),".zip"))) #' # export_redcap_instrument(file=here::here(paste0("instrument",Sys.Date(),".zip")))
export_redcap_instrument <- function(data, export_redcap_instrument <- function(
file, data,
file=here::here(paste0("instrument_",Sys.Date(),".zip")),
force = FALSE, force = FALSE,
record.id = "record_id") { record.id = "record_id") {
# Ensure file name ends with .zip
if (!isTRUE(endsWith(file,".zip"))){
file <- paste0(file,".zip")
}
# Ensure form name is the same # Ensure form name is the same
if (force) { if (force) {
data$form_name <- data$form_name[1] data$form_name <- data$form_name[1]
@ -53,7 +59,11 @@ export_redcap_instrument <- function(data,
} }
temp_dir <- tempdir() temp_dir <- tempdir()
utils::write.csv(data, paste0(temp_dir, "/instrument.csv"), row.names = FALSE, na = "") readr::write_csv(
x = data,
file = paste0(temp_dir, "/instrument.csv"),
na = "")
# utils::write.csv(data, paste0(temp_dir, "/instrument.csv"), row.names = FALSE, na = "")
writeLines("REDCapCAST", paste0(temp_dir, "/origin.txt")) writeLines("REDCapCAST", paste0(temp_dir, "/origin.txt"))
zip::zip( zip::zip(
zipfile = file, zipfile = file,
@ -63,9 +73,10 @@ export_redcap_instrument <- function(data,
} }
#' DEPRICATED Create zips file with necessary content based on data set #' DEPRECATED Create zips file with necessary content based on data set
#' #'
#' @description #' @description
#' Use export_redcap_instrument()
#' Metadata can be added by editing the data dictionary of a project in the #' Metadata can be added by editing the data dictionary of a project in the
#' initial design phase. If you want to later add new instruments, this #' initial design phase. If you want to later add new instruments, this
#' function can be used to create (an) instrument(s) to add to a project in #' function can be used to create (an) instrument(s) to add to a project in

View file

@ -29,6 +29,7 @@ capitalisation
charater charater
cond cond
cpr cpr
csv
da da
dafault dafault
datadictionary datadictionary
@ -90,6 +91,7 @@ shinylive
stRoke stRoke
stata stata
strsplit strsplit
styler
subheader subheader
textclean textclean
thorugh thorugh

View file

@ -126,7 +126,11 @@ server <- function(input, output, session) {
output$downloadData <- shiny::downloadHandler( output$downloadData <- shiny::downloadHandler(
filename = "data_ready.csv", filename = "data_ready.csv",
content = function(file) { content = function(file) {
write.csv(purrr::pluck(dd(), "data"), file, row.names = FALSE, na = "") readr::write_csv(
x = purrr::pluck(dd(), "data"),
file = file,
na = "")
# write.csv(purrr::pluck(dd(), "data"), file, row.names = FALSE, na = "")
} }
) )
@ -134,7 +138,11 @@ server <- function(input, output, session) {
output$downloadMeta <- shiny::downloadHandler( output$downloadMeta <- shiny::downloadHandler(
filename = paste0("REDCapCAST_DataDictionary_", Sys.Date(), ".csv"), filename = paste0("REDCapCAST_DataDictionary_", Sys.Date(), ".csv"),
content = function(file) { content = function(file) {
write.csv(purrr::pluck(dd(), "meta"), file, row.names = FALSE, na = "") readr::write_csv(
x = purrr::pluck(dd(), "meta"),
file = file,
na = "")
# write.csv(purrr::pluck(dd(), "meta"), file, row.names = FALSE, na = "")
} }
) )

View file

@ -19,4 +19,5 @@ Trying to make up for different naming conventions.
} }
\examples{ \examples{
"Research!, ne:ws? and c;l-.ls" |> clean_redcap_name() "Research!, ne:ws? and c;l-.ls" |> clean_redcap_name()
"8_new_TEST_" |> clean_redcap_name()
} }

View file

@ -2,7 +2,7 @@
% Please edit documentation in R/export_redcap_instrument.R % Please edit documentation in R/export_redcap_instrument.R
\name{create_instrument_meta} \name{create_instrument_meta}
\alias{create_instrument_meta} \alias{create_instrument_meta}
\title{DEPRICATED Create zips file with necessary content based on data set} \title{DEPRECATED Create zips file with necessary content based on data set}
\usage{ \usage{
create_instrument_meta(data, dir = here::here(""), record.id = TRUE) create_instrument_meta(data, dir = here::here(""), record.id = TRUE)
} }
@ -20,6 +20,7 @@ Default is TRUE.}
list list
} }
\description{ \description{
Use export_redcap_instrument()
Metadata can be added by editing the data dictionary of a project in the Metadata can be added by editing the data dictionary of a project in the
initial design phase. If you want to later add new instruments, this initial design phase. If you want to later add new instruments, this
function can be used to create (an) instrument(s) to add to a project in function can be used to create (an) instrument(s) to add to a project in

View file

@ -18,5 +18,5 @@ character string of length l
Cut string to desired length Cut string to desired length
} }
\examples{ \examples{
"length" |> cut_string_length(l=3) "length" |> cut_string_length(l = 3)
} }

View file

@ -4,7 +4,12 @@
\alias{export_redcap_instrument} \alias{export_redcap_instrument}
\title{Creates zip-file with necessary content to manually add instrument to database} \title{Creates zip-file with necessary content to manually add instrument to database}
\usage{ \usage{
export_redcap_instrument(data, file, force = FALSE, record.id = "record_id") export_redcap_instrument(
data,
file = here::here(paste0("instrument_", Sys.Date(), ".zip")),
force = FALSE,
record.id = "record_id"
)
} }
\arguments{ \arguments{
\item{data}{metadata for the relevant instrument. \item{data}{metadata for the relevant instrument.

View file

@ -25,7 +25,9 @@ Can be used as a substitute of the base function. Main claim to fame is
easing the split around the defined delimiter, see example. easing the split around the defined delimiter, see example.
} }
\examples{ \examples{
test <- c("12 months follow-up", "3 steps", "mRS 6 weeks", test <- c(
"Counting to 231 now") "12 months follow-up", "3 steps", "mRS 6 weeks",
"Counting to 231 now"
)
strsplitx(test, "[0-9]", type = "around") strsplitx(test, "[0-9]", type = "around")
} }

373
renv.lock
View file

@ -103,12 +103,15 @@
}, },
"Rcpp": { "Rcpp": {
"Package": "Rcpp", "Package": "Rcpp",
"Version": "1.1.0", "Version": "1.1.1",
"Source": "Repository", "Source": "Repository",
"Title": "Seamless R and C++ Integration", "Title": "Seamless R and C++ Integration",
"Date": "2025-07-01", "Date": "2026-01-07",
"Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Romain\", \"Francois\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"JJ\", \"Allaire\", role = \"aut\", comment = c(ORCID = \"0000-0003-0174-9868\")), person(\"Kevin\", \"Ushey\", role = \"aut\", comment = c(ORCID = \"0000-0003-2880-7407\")), person(\"Qiang\", \"Kou\", role = \"aut\", comment = c(ORCID = \"0000-0001-6786-5453\")), person(\"Nathan\", \"Russell\", role = \"aut\"), person(\"Iñaki\", \"Ucar\", role = \"aut\", comment = c(ORCID = \"0000-0001-6403-5550\")), person(\"Doug\", \"Bates\", role = \"aut\", comment = c(ORCID = \"0000-0001-8316-9503\")), person(\"John\", \"Chambers\", role = \"aut\"))", "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Romain\", \"Francois\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"JJ\", \"Allaire\", role = \"aut\", comment = c(ORCID = \"0000-0003-0174-9868\")), person(\"Kevin\", \"Ushey\", role = \"aut\", comment = c(ORCID = \"0000-0003-2880-7407\")), person(\"Qiang\", \"Kou\", role = \"aut\", comment = c(ORCID = \"0000-0001-6786-5453\")), person(\"Nathan\", \"Russell\", role = \"aut\"), person(\"Iñaki\", \"Ucar\", role = \"aut\", comment = c(ORCID = \"0000-0001-6403-5550\")), person(\"Doug\", \"Bates\", role = \"aut\", comment = c(ORCID = \"0000-0001-8316-9503\")), person(\"John\", \"Chambers\", role = \"aut\"))",
"Description": "The 'Rcpp' package provides R functions as well as C++ classes which offer a seamless integration of R and C++. Many R data types and objects can be mapped back and forth to C++ equivalents which facilitates both writing of new code as well as easier integration of third-party libraries. Documentation about 'Rcpp' is provided by several vignettes included in this package, via the 'Rcpp Gallery' site at <https://gallery.rcpp.org>, the paper by Eddelbuettel and Francois (2011, <doi:10.18637/jss.v040.i08>), the book by Eddelbuettel (2013, <doi:10.1007/978-1-4614-6868-4>) and the paper by Eddelbuettel and Balamuta (2018, <doi:10.1080/00031305.2017.1375990>); see 'citation(\"Rcpp\")' for details.", "Description": "The 'Rcpp' package provides R functions as well as C++ classes which offer a seamless integration of R and C++. Many R data types and objects can be mapped back and forth to C++ equivalents which facilitates both writing of new code as well as easier integration of third-party libraries. Documentation about 'Rcpp' is provided by several vignettes included in this package, via the 'Rcpp Gallery' site at <https://gallery.rcpp.org>, the paper by Eddelbuettel and Francois (2011, <doi:10.18637/jss.v040.i08>), the book by Eddelbuettel (2013, <doi:10.1007/978-1-4614-6868-4>) and the paper by Eddelbuettel and Balamuta (2018, <doi:10.1080/00031305.2017.1375990>); see 'citation(\"Rcpp\")' for details.",
"Depends": [
"R (>= 3.5.0)"
],
"Imports": [ "Imports": [
"methods", "methods",
"utils" "utils"
@ -125,6 +128,7 @@
"MailingList": "rcpp-devel@lists.r-forge.r-project.org", "MailingList": "rcpp-devel@lists.r-forge.r-project.org",
"RoxygenNote": "6.1.1", "RoxygenNote": "6.1.1",
"Encoding": "UTF-8", "Encoding": "UTF-8",
"VignetteBuilder": "Rcpp",
"NeedsCompilation": "yes", "NeedsCompilation": "yes",
"Author": "Dirk Eddelbuettel [aut, cre] (ORCID: <https://orcid.org/0000-0001-6419-907X>), Romain Francois [aut] (ORCID: <https://orcid.org/0000-0002-2444-4226>), JJ Allaire [aut] (ORCID: <https://orcid.org/0000-0003-0174-9868>), Kevin Ushey [aut] (ORCID: <https://orcid.org/0000-0003-2880-7407>), Qiang Kou [aut] (ORCID: <https://orcid.org/0000-0001-6786-5453>), Nathan Russell [aut], Iñaki Ucar [aut] (ORCID: <https://orcid.org/0000-0001-6403-5550>), Doug Bates [aut] (ORCID: <https://orcid.org/0000-0001-8316-9503>), John Chambers [aut]", "Author": "Dirk Eddelbuettel [aut, cre] (ORCID: <https://orcid.org/0000-0001-6419-907X>), Romain Francois [aut] (ORCID: <https://orcid.org/0000-0002-2444-4226>), JJ Allaire [aut] (ORCID: <https://orcid.org/0000-0003-0174-9868>), Kevin Ushey [aut] (ORCID: <https://orcid.org/0000-0003-2880-7407>), Qiang Kou [aut] (ORCID: <https://orcid.org/0000-0001-6786-5453>), Nathan Russell [aut], Iñaki Ucar [aut] (ORCID: <https://orcid.org/0000-0001-6403-5550>), Doug Bates [aut] (ORCID: <https://orcid.org/0000-0001-8316-9503>), John Chambers [aut]",
"Maintainer": "Dirk Eddelbuettel <edd@debian.org>", "Maintainer": "Dirk Eddelbuettel <edd@debian.org>",
@ -366,7 +370,7 @@
}, },
"bslib": { "bslib": {
"Package": "bslib", "Package": "bslib",
"Version": "0.9.0", "Version": "0.10.0",
"Source": "Repository", "Source": "Repository",
"Title": "Custom 'Bootstrap' 'Sass' Themes for 'shiny' and 'rmarkdown'", "Title": "Custom 'Bootstrap' 'Sass' Themes for 'shiny' and 'rmarkdown'",
"Authors@R": "c( person(\"Carson\", \"Sievert\", , \"carson@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Garrick\", \"Aden-Buie\", , \"garrick@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0002-7111-0077\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(, \"Bootstrap contributors\", role = \"ctb\", comment = \"Bootstrap library\"), person(, \"Twitter, Inc\", role = \"cph\", comment = \"Bootstrap library\"), person(\"Javi\", \"Aguilar\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap colorpicker library\"), person(\"Thomas\", \"Park\", role = c(\"ctb\", \"cph\"), comment = \"Bootswatch library\"), person(, \"PayPal\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap accessibility plugin\") )", "Authors@R": "c( person(\"Carson\", \"Sievert\", , \"carson@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Garrick\", \"Aden-Buie\", , \"garrick@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0002-7111-0077\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(, \"Bootstrap contributors\", role = \"ctb\", comment = \"Bootstrap library\"), person(, \"Twitter, Inc\", role = \"cph\", comment = \"Bootstrap library\"), person(\"Javi\", \"Aguilar\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap colorpicker library\"), person(\"Thomas\", \"Park\", role = c(\"ctb\", \"cph\"), comment = \"Bootswatch library\"), person(, \"PayPal\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap accessibility plugin\") )",
@ -392,16 +396,18 @@
"sass (>= 0.4.9)" "sass (>= 0.4.9)"
], ],
"Suggests": [ "Suggests": [
"brand.yml",
"bsicons", "bsicons",
"curl", "curl",
"fontawesome", "fontawesome",
"future", "future",
"ggplot2", "ggplot2",
"knitr", "knitr",
"lattice",
"magrittr", "magrittr",
"rappdirs", "rappdirs",
"rmarkdown (>= 2.7)", "rmarkdown (>= 2.7)",
"shiny (> 1.8.1)", "shiny (>= 1.11.1)",
"testthat", "testthat",
"thematic", "thematic",
"tools", "tools",
@ -416,10 +422,10 @@
"Config/testthat/parallel": "true", "Config/testthat/parallel": "true",
"Config/testthat/start-first": "zzzz-bs-sass, fonts, zzz-precompile, theme-*, rmd-*", "Config/testthat/start-first": "zzzz-bs-sass, fonts, zzz-precompile, theme-*, rmd-*",
"Encoding": "UTF-8", "Encoding": "UTF-8",
"RoxygenNote": "7.3.2", "RoxygenNote": "7.3.3",
"Collate": "'accordion.R' 'breakpoints.R' 'bs-current-theme.R' 'bs-dependencies.R' 'bs-global.R' 'bs-remove.R' 'bs-theme-layers.R' 'bs-theme-preset-bootswatch.R' 'bs-theme-preset-brand.R' 'bs-theme-preset-builtin.R' 'bs-theme-preset.R' 'utils.R' 'bs-theme-preview.R' 'bs-theme-update.R' 'bs-theme.R' 'bslib-package.R' 'buttons.R' 'card.R' 'deprecated.R' 'files.R' 'fill.R' 'imports.R' 'input-dark-mode.R' 'input-switch.R' 'layout.R' 'nav-items.R' 'nav-update.R' 'navbar_options.R' 'navs-legacy.R' 'navs.R' 'onLoad.R' 'page.R' 'popover.R' 'precompiled.R' 'print.R' 'shiny-devmode.R' 'sidebar.R' 'staticimports.R' 'tooltip.R' 'utils-deps.R' 'utils-shiny.R' 'utils-tags.R' 'value-box.R' 'version-default.R' 'versions.R'", "Collate": "'accordion.R' 'breakpoints.R' 'bs-current-theme.R' 'bs-dependencies.R' 'bs-global.R' 'bs-remove.R' 'bs-theme-layers.R' 'bs-theme-preset-bootswatch.R' 'bs-theme-preset-brand.R' 'bs-theme-preset-builtin.R' 'bs-theme-preset.R' 'utils.R' 'bs-theme-preview.R' 'bs-theme-update.R' 'bs-theme.R' 'bslib-package.R' 'buttons.R' 'card.R' 'deprecated.R' 'files.R' 'fill.R' 'imports.R' 'input-code-editor.R' 'input-dark-mode.R' 'input-submit.R' 'input-switch.R' 'layout.R' 'nav-items.R' 'nav-update.R' 'navbar_options.R' 'navs-legacy.R' 'navs.R' 'onLoad.R' 'page.R' 'popover.R' 'precompiled.R' 'print.R' 'shiny-devmode.R' 'sidebar.R' 'staticimports.R' 'toast.R' 'tooltip.R' 'utils-deps.R' 'utils-shiny.R' 'utils-tags.R' 'value-box.R' 'version-default.R' 'versions.R'",
"NeedsCompilation": "no", "NeedsCompilation": "no",
"Author": "Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>), Joe Cheng [aut], Garrick Aden-Buie [aut] (<https://orcid.org/0000-0002-7111-0077>), Posit Software, PBC [cph, fnd], Bootstrap contributors [ctb] (Bootstrap library), Twitter, Inc [cph] (Bootstrap library), Javi Aguilar [ctb, cph] (Bootstrap colorpicker library), Thomas Park [ctb, cph] (Bootswatch library), PayPal [ctb, cph] (Bootstrap accessibility plugin)", "Author": "Carson Sievert [aut, cre] (ORCID: <https://orcid.org/0000-0002-4958-2844>), Joe Cheng [aut], Garrick Aden-Buie [aut] (ORCID: <https://orcid.org/0000-0002-7111-0077>), Posit Software, PBC [cph, fnd], Bootstrap contributors [ctb] (Bootstrap library), Twitter, Inc [cph] (Bootstrap library), Javi Aguilar [ctb, cph] (Bootstrap colorpicker library), Thomas Park [ctb, cph] (Bootswatch library), PayPal [ctb, cph] (Bootstrap accessibility plugin)",
"Maintainer": "Carson Sievert <carson@posit.co>", "Maintainer": "Carson Sievert <carson@posit.co>",
"Repository": "CRAN" "Repository": "CRAN"
}, },
@ -451,7 +457,7 @@
}, },
"cards": { "cards": {
"Package": "cards", "Package": "cards",
"Version": "0.7.0", "Version": "0.7.1",
"Source": "Repository", "Source": "Repository",
"Title": "Analysis Results Data", "Title": "Analysis Results Data",
"Authors@R": "c( person(\"Daniel D.\", \"Sjoberg\", , \"danield.sjoberg@gmail.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-0862-2018\")), person(\"Becca\", \"Krouse\", , \"becca.z.krouse@gsk.com\", role = \"aut\"), person(\"Emily\", \"de la Rua\", , \"emily.de_la_rua@contractors.roche.com\", role = \"aut\", comment = c(ORCID = \"0009-0000-8738-5561\")), person(\"Malan\", \"Bosman\", , \"malanbos@gmail.com\", role = \"aut\", comment = c(ORCID = \"0000-0002-3020-195X\")), person(\"F. Hoffmann-La Roche AG\", role = c(\"cph\", \"fnd\")), person(\"GlaxoSmithKline Research & Development Limited\", role = \"cph\") )", "Authors@R": "c( person(\"Daniel D.\", \"Sjoberg\", , \"danield.sjoberg@gmail.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-0862-2018\")), person(\"Becca\", \"Krouse\", , \"becca.z.krouse@gsk.com\", role = \"aut\"), person(\"Emily\", \"de la Rua\", , \"emily.de_la_rua@contractors.roche.com\", role = \"aut\", comment = c(ORCID = \"0009-0000-8738-5561\")), person(\"Malan\", \"Bosman\", , \"malanbos@gmail.com\", role = \"aut\", comment = c(ORCID = \"0000-0002-3020-195X\")), person(\"F. Hoffmann-La Roche AG\", role = c(\"cph\", \"fnd\")), person(\"GlaxoSmithKline Research & Development Limited\", role = \"cph\") )",
@ -463,16 +469,16 @@
"R (>= 4.1)" "R (>= 4.1)"
], ],
"Imports": [ "Imports": [
"cli (>= 3.6.1)", "cli (>= 3.6.5)",
"dplyr (>= 1.1.2)", "dplyr (>= 1.1.4)",
"glue (>= 1.6.2)", "glue (>= 1.8.0)",
"lifecycle (>= 1.0.3)", "lifecycle (>= 1.0.4)",
"rlang (>= 1.1.1)", "rlang (>= 1.1.6)",
"tidyr (>= 1.3.0)", "tidyr (>= 1.3.1)",
"tidyselect (>= 1.2.0)" "tidyselect (>= 1.2.1)"
], ],
"Suggests": [ "Suggests": [
"testthat (>= 3.2.0)", "testthat (>= 3.2.3)",
"withr (>= 3.0.0)" "withr (>= 3.0.0)"
], ],
"Config/Needs/coverage": "hms", "Config/Needs/coverage": "hms",
@ -482,7 +488,7 @@
"Encoding": "UTF-8", "Encoding": "UTF-8",
"Language": "en-US", "Language": "en-US",
"LazyData": "true", "LazyData": "true",
"RoxygenNote": "7.3.2", "RoxygenNote": "7.3.3",
"NeedsCompilation": "no", "NeedsCompilation": "no",
"Author": "Daniel D. Sjoberg [aut, cre] (ORCID: <https://orcid.org/0000-0003-0862-2018>), Becca Krouse [aut], Emily de la Rua [aut] (ORCID: <https://orcid.org/0009-0000-8738-5561>), Malan Bosman [aut] (ORCID: <https://orcid.org/0000-0002-3020-195X>), F. Hoffmann-La Roche AG [cph, fnd], GlaxoSmithKline Research & Development Limited [cph]", "Author": "Daniel D. Sjoberg [aut, cre] (ORCID: <https://orcid.org/0000-0003-0862-2018>), Becca Krouse [aut], Emily de la Rua [aut] (ORCID: <https://orcid.org/0009-0000-8738-5561>), Malan Bosman [aut] (ORCID: <https://orcid.org/0000-0002-3020-195X>), F. Hoffmann-La Roche AG [cph, fnd], GlaxoSmithKline Research & Development Limited [cph]",
"Maintainer": "Daniel D. Sjoberg <danield.sjoberg@gmail.com>", "Maintainer": "Daniel D. Sjoberg <danield.sjoberg@gmail.com>",
@ -490,7 +496,7 @@
}, },
"cardx": { "cardx": {
"Package": "cardx", "Package": "cardx",
"Version": "0.3.0", "Version": "0.3.1",
"Source": "Repository", "Source": "Repository",
"Title": "Extra Analysis Results Data Utilities", "Title": "Extra Analysis Results Data Utilities",
"Authors@R": "c( person(\"Daniel D.\", \"Sjoberg\", , \"danield.sjoberg@gmail.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-0862-2018\")), person(\"Abinaya\", \"Yogasekaram\", , \"abinaya.yogasekaram@contractors.roche.com\", role = \"aut\"), person(\"Emily\", \"de la Rua\", , \"emily.de_la_rua@contractors.roche.com\", role = \"aut\"), person(\"Malcolm\", \"Barrett\", role = \"ctb\", comment = c(ORCID = \"0000-0003-0299-5825\")), person(\"F. Hoffmann-La Roche AG\", role = c(\"cph\", \"fnd\")) )", "Authors@R": "c( person(\"Daniel D.\", \"Sjoberg\", , \"danield.sjoberg@gmail.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-0862-2018\")), person(\"Abinaya\", \"Yogasekaram\", , \"abinaya.yogasekaram@contractors.roche.com\", role = \"aut\"), person(\"Emily\", \"de la Rua\", , \"emily.de_la_rua@contractors.roche.com\", role = \"aut\"), person(\"Malcolm\", \"Barrett\", role = \"ctb\", comment = c(ORCID = \"0000-0003-0299-5825\")), person(\"F. Hoffmann-La Roche AG\", role = c(\"cph\", \"fnd\")) )",
@ -533,7 +539,7 @@
"Config/testthat/parallel": "true", "Config/testthat/parallel": "true",
"Encoding": "UTF-8", "Encoding": "UTF-8",
"Language": "en-US", "Language": "en-US",
"RoxygenNote": "7.3.2", "RoxygenNote": "7.3.3",
"NeedsCompilation": "no", "NeedsCompilation": "no",
"Author": "Daniel D. Sjoberg [aut, cre] (ORCID: <https://orcid.org/0000-0003-0862-2018>), Abinaya Yogasekaram [aut], Emily de la Rua [aut], Malcolm Barrett [ctb] (ORCID: <https://orcid.org/0000-0003-0299-5825>), F. Hoffmann-La Roche AG [cph, fnd]", "Author": "Daniel D. Sjoberg [aut, cre] (ORCID: <https://orcid.org/0000-0003-0862-2018>), Abinaya Yogasekaram [aut], Emily de la Rua [aut], Malcolm Barrett [ctb] (ORCID: <https://orcid.org/0000-0003-0299-5825>), F. Hoffmann-La Roche AG [cph, fnd]",
"Maintainer": "Daniel D. Sjoberg <danield.sjoberg@gmail.com>", "Maintainer": "Daniel D. Sjoberg <danield.sjoberg@gmail.com>",
@ -717,7 +723,7 @@
}, },
"cpp11": { "cpp11": {
"Package": "cpp11", "Package": "cpp11",
"Version": "0.5.2", "Version": "0.5.3",
"Source": "Repository", "Source": "Repository",
"Title": "A C++11 Interface for R's C Interface", "Title": "A C++11 Interface for R's C Interface",
"Authors@R": "c( person(\"Davis\", \"Vaughan\", email = \"davis@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4777-038X\")), person(\"Jim\",\"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Benjamin\", \"Kietzman\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", "Authors@R": "c( person(\"Davis\", \"Vaughan\", email = \"davis@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4777-038X\")), person(\"Jim\",\"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Benjamin\", \"Kietzman\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
@ -758,7 +764,7 @@
"Encoding": "UTF-8", "Encoding": "UTF-8",
"RoxygenNote": "7.3.2", "RoxygenNote": "7.3.2",
"NeedsCompilation": "no", "NeedsCompilation": "no",
"Author": "Davis Vaughan [aut, cre] (<https://orcid.org/0000-0003-4777-038X>), Jim Hester [aut] (<https://orcid.org/0000-0002-2739-7082>), Romain François [aut] (<https://orcid.org/0000-0002-2444-4226>), Benjamin Kietzman [ctb], Posit Software, PBC [cph, fnd]", "Author": "Davis Vaughan [aut, cre] (ORCID: <https://orcid.org/0000-0003-4777-038X>), Jim Hester [aut] (ORCID: <https://orcid.org/0000-0002-2739-7082>), Romain François [aut] (ORCID: <https://orcid.org/0000-0002-2444-4226>), Benjamin Kietzman [ctb], Posit Software, PBC [cph, fnd]",
"Maintainer": "Davis Vaughan <davis@posit.co>", "Maintainer": "Davis Vaughan <davis@posit.co>",
"Repository": "CRAN" "Repository": "CRAN"
}, },
@ -828,10 +834,10 @@
}, },
"digest": { "digest": {
"Package": "digest", "Package": "digest",
"Version": "0.6.38", "Version": "0.6.39",
"Source": "Repository", "Source": "Repository",
"Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Antoine\", \"Lucas\", role=\"ctb\", comment = c(ORCID = \"0000-0002-8059-9767\")), person(\"Jarek\", \"Tuszynski\", role=\"ctb\"), person(\"Henrik\", \"Bengtsson\", role=\"ctb\", comment = c(ORCID = \"0000-0002-7579-5165\")), person(\"Simon\", \"Urbanek\", role=\"ctb\", comment = c(ORCID = \"0000-0003-2297-1732\")), person(\"Mario\", \"Frasca\", role=\"ctb\"), person(\"Bryan\", \"Lewis\", role=\"ctb\"), person(\"Murray\", \"Stokely\", role=\"ctb\"), person(\"Hannes\", \"Muehleisen\", role=\"ctb\", comment = c(ORCID = \"0000-0001-8552-0029\")), person(\"Duncan\", \"Murdoch\", role=\"ctb\"), person(\"Jim\", \"Hester\", role=\"ctb\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Wush\", \"Wu\", role=\"ctb\", comment = c(ORCID = \"0000-0001-5180-0567\")), person(\"Qiang\", \"Kou\", role=\"ctb\", comment = c(ORCID = \"0000-0001-6786-5453\")), person(\"Thierry\", \"Onkelinx\", role=\"ctb\", comment = c(ORCID = \"0000-0001-8804-4216\")), person(\"Michel\", \"Lang\", role=\"ctb\", comment = c(ORCID = \"0000-0001-9754-0393\")), person(\"Viliam\", \"Simko\", role=\"ctb\"), person(\"Kurt\", \"Hornik\", role=\"ctb\", comment = c(ORCID = \"0000-0003-4198-9911\")), person(\"Radford\", \"Neal\", role=\"ctb\", comment = c(ORCID = \"0000-0002-2473-3407\")), person(\"Kendon\", \"Bell\", role=\"ctb\", comment = c(ORCID = \"0000-0002-9093-8312\")), person(\"Matthew\", \"de Queljoe\", role=\"ctb\"), person(\"Dmitry\", \"Selivanov\", role=\"ctb\", comment = c(ORCID = \"0000-0003-0492-6647\")), person(\"Ion\", \"Suruceanu\", role=\"ctb\", comment = c(ORCID = \"0009-0005-6446-4909\")), person(\"Bill\", \"Denney\", role=\"ctb\", comment = c(ORCID = \"0000-0002-5759-428X\")), person(\"Dirk\", \"Schumacher\", role=\"ctb\"), person(\"András\", \"Svraka\", role=\"ctb\", comment = c(ORCID = \"0009-0008-8480-1329\")), person(\"Sergey\", \"Fedorov\", role=\"ctb\", comment = c(ORCID = \"0000-0002-5970-7233\")), person(\"Will\", \"Landau\", role=\"ctb\", comment = c(ORCID = \"0000-0003-1878-3253\")), person(\"Floris\", \"Vanderhaeghe\", role=\"ctb\", comment = c(ORCID = \"0000-0002-6378-6229\")), person(\"Kevin\", \"Tappe\", role=\"ctb\"), person(\"Harris\", \"McGehee\", role=\"ctb\"), person(\"Tim\", \"Mastny\", role=\"ctb\"), person(\"Aaron\", \"Peikert\", role=\"ctb\", comment = c(ORCID = \"0000-0001-7813-818X\")), person(\"Mark\", \"van der Loo\", role=\"ctb\", comment = c(ORCID = \"0000-0002-9807-4686\")), person(\"Chris\", \"Muir\", role=\"ctb\", comment = c(ORCID = \"0000-0003-2555-3878\")), person(\"Moritz\", \"Beller\", role=\"ctb\", comment = c(ORCID = \"0000-0003-4852-0526\")), person(\"Sebastian\", \"Campbell\", role=\"ctb\", comment = c(ORCID = \"0009-0000-5948-4503\")), person(\"Winston\", \"Chang\", role=\"ctb\", comment = c(ORCID = \"0000-0002-1576-2126\")), person(\"Dean\", \"Attali\", role=\"ctb\", comment = c(ORCID = \"0000-0002-5645-3493\")), person(\"Michael\", \"Chirico\", role=\"ctb\", comment = c(ORCID = \"0000-0003-0787-087X\")), person(\"Kevin\", \"Ushey\", role=\"ctb\", comment = c(ORCID = \"0000-0003-2880-7407\")), person(\"Carl\", \"Pearson\", role=\"ctb\", comment = c(ORCID = \"0000-0003-0701-7860\")))", "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Antoine\", \"Lucas\", role=\"ctb\", comment = c(ORCID = \"0000-0002-8059-9767\")), person(\"Jarek\", \"Tuszynski\", role=\"ctb\"), person(\"Henrik\", \"Bengtsson\", role=\"ctb\", comment = c(ORCID = \"0000-0002-7579-5165\")), person(\"Simon\", \"Urbanek\", role=\"ctb\", comment = c(ORCID = \"0000-0003-2297-1732\")), person(\"Mario\", \"Frasca\", role=\"ctb\"), person(\"Bryan\", \"Lewis\", role=\"ctb\"), person(\"Murray\", \"Stokely\", role=\"ctb\"), person(\"Hannes\", \"Muehleisen\", role=\"ctb\", comment = c(ORCID = \"0000-0001-8552-0029\")), person(\"Duncan\", \"Murdoch\", role=\"ctb\"), person(\"Jim\", \"Hester\", role=\"ctb\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Wush\", \"Wu\", role=\"ctb\", comment = c(ORCID = \"0000-0001-5180-0567\")), person(\"Qiang\", \"Kou\", role=\"ctb\", comment = c(ORCID = \"0000-0001-6786-5453\")), person(\"Thierry\", \"Onkelinx\", role=\"ctb\", comment = c(ORCID = \"0000-0001-8804-4216\")), person(\"Michel\", \"Lang\", role=\"ctb\", comment = c(ORCID = \"0000-0001-9754-0393\")), person(\"Viliam\", \"Simko\", role=\"ctb\"), person(\"Kurt\", \"Hornik\", role=\"ctb\", comment = c(ORCID = \"0000-0003-4198-9911\")), person(\"Radford\", \"Neal\", role=\"ctb\", comment = c(ORCID = \"0000-0002-2473-3407\")), person(\"Kendon\", \"Bell\", role=\"ctb\", comment = c(ORCID = \"0000-0002-9093-8312\")), person(\"Matthew\", \"de Queljoe\", role=\"ctb\"), person(\"Dmitry\", \"Selivanov\", role=\"ctb\", comment = c(ORCID = \"0000-0003-0492-6647\")), person(\"Ion\", \"Suruceanu\", role=\"ctb\", comment = c(ORCID = \"0009-0005-6446-4909\")), person(\"Bill\", \"Denney\", role=\"ctb\", comment = c(ORCID = \"0000-0002-5759-428X\")), person(\"Dirk\", \"Schumacher\", role=\"ctb\"), person(\"András\", \"Svraka\", role=\"ctb\", comment = c(ORCID = \"0009-0008-8480-1329\")), person(\"Sergey\", \"Fedorov\", role=\"ctb\", comment = c(ORCID = \"0000-0002-5970-7233\")), person(\"Will\", \"Landau\", role=\"ctb\", comment = c(ORCID = \"0000-0003-1878-3253\")), person(\"Floris\", \"Vanderhaeghe\", role=\"ctb\", comment = c(ORCID = \"0000-0002-6378-6229\")), person(\"Kevin\", \"Tappe\", role=\"ctb\"), person(\"Harris\", \"McGehee\", role=\"ctb\"), person(\"Tim\", \"Mastny\", role=\"ctb\"), person(\"Aaron\", \"Peikert\", role=\"ctb\", comment = c(ORCID = \"0000-0001-7813-818X\")), person(\"Mark\", \"van der Loo\", role=\"ctb\", comment = c(ORCID = \"0000-0002-9807-4686\")), person(\"Chris\", \"Muir\", role=\"ctb\", comment = c(ORCID = \"0000-0003-2555-3878\")), person(\"Moritz\", \"Beller\", role=\"ctb\", comment = c(ORCID = \"0000-0003-4852-0526\")), person(\"Sebastian\", \"Campbell\", role=\"ctb\", comment = c(ORCID = \"0009-0000-5948-4503\")), person(\"Winston\", \"Chang\", role=\"ctb\", comment = c(ORCID = \"0000-0002-1576-2126\")), person(\"Dean\", \"Attali\", role=\"ctb\", comment = c(ORCID = \"0000-0002-5645-3493\")), person(\"Michael\", \"Chirico\", role=\"ctb\", comment = c(ORCID = \"0000-0003-0787-087X\")), person(\"Kevin\", \"Ushey\", role=\"ctb\", comment = c(ORCID = \"0000-0003-2880-7407\")), person(\"Carl\", \"Pearson\", role=\"ctb\", comment = c(ORCID = \"0000-0003-0701-7860\")))",
"Date": "2025-11-09", "Date": "2025-11-19",
"Title": "Create Compact Hash Digests of R Objects", "Title": "Create Compact Hash Digests of R Objects",
"Description": "Implementation of a function 'digest()' for the creation of hash digests of arbitrary R objects (using the 'md5', 'sha-1', 'sha-256', 'crc32', 'xxhash', 'murmurhash', 'spookyhash', 'blake3', 'crc32c', 'xxh3_64', and 'xxh3_128' algorithms) permitting easy comparison of R language objects, as well as functions such as 'hmac()' to create hash-based message authentication code. Please note that this package is not meant to be deployed for cryptographic purposes for which more comprehensive (and widely tested) libraries such as 'OpenSSL' should be used.", "Description": "Implementation of a function 'digest()' for the creation of hash digests of arbitrary R objects (using the 'md5', 'sha-1', 'sha-256', 'crc32', 'xxhash', 'murmurhash', 'spookyhash', 'blake3', 'crc32c', 'xxh3_64', and 'xxh3_128' algorithms) permitting easy comparison of R language objects, as well as functions such as 'hmac()' to create hash-based message authentication code. Please note that this package is not meant to be deployed for cryptographic purposes for which more comprehensive (and widely tested) libraries such as 'OpenSSL' should be used.",
"URL": "https://github.com/eddelbuettel/digest, https://eddelbuettel.github.io/digest/, https://dirk.eddelbuettel.com/code/digest.html", "URL": "https://github.com/eddelbuettel/digest, https://eddelbuettel.github.io/digest/, https://dirk.eddelbuettel.com/code/digest.html",
@ -1218,17 +1224,17 @@
}, },
"gt": { "gt": {
"Package": "gt", "Package": "gt",
"Version": "1.1.0", "Version": "1.3.0",
"Source": "Repository", "Source": "Repository",
"Type": "Package", "Type": "Package",
"Title": "Easily Create Presentation-Ready Display Tables", "Title": "Easily Create Presentation-Ready Display Tables",
"Authors@R": "c( person(\"Richard\", \"Iannone\", , \"rich@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-3925-190X\")), person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Barret\", \"Schloerke\", , \"barret@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0001-9986-114X\")), person(\"Ellis\", \"Hughes\", , \"ellis.h.hughes@gsk.com\", role = \"aut\", comment = c(ORCID = \"0000-0003-0637-4436\")), person(\"Alexandra\", \"Lauer\", , \"alexandralauer1@gmail.com\", role = \"aut\", comment = c(ORCID = \"0000-0002-4191-6301\")), person(\"JooYoung\", \"Seo\", , \"jseo1005@illinois.edu\", role = \"aut\", comment = c(ORCID = \"0000-0002-4064-6012\")), person(\"Ken\", \"Brevoort\", , \"ken@brevoort.com\", role = \"aut\", comment = c(ORCID = \"0000-0002-4001-8358\")), person(\"Olivier\", \"Roy\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", "Authors@R": "c( person(\"Richard\", \"Iannone\", , \"rich@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-3925-190X\")), person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Barret\", \"Schloerke\", , \"barret@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0001-9986-114X\")), person(\"Shannon\", \"Haughton\", , \"shannon.l.haughton@gsk.com\", role = \"aut\"), person(\"Ellis\", \"Hughes\", , \"ellis.h.hughes@gsk.com\", role = \"aut\", comment = c(ORCID = \"0000-0003-0637-4436\")), person(\"Alexandra\", \"Lauer\", , \"alexandralauer1@gmail.com\", role = \"aut\", comment = c(ORCID = \"0000-0002-4191-6301\")), person(\"Romain\", \"François\", , \"romain@tada.science\", role = \"aut\"), person(\"JooYoung\", \"Seo\", , \"jseo1005@illinois.edu\", role = \"aut\", comment = c(ORCID = \"0000-0002-4064-6012\")), person(\"Ken\", \"Brevoort\", , \"ken@brevoort.com\", role = \"aut\", comment = c(ORCID = \"0000-0002-4001-8358\")), person(\"Olivier\", \"Roy\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "Build display tables from tabular data with an easy-to-use set of functions. With its progressive approach, we can construct display tables with a cohesive set of table parts. Table values can be formatted using any of the included formatting functions. Footnotes and cell styles can be precisely added through a location targeting system. The way in which 'gt' handles things for you means that you don't often have to worry about the fine details.", "Description": "Build display tables from tabular data with an easy-to-use set of functions. With its progressive approach, we can construct display tables with a cohesive set of table parts. Table values can be formatted using any of the included formatting functions. Footnotes and cell styles can be precisely added through a location targeting system. The way in which 'gt' handles things for you means that you don't often have to worry about the fine details.",
"License": "MIT + file LICENSE", "License": "MIT + file LICENSE",
"URL": "https://gt.rstudio.com, https://github.com/rstudio/gt", "URL": "https://gt.rstudio.com, https://github.com/rstudio/gt",
"BugReports": "https://github.com/rstudio/gt/issues", "BugReports": "https://github.com/rstudio/gt/issues",
"Depends": [ "Depends": [
"R (>= 3.6.0)" "R (>= 4.1.0)"
], ],
"Imports": [ "Imports": [
"base64enc (>= 0.1-3)", "base64enc (>= 0.1-3)",
@ -1253,6 +1259,7 @@
"xml2 (>= 1.3.6)" "xml2 (>= 1.3.6)"
], ],
"Suggests": [ "Suggests": [
"bit64",
"farver", "farver",
"fontawesome (>= 0.5.2)", "fontawesome (>= 0.5.2)",
"ggplot2", "ggplot2",
@ -1280,15 +1287,15 @@
"Config/testthat/parallel": "true", "Config/testthat/parallel": "true",
"Encoding": "UTF-8", "Encoding": "UTF-8",
"LazyData": "true", "LazyData": "true",
"RoxygenNote": "7.3.2", "RoxygenNote": "7.3.3",
"NeedsCompilation": "no", "NeedsCompilation": "no",
"Author": "Richard Iannone [aut, cre] (ORCID: <https://orcid.org/0000-0003-3925-190X>), Joe Cheng [aut], Barret Schloerke [aut] (ORCID: <https://orcid.org/0000-0001-9986-114X>), Ellis Hughes [aut] (ORCID: <https://orcid.org/0000-0003-0637-4436>), Alexandra Lauer [aut] (ORCID: <https://orcid.org/0000-0002-4191-6301>), JooYoung Seo [aut] (ORCID: <https://orcid.org/0000-0002-4064-6012>), Ken Brevoort [aut] (ORCID: <https://orcid.org/0000-0002-4001-8358>), Olivier Roy [aut], Posit Software, PBC [cph, fnd]", "Author": "Richard Iannone [aut, cre] (ORCID: <https://orcid.org/0000-0003-3925-190X>), Joe Cheng [aut], Barret Schloerke [aut] (ORCID: <https://orcid.org/0000-0001-9986-114X>), Shannon Haughton [aut], Ellis Hughes [aut] (ORCID: <https://orcid.org/0000-0003-0637-4436>), Alexandra Lauer [aut] (ORCID: <https://orcid.org/0000-0002-4191-6301>), Romain François [aut], JooYoung Seo [aut] (ORCID: <https://orcid.org/0000-0002-4064-6012>), Ken Brevoort [aut] (ORCID: <https://orcid.org/0000-0002-4001-8358>), Olivier Roy [aut], Posit Software, PBC [cph, fnd]",
"Maintainer": "Richard Iannone <rich@posit.co>", "Maintainer": "Richard Iannone <rich@posit.co>",
"Repository": "CRAN" "Repository": "CRAN"
}, },
"gtsummary": { "gtsummary": {
"Package": "gtsummary", "Package": "gtsummary",
"Version": "2.4.0", "Version": "2.5.0",
"Source": "Repository", "Source": "Repository",
"Title": "Presentation-Ready Data Summary and Analytic Result Tables", "Title": "Presentation-Ready Data Summary and Analytic Result Tables",
"Authors@R": "c( person(\"Daniel D.\", \"Sjoberg\", , \"danield.sjoberg@gmail.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-0862-2018\")), person(\"Joseph\", \"Larmarange\", role = \"aut\", comment = c(ORCID = \"0000-0001-7097-700X\")), person(\"Michael\", \"Curry\", role = \"aut\", comment = c(ORCID = \"0000-0002-0261-4044\")), person(\"Emily\", \"de la Rua\", , role = \"aut\", comment = c(ORCID = \"0009-0000-8738-5561\")), person(\"Jessica\", \"Lavery\", role = \"aut\", comment = c(ORCID = \"0000-0002-2746-5647\")), person(\"Karissa\", \"Whiting\", role = \"aut\", comment = c(ORCID = \"0000-0002-4683-1868\")), person(\"Emily C.\", \"Zabor\", role = \"aut\", comment = c(ORCID = \"0000-0002-1402-4498\")), person(\"Xing\", \"Bai\", role = \"ctb\"), person(\"Malcolm\", \"Barrett\", role = \"ctb\", comment = c(ORCID = \"0000-0003-0299-5825\")), person(\"Esther\", \"Drill\", role = \"ctb\", comment = c(ORCID = \"0000-0002-3315-4538\")), person(\"Jessica\", \"Flynn\", role = \"ctb\", comment = c(ORCID = \"0000-0001-8310-6684\")), person(\"Margie\", \"Hannum\", role = \"ctb\", comment = c(ORCID = \"0000-0002-2953-0449\")), person(\"Stephanie\", \"Lobaugh\", role = \"ctb\"), person(\"Shannon\", \"Pileggi\", role = \"ctb\", comment = c(ORCID = \"0000-0002-7732-4164\")), person(\"Amy\", \"Tin\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8005-0694\")), person(\"Gustavo\", \"Zapata Wainberg\", role = \"ctb\", comment = c(ORCID = \"0000-0002-2524-3637\")) )", "Authors@R": "c( person(\"Daniel D.\", \"Sjoberg\", , \"danield.sjoberg@gmail.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-0862-2018\")), person(\"Joseph\", \"Larmarange\", role = \"aut\", comment = c(ORCID = \"0000-0001-7097-700X\")), person(\"Michael\", \"Curry\", role = \"aut\", comment = c(ORCID = \"0000-0002-0261-4044\")), person(\"Emily\", \"de la Rua\", , role = \"aut\", comment = c(ORCID = \"0009-0000-8738-5561\")), person(\"Jessica\", \"Lavery\", role = \"aut\", comment = c(ORCID = \"0000-0002-2746-5647\")), person(\"Karissa\", \"Whiting\", role = \"aut\", comment = c(ORCID = \"0000-0002-4683-1868\")), person(\"Emily C.\", \"Zabor\", role = \"aut\", comment = c(ORCID = \"0000-0002-1402-4498\")), person(\"Xing\", \"Bai\", role = \"ctb\"), person(\"Malcolm\", \"Barrett\", role = \"ctb\", comment = c(ORCID = \"0000-0003-0299-5825\")), person(\"Esther\", \"Drill\", role = \"ctb\", comment = c(ORCID = \"0000-0002-3315-4538\")), person(\"Jessica\", \"Flynn\", role = \"ctb\", comment = c(ORCID = \"0000-0001-8310-6684\")), person(\"Margie\", \"Hannum\", role = \"ctb\", comment = c(ORCID = \"0000-0002-2953-0449\")), person(\"Stephanie\", \"Lobaugh\", role = \"ctb\"), person(\"Shannon\", \"Pileggi\", role = \"ctb\", comment = c(ORCID = \"0000-0002-7732-4164\")), person(\"Amy\", \"Tin\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8005-0694\")), person(\"Gustavo\", \"Zapata Wainberg\", role = \"ctb\", comment = c(ORCID = \"0000-0002-2524-3637\")) )",
@ -1300,8 +1307,8 @@
"R (>= 4.2)" "R (>= 4.2)"
], ],
"Imports": [ "Imports": [
"cards (>= 0.7.0)", "cards (>= 0.7.1)",
"cardx (>= 0.3.0)", "cardx (>= 0.3.1)",
"cli (>= 3.6.3)", "cli (>= 3.6.3)",
"dplyr (>= 1.1.3)", "dplyr (>= 1.1.3)",
"glue (>= 1.8.0)", "glue (>= 1.8.0)",
@ -1351,7 +1358,7 @@
"Encoding": "UTF-8", "Encoding": "UTF-8",
"Language": "en-US", "Language": "en-US",
"LazyData": "true", "LazyData": "true",
"RoxygenNote": "7.3.2", "RoxygenNote": "7.3.3",
"NeedsCompilation": "no", "NeedsCompilation": "no",
"Author": "Daniel D. Sjoberg [aut, cre] (ORCID: <https://orcid.org/0000-0003-0862-2018>), Joseph Larmarange [aut] (ORCID: <https://orcid.org/0000-0001-7097-700X>), Michael Curry [aut] (ORCID: <https://orcid.org/0000-0002-0261-4044>), Emily de la Rua [aut] (ORCID: <https://orcid.org/0009-0000-8738-5561>), Jessica Lavery [aut] (ORCID: <https://orcid.org/0000-0002-2746-5647>), Karissa Whiting [aut] (ORCID: <https://orcid.org/0000-0002-4683-1868>), Emily C. Zabor [aut] (ORCID: <https://orcid.org/0000-0002-1402-4498>), Xing Bai [ctb], Malcolm Barrett [ctb] (ORCID: <https://orcid.org/0000-0003-0299-5825>), Esther Drill [ctb] (ORCID: <https://orcid.org/0000-0002-3315-4538>), Jessica Flynn [ctb] (ORCID: <https://orcid.org/0000-0001-8310-6684>), Margie Hannum [ctb] (ORCID: <https://orcid.org/0000-0002-2953-0449>), Stephanie Lobaugh [ctb], Shannon Pileggi [ctb] (ORCID: <https://orcid.org/0000-0002-7732-4164>), Amy Tin [ctb] (ORCID: <https://orcid.org/0000-0002-8005-0694>), Gustavo Zapata Wainberg [ctb] (ORCID: <https://orcid.org/0000-0002-2524-3637>)", "Author": "Daniel D. Sjoberg [aut, cre] (ORCID: <https://orcid.org/0000-0003-0862-2018>), Joseph Larmarange [aut] (ORCID: <https://orcid.org/0000-0001-7097-700X>), Michael Curry [aut] (ORCID: <https://orcid.org/0000-0002-0261-4044>), Emily de la Rua [aut] (ORCID: <https://orcid.org/0009-0000-8738-5561>), Jessica Lavery [aut] (ORCID: <https://orcid.org/0000-0002-2746-5647>), Karissa Whiting [aut] (ORCID: <https://orcid.org/0000-0002-4683-1868>), Emily C. Zabor [aut] (ORCID: <https://orcid.org/0000-0002-1402-4498>), Xing Bai [ctb], Malcolm Barrett [ctb] (ORCID: <https://orcid.org/0000-0003-0299-5825>), Esther Drill [ctb] (ORCID: <https://orcid.org/0000-0002-3315-4538>), Jessica Flynn [ctb] (ORCID: <https://orcid.org/0000-0001-8310-6684>), Margie Hannum [ctb] (ORCID: <https://orcid.org/0000-0002-2953-0449>), Stephanie Lobaugh [ctb], Shannon Pileggi [ctb] (ORCID: <https://orcid.org/0000-0002-7732-4164>), Amy Tin [ctb] (ORCID: <https://orcid.org/0000-0002-8005-0694>), Gustavo Zapata Wainberg [ctb] (ORCID: <https://orcid.org/0000-0002-2524-3637>)",
"Maintainer": "Daniel D. Sjoberg <danield.sjoberg@gmail.com>", "Maintainer": "Daniel D. Sjoberg <danield.sjoberg@gmail.com>",
@ -1510,7 +1517,7 @@
}, },
"htmltools": { "htmltools": {
"Package": "htmltools", "Package": "htmltools",
"Version": "0.5.8.1", "Version": "0.5.9",
"Source": "Repository", "Source": "Repository",
"Type": "Package", "Type": "Package",
"Title": "Tools for HTML", "Title": "Tools for HTML",
@ -1544,10 +1551,10 @@
"Config/Needs/check": "knitr", "Config/Needs/check": "knitr",
"Config/Needs/website": "rstudio/quillt, bench", "Config/Needs/website": "rstudio/quillt, bench",
"Encoding": "UTF-8", "Encoding": "UTF-8",
"RoxygenNote": "7.3.1", "RoxygenNote": "7.3.3",
"Collate": "'colors.R' 'fill.R' 'html_dependency.R' 'html_escape.R' 'html_print.R' 'htmltools-package.R' 'images.R' 'known_tags.R' 'selector.R' 'staticimports.R' 'tag_query.R' 'utils.R' 'tags.R' 'template.R'", "Collate": "'colors.R' 'fill.R' 'html_dependency.R' 'html_escape.R' 'html_print.R' 'htmltools-package.R' 'images.R' 'known_tags.R' 'selector.R' 'staticimports.R' 'tag_query.R' 'utils.R' 'tags.R' 'template.R'",
"NeedsCompilation": "yes", "NeedsCompilation": "yes",
"Author": "Joe Cheng [aut], Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>), Barret Schloerke [aut] (<https://orcid.org/0000-0001-9986-114X>), Winston Chang [aut] (<https://orcid.org/0000-0002-1576-2126>), Yihui Xie [aut], Jeff Allen [aut], Posit Software, PBC [cph, fnd]", "Author": "Joe Cheng [aut], Carson Sievert [aut, cre] (ORCID: <https://orcid.org/0000-0002-4958-2844>), Barret Schloerke [aut] (ORCID: <https://orcid.org/0000-0001-9986-114X>), Winston Chang [aut] (ORCID: <https://orcid.org/0000-0002-1576-2126>), Yihui Xie [aut], Jeff Allen [aut], Posit Software, PBC [cph, fnd]",
"Maintainer": "Carson Sievert <carson@posit.co>", "Maintainer": "Carson Sievert <carson@posit.co>",
"Repository": "CRAN" "Repository": "CRAN"
}, },
@ -1783,7 +1790,7 @@
}, },
"knitr": { "knitr": {
"Package": "knitr", "Package": "knitr",
"Version": "1.50", "Version": "1.51",
"Source": "Repository", "Source": "Repository",
"Type": "Package", "Type": "Package",
"Title": "A General-Purpose Package for Dynamic Report Generation in R", "Title": "A General-Purpose Package for Dynamic Report Generation in R",
@ -1797,12 +1804,11 @@
"highr (>= 0.11)", "highr (>= 0.11)",
"methods", "methods",
"tools", "tools",
"xfun (>= 0.51)", "xfun (>= 0.52)",
"yaml (>= 2.1.19)" "yaml (>= 2.1.19)"
], ],
"Suggests": [ "Suggests": [
"bslib", "bslib",
"codetools",
"DBI (>= 0.4-1)", "DBI (>= 0.4-1)",
"digest", "digest",
"formatR", "formatR",
@ -1814,6 +1820,8 @@
"magick", "magick",
"litedown", "litedown",
"markdown (>= 1.3)", "markdown (>= 1.3)",
"otel",
"otelsdk",
"png", "png",
"ragg", "ragg",
"reticulate (>= 1.4)", "reticulate (>= 1.4)",
@ -1838,10 +1846,10 @@
"Encoding": "UTF-8", "Encoding": "UTF-8",
"VignetteBuilder": "litedown, knitr", "VignetteBuilder": "litedown, knitr",
"SystemRequirements": "Package vignettes based on R Markdown v2 or reStructuredText require Pandoc (http://pandoc.org). The function rst2pdf() requires rst2pdf (https://github.com/rst2pdf/rst2pdf).", "SystemRequirements": "Package vignettes based on R Markdown v2 or reStructuredText require Pandoc (http://pandoc.org). The function rst2pdf() requires rst2pdf (https://github.com/rst2pdf/rst2pdf).",
"Collate": "'block.R' 'cache.R' 'citation.R' 'hooks-html.R' 'plot.R' 'utils.R' 'defaults.R' 'concordance.R' 'engine.R' 'highlight.R' 'themes.R' 'header.R' 'hooks-asciidoc.R' 'hooks-chunk.R' 'hooks-extra.R' 'hooks-latex.R' 'hooks-md.R' 'hooks-rst.R' 'hooks-textile.R' 'hooks.R' 'output.R' 'package.R' 'pandoc.R' 'params.R' 'parser.R' 'pattern.R' 'rocco.R' 'spin.R' 'table.R' 'template.R' 'utils-conversion.R' 'utils-rd2html.R' 'utils-string.R' 'utils-sweave.R' 'utils-upload.R' 'utils-vignettes.R' 'zzz.R'", "Collate": "'block.R' 'cache.R' 'citation.R' 'hooks-html.R' 'plot.R' 'utils.R' 'defaults.R' 'concordance.R' 'engine.R' 'highlight.R' 'themes.R' 'header.R' 'hooks-asciidoc.R' 'hooks-chunk.R' 'hooks-extra.R' 'hooks-latex.R' 'hooks-md.R' 'hooks-rst.R' 'hooks-textile.R' 'hooks.R' 'otel.R' 'output.R' 'package.R' 'pandoc.R' 'params.R' 'parser.R' 'pattern.R' 'rocco.R' 'spin.R' 'table.R' 'template.R' 'utils-conversion.R' 'utils-rd2html.R' 'utils-string.R' 'utils-sweave.R' 'utils-upload.R' 'utils-vignettes.R' 'zzz.R'",
"RoxygenNote": "7.3.2", "RoxygenNote": "7.3.3",
"NeedsCompilation": "no", "NeedsCompilation": "no",
"Author": "Yihui Xie [aut, cre] (<https://orcid.org/0000-0003-0645-5666>, https://yihui.org), Abhraneel Sarma [ctb], Adam Vogt [ctb], Alastair Andrew [ctb], Alex Zvoleff [ctb], Amar Al-Zubaidi [ctb], Andre Simon [ctb] (the CSS files under inst/themes/ were derived from the Highlight package http://www.andre-simon.de), Aron Atkins [ctb], Aaron Wolen [ctb], Ashley Manton [ctb], Atsushi Yasumoto [ctb] (<https://orcid.org/0000-0002-8335-495X>), Ben Baumer [ctb], Brian Diggs [ctb], Brian Zhang [ctb], Bulat Yapparov [ctb], Cassio Pereira [ctb], Christophe Dervieux [ctb], David Hall [ctb], David Hugh-Jones [ctb], David Robinson [ctb], Doug Hemken [ctb], Duncan Murdoch [ctb], Elio Campitelli [ctb], Ellis Hughes [ctb], Emily Riederer [ctb], Fabian Hirschmann [ctb], Fitch Simeon [ctb], Forest Fang [ctb], Frank E Harrell Jr [ctb] (the Sweavel package at inst/misc/Sweavel.sty), Garrick Aden-Buie [ctb], Gregoire Detrez [ctb], Hadley Wickham [ctb], Hao Zhu [ctb], Heewon Jeon [ctb], Henrik Bengtsson [ctb], Hiroaki Yutani [ctb], Ian Lyttle [ctb], Hodges Daniel [ctb], Jacob Bien [ctb], Jake Burkhead [ctb], James Manton [ctb], Jared Lander [ctb], Jason Punyon [ctb], Javier Luraschi [ctb], Jeff Arnold [ctb], Jenny Bryan [ctb], Jeremy Ashkenas [ctb, cph] (the CSS file at inst/misc/docco-classic.css), Jeremy Stephens [ctb], Jim Hester [ctb], Joe Cheng [ctb], Johannes Ranke [ctb], John Honaker [ctb], John Muschelli [ctb], Jonathan Keane [ctb], JJ Allaire [ctb], Johan Toloe [ctb], Jonathan Sidi [ctb], Joseph Larmarange [ctb], Julien Barnier [ctb], Kaiyin Zhong [ctb], Kamil Slowikowski [ctb], Karl Forner [ctb], Kevin K. Smith [ctb], Kirill Mueller [ctb], Kohske Takahashi [ctb], Lorenz Walthert [ctb], Lucas Gallindo [ctb], Marius Hofert [ctb], Martin Modrák [ctb], Michael Chirico [ctb], Michael Friendly [ctb], Michal Bojanowski [ctb], Michel Kuhlmann [ctb], Miller Patrick [ctb], Nacho Caballero [ctb], Nick Salkowski [ctb], Niels Richard Hansen [ctb], Noam Ross [ctb], Obada Mahdi [ctb], Pavel N. Krivitsky [ctb] (<https://orcid.org/0000-0002-9101-3362>), Pedro Faria [ctb], Qiang Li [ctb], Ramnath Vaidyanathan [ctb], Richard Cotton [ctb], Robert Krzyzanowski [ctb], Rodrigo Copetti [ctb], Romain Francois [ctb], Ruaridh Williamson [ctb], Sagiru Mati [ctb] (<https://orcid.org/0000-0003-1413-3974>), Scott Kostyshak [ctb], Sebastian Meyer [ctb], Sietse Brouwer [ctb], Simon de Bernard [ctb], Sylvain Rousseau [ctb], Taiyun Wei [ctb], Thibaut Assus [ctb], Thibaut Lamadon [ctb], Thomas Leeper [ctb], Tim Mastny [ctb], Tom Torsney-Weir [ctb], Trevor Davis [ctb], Viktoras Veitas [ctb], Weicheng Zhu [ctb], Wush Wu [ctb], Zachary Foster [ctb], Zhian N. Kamvar [ctb] (<https://orcid.org/0000-0003-1458-7108>), Posit Software, PBC [cph, fnd]", "Author": "Yihui Xie [aut, cre] (ORCID: <https://orcid.org/0000-0003-0645-5666>, URL: https://yihui.org), Abhraneel Sarma [ctb], Adam Vogt [ctb], Alastair Andrew [ctb], Alex Zvoleff [ctb], Amar Al-Zubaidi [ctb], Andre Simon [ctb] (the CSS files under inst/themes/ were derived from the Highlight package http://www.andre-simon.de), Aron Atkins [ctb], Aaron Wolen [ctb], Ashley Manton [ctb], Atsushi Yasumoto [ctb] (ORCID: <https://orcid.org/0000-0002-8335-495X>), Ben Baumer [ctb], Brian Diggs [ctb], Brian Zhang [ctb], Bulat Yapparov [ctb], Cassio Pereira [ctb], Christophe Dervieux [ctb], David Hall [ctb], David Hugh-Jones [ctb], David Robinson [ctb], Doug Hemken [ctb], Duncan Murdoch [ctb], Elio Campitelli [ctb], Ellis Hughes [ctb], Emily Riederer [ctb], Fabian Hirschmann [ctb], Fitch Simeon [ctb], Forest Fang [ctb], Frank E Harrell Jr [ctb] (the Sweavel package at inst/misc/Sweavel.sty), Garrick Aden-Buie [ctb], Gregoire Detrez [ctb], Hadley Wickham [ctb], Hao Zhu [ctb], Heewon Jeon [ctb], Henrik Bengtsson [ctb], Hiroaki Yutani [ctb], Ian Lyttle [ctb], Hodges Daniel [ctb], Jacob Bien [ctb], Jake Burkhead [ctb], James Manton [ctb], Jared Lander [ctb], Jason Punyon [ctb], Javier Luraschi [ctb], Jeff Arnold [ctb], Jenny Bryan [ctb], Jeremy Ashkenas [ctb, cph] (the CSS file at inst/misc/docco-classic.css), Jeremy Stephens [ctb], Jim Hester [ctb], Joe Cheng [ctb], Johannes Ranke [ctb], John Honaker [ctb], John Muschelli [ctb], Jonathan Keane [ctb], JJ Allaire [ctb], Johan Toloe [ctb], Jonathan Sidi [ctb], Joseph Larmarange [ctb], Julien Barnier [ctb], Kaiyin Zhong [ctb], Kamil Slowikowski [ctb], Karl Forner [ctb], Kevin K. Smith [ctb], Kirill Mueller [ctb], Kohske Takahashi [ctb], Lorenz Walthert [ctb], Lucas Gallindo [ctb], Marius Hofert [ctb], Martin Modrák [ctb], Michael Chirico [ctb], Michael Friendly [ctb], Michal Bojanowski [ctb], Michel Kuhlmann [ctb], Miller Patrick [ctb], Nacho Caballero [ctb], Nick Salkowski [ctb], Niels Richard Hansen [ctb], Noam Ross [ctb], Obada Mahdi [ctb], Pavel N. Krivitsky [ctb] (ORCID: <https://orcid.org/0000-0002-9101-3362>), Pedro Faria [ctb], Qiang Li [ctb], Ramnath Vaidyanathan [ctb], Richard Cotton [ctb], Robert Krzyzanowski [ctb], Rodrigo Copetti [ctb], Romain Francois [ctb], Ruaridh Williamson [ctb], Sagiru Mati [ctb] (ORCID: <https://orcid.org/0000-0003-1413-3974>), Scott Kostyshak [ctb], Sebastian Meyer [ctb], Sietse Brouwer [ctb], Simon de Bernard [ctb], Sylvain Rousseau [ctb], Taiyun Wei [ctb], Thibaut Assus [ctb], Thibaut Lamadon [ctb], Thomas Leeper [ctb], Tim Mastny [ctb], Tom Torsney-Weir [ctb], Trevor Davis [ctb], Viktoras Veitas [ctb], Weicheng Zhu [ctb], Wush Wu [ctb], Zachary Foster [ctb], Zhian N. Kamvar [ctb] (ORCID: <https://orcid.org/0000-0003-1458-7108>), Posit Software, PBC [cph, fnd]",
"Maintainer": "Yihui Xie <xie@yihui.name>", "Maintainer": "Yihui Xie <xie@yihui.name>",
"Repository": "CRAN" "Repository": "CRAN"
}, },
@ -1866,22 +1874,26 @@
}, },
"later": { "later": {
"Package": "later", "Package": "later",
"Version": "1.4.4", "Version": "1.4.5",
"Source": "Repository", "Source": "Repository",
"Type": "Package", "Type": "Package",
"Title": "Utilities for Scheduling Functions to Execute Later with Event Loops", "Title": "Utilities for Scheduling Functions to Execute Later with Event Loops",
"Authors@R": "c( person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = \"aut\"), person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Charlie\", \"Gao\", , \"charlie.gao@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-0750-061X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")), person(\"Marcus\", \"Geelnard\", role = c(\"ctb\", \"cph\"), comment = \"TinyCThread library, https://tinycthread.github.io/\"), person(\"Evan\", \"Nemerson\", role = c(\"ctb\", \"cph\"), comment = \"TinyCThread library, https://tinycthread.github.io/\") )", "Authors@R": "c( person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0002-1576-2126\")), person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Charlie\", \"Gao\", , \"charlie.gao@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-0750-061X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")), person(\"Marcus\", \"Geelnard\", role = c(\"ctb\", \"cph\"), comment = \"TinyCThread library, https://tinycthread.github.io/\"), person(\"Evan\", \"Nemerson\", role = c(\"ctb\", \"cph\"), comment = \"TinyCThread library, https://tinycthread.github.io/\") )",
"Description": "Executes arbitrary R or C functions some time after the current time, after the R execution stack has emptied. The functions are scheduled in an event loop.", "Description": "Executes arbitrary R or C functions some time after the current time, after the R execution stack has emptied. The functions are scheduled in an event loop.",
"License": "MIT + file LICENSE", "License": "MIT + file LICENSE",
"URL": "https://later.r-lib.org, https://github.com/r-lib/later", "URL": "https://later.r-lib.org, https://github.com/r-lib/later",
"BugReports": "https://github.com/r-lib/later/issues", "BugReports": "https://github.com/r-lib/later/issues",
"Depends": [
"R (>= 3.5)"
],
"Imports": [ "Imports": [
"Rcpp (>= 0.12.9)", "Rcpp (>= 1.0.10)",
"rlang" "rlang"
], ],
"Suggests": [ "Suggests": [
"knitr", "knitr",
"nanonext", "nanonext",
"promises",
"rmarkdown", "rmarkdown",
"testthat (>= 3.0.0)" "testthat (>= 3.0.0)"
], ],
@ -1889,19 +1901,20 @@
"Rcpp" "Rcpp"
], ],
"VignetteBuilder": "knitr", "VignetteBuilder": "knitr",
"Config/build/compilation-database": "true",
"Config/Needs/website": "tidyverse/tidytemplate", "Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3", "Config/testthat/edition": "3",
"Config/usethis/last-upkeep": "2025-07-18", "Config/usethis/last-upkeep": "2025-07-18",
"Encoding": "UTF-8", "Encoding": "UTF-8",
"RoxygenNote": "7.3.2", "RoxygenNote": "7.3.3",
"NeedsCompilation": "yes", "NeedsCompilation": "yes",
"Author": "Winston Chang [aut], Joe Cheng [aut], Charlie Gao [aut, cre] (ORCID: <https://orcid.org/0000-0002-0750-061X>), Posit Software, PBC [cph, fnd] (ROR: <https://ror.org/03wc8by49>), Marcus Geelnard [ctb, cph] (TinyCThread library, https://tinycthread.github.io/), Evan Nemerson [ctb, cph] (TinyCThread library, https://tinycthread.github.io/)", "Author": "Winston Chang [aut] (ORCID: <https://orcid.org/0000-0002-1576-2126>), Joe Cheng [aut], Charlie Gao [aut, cre] (ORCID: <https://orcid.org/0000-0002-0750-061X>), Posit Software, PBC [cph, fnd] (ROR: <https://ror.org/03wc8by49>), Marcus Geelnard [ctb, cph] (TinyCThread library, https://tinycthread.github.io/), Evan Nemerson [ctb, cph] (TinyCThread library, https://tinycthread.github.io/)",
"Maintainer": "Charlie Gao <charlie.gao@posit.co>", "Maintainer": "Charlie Gao <charlie.gao@posit.co>",
"Repository": "CRAN" "Repository": "CRAN"
}, },
"lifecycle": { "lifecycle": {
"Package": "lifecycle", "Package": "lifecycle",
"Version": "1.0.4", "Version": "1.0.5",
"Source": "Repository", "Source": "Repository",
"Title": "Manage the Life Cycle of your Package Functions", "Title": "Manage the Life Cycle of your Package Functions",
"Authors@R": "c( person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", "Authors@R": "c( person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
@ -1914,35 +1927,34 @@
], ],
"Imports": [ "Imports": [
"cli (>= 3.4.0)", "cli (>= 3.4.0)",
"glue",
"rlang (>= 1.1.0)" "rlang (>= 1.1.0)"
], ],
"Suggests": [ "Suggests": [
"covr", "covr",
"crayon",
"knitr", "knitr",
"lintr", "lintr (>= 3.1.0)",
"rmarkdown", "rmarkdown",
"testthat (>= 3.0.1)", "testthat (>= 3.0.1)",
"tibble", "tibble",
"tidyverse", "tidyverse",
"tools", "tools",
"vctrs", "vctrs",
"withr" "withr",
"xml2"
], ],
"VignetteBuilder": "knitr", "VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate, usethis", "Config/Needs/website": "tidyverse/tidytemplate, usethis",
"Config/testthat/edition": "3", "Config/testthat/edition": "3",
"Encoding": "UTF-8", "Encoding": "UTF-8",
"RoxygenNote": "7.2.1", "RoxygenNote": "7.3.3",
"NeedsCompilation": "no", "NeedsCompilation": "no",
"Author": "Lionel Henry [aut, cre], Hadley Wickham [aut] (<https://orcid.org/0000-0003-4757-117X>), Posit Software, PBC [cph, fnd]", "Author": "Lionel Henry [aut, cre], Hadley Wickham [aut] (ORCID: <https://orcid.org/0000-0003-4757-117X>), Posit Software, PBC [cph, fnd]",
"Maintainer": "Lionel Henry <lionel@posit.co>", "Maintainer": "Lionel Henry <lionel@posit.co>",
"Repository": "CRAN" "Repository": "CRAN"
}, },
"litedown": { "litedown": {
"Package": "litedown", "Package": "litedown",
"Version": "0.8", "Version": "0.9",
"Source": "Repository", "Source": "Repository",
"Type": "Package", "Type": "Package",
"Title": "A Lightweight Version of R Markdown", "Title": "A Lightweight Version of R Markdown",
@ -1954,7 +1966,7 @@
"Imports": [ "Imports": [
"utils", "utils",
"commonmark (>= 2.0.0)", "commonmark (>= 2.0.0)",
"xfun (>= 0.54)" "xfun (>= 0.55)"
], ],
"Suggests": [ "Suggests": [
"rbibutils", "rbibutils",
@ -2088,20 +2100,20 @@
}, },
"minty": { "minty": {
"Package": "minty", "Package": "minty",
"Version": "0.0.5", "Version": "0.0.6",
"Source": "Repository", "Source": "Repository",
"Title": "Minimal Type Guesser", "Title": "Minimal Type Guesser",
"Authors@R": "c( person(\"Chung-hong\", \"Chan\", role = c(\"aut\", \"cre\"), email = \"chainsawtiney@gmail.com\", comment = c(ORCID = \"0000-0002-6232-7530\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\", comment = \"author of the ported code from readr\"), person(\"Jim\", \"Hester\", role = \"aut\", comment = \"author of the ported code from readr\"), person(\"Romain\", \"Francois\", role = \"ctb\", comment = \"author of the ported code from readr\"), person(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\"), comment = \"author of the ported code from readr\"), person(\"Shelby\", \"Bearrows\", role = \"ctb\", comment = \"author of the ported code from readr\"), person(\"Posit Software, PBC\", role = \"cph\", comment = \"copyright holder of readr\"), person(\"David\", \"Olson\", role = \"aut\", comment = \"author of src/tzfile.h\") )", "Authors@R": "c( person(\"Chung-hong\", \"Chan\", role = c(\"aut\", \"cre\"), email = \"chainsawtiney@gmail.com\", comment = c(ORCID = \"0000-0002-6232-7530\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\", comment = \"author of the ported code from readr\"), person(\"Jim\", \"Hester\", role = \"aut\", comment = \"author of the ported code from readr\"), person(\"Romain\", \"Francois\", role = \"ctb\", comment = \"author of the ported code from readr\"), person(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\"), comment = \"author of the ported code from readr\"), person(\"Shelby\", \"Bearrows\", role = \"ctb\", comment = \"author of the ported code from readr\"), person(\"Posit Software, PBC\", role = \"cph\", comment = \"copyright holder of readr\"), person(\"David\", \"Olson\", role = \"aut\", comment = \"author of src/tzfile.h\") )",
"Description": "Port the type guesser from 'readr' (so-called 'readr' first edition parsing engine, now superseded by 'vroom').", "Description": "Port the type guesser from 'readr' (so-called 'readr' first edition parsing engine, now superseded by 'vroom').",
"License": "MIT + file LICENSE", "License": "MIT + file LICENSE",
"URL": "https://gesistsa.github.io/minty/, https://github.com/gesistsa/minty", "URL": "https://gesistsa.github.io/minty/, https://codeberg.org/chainsawriot/minty",
"BugReports": "https://github.com/gesistsa/minty/issues", "BugReports": "https://codeberg.org/chainsawriot/minty/issues",
"Depends": [ "Depends": [
"R (>= 3.6)" "R (>= 4.0)"
], ],
"LinkingTo": [ "LinkingTo": [
"cpp11 (>= 0.5.0)", "cpp11 (>= 0.5.3)",
"tzdb (>= 0.1.1)" "tzdb (>= 0.5.0)"
], ],
"Config/testthat/edition": "3", "Config/testthat/edition": "3",
"Config/testthat/parallel": "false", "Config/testthat/parallel": "false",
@ -2121,7 +2133,7 @@
], ],
"Config/Needs/website": "gesistsa/tsatemplate", "Config/Needs/website": "gesistsa/tsatemplate",
"NeedsCompilation": "yes", "NeedsCompilation": "yes",
"Author": "Chung-hong Chan [aut, cre] (<https://orcid.org/0000-0002-6232-7530>), Hadley Wickham [aut] (author of the ported code from readr), Jim Hester [aut] (author of the ported code from readr), Romain Francois [ctb] (author of the ported code from readr), Jennifer Bryan [aut] (author of the ported code from readr), Shelby Bearrows [ctb] (author of the ported code from readr), Posit Software, PBC [cph] (copyright holder of readr), David Olson [aut] (author of src/tzfile.h)", "Author": "Chung-hong Chan [aut, cre] (ORCID: <https://orcid.org/0000-0002-6232-7530>), Hadley Wickham [aut] (author of the ported code from readr), Jim Hester [aut] (author of the ported code from readr), Romain Francois [ctb] (author of the ported code from readr), Jennifer Bryan [aut] (author of the ported code from readr), Shelby Bearrows [ctb] (author of the ported code from readr), Posit Software, PBC [cph] (copyright holder of readr), David Olson [aut] (author of src/tzfile.h)",
"Maintainer": "Chung-hong Chan <chainsawtiney@gmail.com>", "Maintainer": "Chung-hong Chan <chainsawtiney@gmail.com>",
"Repository": "CRAN" "Repository": "CRAN"
}, },
@ -2160,7 +2172,7 @@
}, },
"openxlsx2": { "openxlsx2": {
"Package": "openxlsx2", "Package": "openxlsx2",
"Version": "1.21", "Version": "1.23.1",
"Source": "Repository", "Source": "Repository",
"Type": "Package", "Type": "Package",
"Title": "Read, Write and Edit 'xlsx' Files", "Title": "Read, Write and Edit 'xlsx' Files",
@ -2178,8 +2190,7 @@
"Rcpp", "Rcpp",
"grDevices", "grDevices",
"stringi", "stringi",
"utils", "utils"
"zip"
], ],
"LinkingTo": [ "LinkingTo": [
"Rcpp" "Rcpp"
@ -2191,13 +2202,13 @@
"rmarkdown", "rmarkdown",
"rvg", "rvg",
"testthat (>= 3.0.0)", "testthat (>= 3.0.0)",
"waldo" "waldo",
"zip"
], ],
"VignetteBuilder": "knitr", "VignetteBuilder": "knitr",
"Encoding": "UTF-8", "Encoding": "UTF-8",
"RoxygenNote": "7.3.3", "RoxygenNote": "7.3.3",
"Config/testthat/edition": "3", "Config/testthat/edition": "3",
"Config/testthat/parallel": "true",
"NeedsCompilation": "yes", "NeedsCompilation": "yes",
"Author": "Jordan Mark Barbone [aut] (ORCID: <https://orcid.org/0000-0001-9788-3628>), Jan Marvin Garbuszus [aut, cre], Olivier Roy [ctb], openxlsx authors [cph] (openxlsx package), Arseny Kapoulkine [ctb, cph] (Author of included pugixml code)", "Author": "Jordan Mark Barbone [aut] (ORCID: <https://orcid.org/0000-0001-9788-3628>), Jan Marvin Garbuszus [aut, cre], Olivier Roy [ctb], openxlsx authors [cph] (openxlsx package), Arseny Kapoulkine [ctb, cph] (Author of included pugixml code)",
"Maintainer": "Jan Marvin Garbuszus <jan.garbuszus@ruhr-uni-bochum.de>", "Maintainer": "Jan Marvin Garbuszus <jan.garbuszus@ruhr-uni-bochum.de>",
@ -2427,7 +2438,7 @@
}, },
"purrr": { "purrr": {
"Package": "purrr", "Package": "purrr",
"Version": "1.2.0", "Version": "1.2.1",
"Source": "Repository", "Source": "Repository",
"Title": "Functional Programming Tools", "Title": "Functional Programming Tools",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"https://ror.org/03wc8by49\")) )", "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"https://ror.org/03wc8by49\")) )",
@ -2476,31 +2487,33 @@
}, },
"rappdirs": { "rappdirs": {
"Package": "rappdirs", "Package": "rappdirs",
"Version": "0.3.3", "Version": "0.3.4",
"Source": "Repository", "Source": "Repository",
"Type": "Package", "Type": "Package",
"Title": "Application Directories: Determine Where to Save Data, Caches, and Logs", "Title": "Application Directories: Determine Where to Save Data, Caches, and Logs",
"Authors@R": "c(person(given = \"Hadley\", family = \"Wickham\", role = c(\"trl\", \"cre\", \"cph\"), email = \"hadley@rstudio.com\"), person(given = \"RStudio\", role = \"cph\"), person(given = \"Sridhar\", family = \"Ratnakumar\", role = \"aut\"), person(given = \"Trent\", family = \"Mick\", role = \"aut\"), person(given = \"ActiveState\", role = \"cph\", comment = \"R/appdir.r, R/cache.r, R/data.r, R/log.r translated from appdirs\"), person(given = \"Eddy\", family = \"Petrisor\", role = \"ctb\"), person(given = \"Trevor\", family = \"Davis\", role = c(\"trl\", \"aut\")), person(given = \"Gabor\", family = \"Csardi\", role = \"ctb\"), person(given = \"Gregory\", family = \"Jefferis\", role = \"ctb\"))", "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"trl\", \"cre\", \"cph\")), person(\"Sridhar\", \"Ratnakumar\", role = \"aut\"), person(\"Trent\", \"Mick\", role = \"aut\"), person(\"ActiveState\", role = \"cph\", comment = \"R/appdir.r, R/cache.r, R/data.r, R/log.r translated from appdirs\"), person(\"Eddy\", \"Petrisor\", role = \"ctb\"), person(\"Trevor\", \"Davis\", role = c(\"trl\", \"aut\"), comment = c(ORCID = \"0000-0001-6341-4639\")), person(\"Gabor\", \"Csardi\", role = \"ctb\"), person(\"Gregory\", \"Jefferis\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )",
"Description": "An easy way to determine which directories on the users computer you should use to save data, caches and logs. A port of Python's 'Appdirs' (<https://github.com/ActiveState/appdirs>) to R.", "Description": "An easy way to determine which directories on the users computer you should use to save data, caches and logs. A port of Python's 'Appdirs' (<https://github.com/ActiveState/appdirs>) to R.",
"License": "MIT + file LICENSE", "License": "MIT + file LICENSE",
"URL": "https://rappdirs.r-lib.org, https://github.com/r-lib/rappdirs", "URL": "https://rappdirs.r-lib.org, https://github.com/r-lib/rappdirs",
"BugReports": "https://github.com/r-lib/rappdirs/issues", "BugReports": "https://github.com/r-lib/rappdirs/issues",
"Depends": [ "Depends": [
"R (>= 3.2)" "R (>= 4.1)"
], ],
"Suggests": [ "Suggests": [
"roxygen2",
"testthat (>= 3.0.0)",
"covr", "covr",
"roxygen2",
"testthat (>= 3.2.0)",
"withr" "withr"
], ],
"Copyright": "Original python appdirs module copyright (c) 2010 ActiveState Software Inc. R port copyright Hadley Wickham, RStudio. See file LICENSE for details.", "Config/Needs/website": "tidyverse/tidytemplate",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.1",
"Config/testthat/edition": "3", "Config/testthat/edition": "3",
"Config/usethis/last-upkeep": "2025-05-05",
"Copyright": "Original python appdirs module copyright (c) 2010 ActiveState Software Inc. R port copyright Hadley Wickham, Posit, PBC. See file LICENSE for details.",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.3",
"NeedsCompilation": "yes", "NeedsCompilation": "yes",
"Author": "Hadley Wickham [trl, cre, cph], RStudio [cph], Sridhar Ratnakumar [aut], Trent Mick [aut], ActiveState [cph] (R/appdir.r, R/cache.r, R/data.r, R/log.r translated from appdirs), Eddy Petrisor [ctb], Trevor Davis [trl, aut], Gabor Csardi [ctb], Gregory Jefferis [ctb]", "Author": "Hadley Wickham [trl, cre, cph], Sridhar Ratnakumar [aut], Trent Mick [aut], ActiveState [cph] (R/appdir.r, R/cache.r, R/data.r, R/log.r translated from appdirs), Eddy Petrisor [ctb], Trevor Davis [trl, aut] (ORCID: <https://orcid.org/0000-0001-6341-4639>), Gabor Csardi [ctb], Gregory Jefferis [ctb], Posit Software, PBC [cph, fnd] (ROR: <https://ror.org/03wc8by49>)",
"Maintainer": "Hadley Wickham <hadley@rstudio.com>", "Maintainer": "Hadley Wickham <hadley@posit.co>",
"Repository": "CRAN" "Repository": "CRAN"
}, },
"reactR": { "reactR": {
@ -2537,7 +2550,7 @@
}, },
"reactable": { "reactable": {
"Package": "reactable", "Package": "reactable",
"Version": "0.4.4", "Version": "0.4.5",
"Source": "Repository", "Source": "Repository",
"Type": "Package", "Type": "Package",
"Title": "Interactive Data Tables for R", "Title": "Interactive Data Tables for R",
@ -2626,7 +2639,7 @@
}, },
"readr": { "readr": {
"Package": "readr", "Package": "readr",
"Version": "2.1.5", "Version": "2.1.6",
"Source": "Repository", "Source": "Repository",
"Title": "Read Rectangular Text Data", "Title": "Read Rectangular Text Data",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Romain\", \"Francois\", role = \"ctb\"), person(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6983-2759\")), person(\"Shelby\", \"Bearrows\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"https://github.com/mandreyel/\", role = \"cph\", comment = \"mio library\"), person(\"Jukka\", \"Jylänki\", role = c(\"ctb\", \"cph\"), comment = \"grisu3 implementation\"), person(\"Mikkel\", \"Jørgensen\", role = c(\"ctb\", \"cph\"), comment = \"grisu3 implementation\") )", "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Romain\", \"Francois\", role = \"ctb\"), person(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6983-2759\")), person(\"Shelby\", \"Bearrows\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"https://github.com/mandreyel/\", role = \"cph\", comment = \"mio library\"), person(\"Jukka\", \"Jylänki\", role = c(\"ctb\", \"cph\"), comment = \"grisu3 implementation\"), person(\"Mikkel\", \"Jørgensen\", role = c(\"ctb\", \"cph\"), comment = \"grisu3 implementation\") )",
@ -2674,9 +2687,9 @@
"Config/testthat/parallel": "false", "Config/testthat/parallel": "false",
"Encoding": "UTF-8", "Encoding": "UTF-8",
"Language": "en-US", "Language": "en-US",
"RoxygenNote": "7.2.3", "RoxygenNote": "7.3.3",
"NeedsCompilation": "yes", "NeedsCompilation": "yes",
"Author": "Hadley Wickham [aut], Jim Hester [aut], Romain Francois [ctb], Jennifer Bryan [aut, cre] (<https://orcid.org/0000-0002-6983-2759>), Shelby Bearrows [ctb], Posit Software, PBC [cph, fnd], https://github.com/mandreyel/ [cph] (mio library), Jukka Jylänki [ctb, cph] (grisu3 implementation), Mikkel Jørgensen [ctb, cph] (grisu3 implementation)", "Author": "Hadley Wickham [aut], Jim Hester [aut], Romain Francois [ctb], Jennifer Bryan [aut, cre] (ORCID: <https://orcid.org/0000-0002-6983-2759>), Shelby Bearrows [ctb], Posit Software, PBC [cph, fnd], https://github.com/mandreyel/ [cph] (mio library), Jukka Jylänki [ctb, cph] (grisu3 implementation), Mikkel Jørgensen [ctb, cph] (grisu3 implementation)",
"Maintainer": "Jennifer Bryan <jenny@posit.co>", "Maintainer": "Jennifer Bryan <jenny@posit.co>",
"Repository": "CRAN" "Repository": "CRAN"
}, },
@ -2702,7 +2715,7 @@
}, },
"renv": { "renv": {
"Package": "renv", "Package": "renv",
"Version": "1.1.5", "Version": "1.1.7",
"Source": "Repository", "Source": "Repository",
"Type": "Package", "Type": "Package",
"Title": "Project Environments", "Title": "Project Environments",
@ -2720,6 +2733,7 @@
"compiler", "compiler",
"covr", "covr",
"cpp11", "cpp11",
"curl",
"devtools", "devtools",
"generics", "generics",
"gitcreds", "gitcreds",
@ -2743,7 +2757,7 @@
"webfakes" "webfakes"
], ],
"Encoding": "UTF-8", "Encoding": "UTF-8",
"RoxygenNote": "7.3.2", "RoxygenNote": "7.3.3",
"VignetteBuilder": "knitr", "VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate", "Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3", "Config/testthat/edition": "3",
@ -2756,7 +2770,7 @@
}, },
"rlang": { "rlang": {
"Package": "rlang", "Package": "rlang",
"Version": "1.1.6", "Version": "1.1.7",
"Source": "Repository", "Source": "Repository",
"Title": "Functions for Base Types and Core R and 'Tidyverse' Features", "Title": "Functions for Base Types and Core R and 'Tidyverse' Features",
"Description": "A toolbox for working with base types, core R features like the condition system, and core 'Tidyverse' features like tidy evaluation.", "Description": "A toolbox for working with base types, core R features like the condition system, and core 'Tidyverse' features like tidy evaluation.",
@ -2765,7 +2779,7 @@
"ByteCompile": "true", "ByteCompile": "true",
"Biarch": "true", "Biarch": "true",
"Depends": [ "Depends": [
"R (>= 3.5.0)" "R (>= 4.0.0)"
], ],
"Imports": [ "Imports": [
"utils" "utils"
@ -2794,7 +2808,7 @@
"winch" "winch"
], ],
"Encoding": "UTF-8", "Encoding": "UTF-8",
"RoxygenNote": "7.3.2", "RoxygenNote": "7.3.3",
"URL": "https://rlang.r-lib.org, https://github.com/r-lib/rlang", "URL": "https://rlang.r-lib.org, https://github.com/r-lib/rlang",
"BugReports": "https://github.com/r-lib/rlang/issues", "BugReports": "https://github.com/r-lib/rlang/issues",
"Config/build/compilation-database": "true", "Config/build/compilation-database": "true",
@ -2977,72 +2991,74 @@
}, },
"shiny": { "shiny": {
"Package": "shiny", "Package": "shiny",
"Version": "1.11.1", "Version": "1.12.1",
"Source": "Repository", "Source": "Repository",
"Type": "Package", "Type": "Package",
"Title": "Web Application Framework for R", "Title": "Web Application Framework for R",
"Authors@R": "c( person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@posit.co\", comment = c(ORCID = \"0000-0002-1576-2126\")), person(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@posit.co\"), person(\"JJ\", \"Allaire\", role = \"aut\", email = \"jj@posit.co\"), person(\"Carson\", \"Sievert\", role = \"aut\", email = \"carson@posit.co\", comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Barret\", \"Schloerke\", role = \"aut\", email = \"barret@posit.co\", comment = c(ORCID = \"0000-0001-9986-114X\")), person(\"Yihui\", \"Xie\", role = \"aut\", email = \"yihui@posit.co\"), person(\"Jeff\", \"Allen\", role = \"aut\"), person(\"Jonathan\", \"McPherson\", role = \"aut\", email = \"jonathan@posit.co\"), person(\"Alan\", \"Dipert\", role = \"aut\"), person(\"Barbara\", \"Borges\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(family = \"jQuery Foundation\", role = \"cph\", comment = \"jQuery library and jQuery UI library\"), person(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt\"), person(family = \"jQuery UI contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery UI library; authors listed in inst/www/shared/jqueryui/AUTHORS.txt\"), person(\"Mark\", \"Otto\", role = \"ctb\", comment = \"Bootstrap library\"), person(\"Jacob\", \"Thornton\", role = \"ctb\", comment = \"Bootstrap library\"), person(family = \"Bootstrap contributors\", role = \"ctb\", comment = \"Bootstrap library\"), person(family = \"Twitter, Inc\", role = \"cph\", comment = \"Bootstrap library\"), person(\"Prem Nawaz\", \"Khan\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Victor\", \"Tsaran\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Dennis\", \"Lembree\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Srinivasu\", \"Chakravarthula\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Cathy\", \"O'Connor\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(family = \"PayPal, Inc\", role = \"cph\", comment = \"Bootstrap accessibility plugin\"), person(\"Stefan\", \"Petre\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap-datepicker library\"), person(\"Andrew\", \"Rowls\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap-datepicker library\"), person(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"), comment = \"selectize.js library\"), person(\"Salmen\", \"Bejaoui\", role = c(\"ctb\", \"cph\"), comment = \"selectize-plugin-a11y library\"), person(\"Denis\", \"Ineshin\", role = c(\"ctb\", \"cph\"), comment = \"ion.rangeSlider library\"), person(\"Sami\", \"Samhuri\", role = c(\"ctb\", \"cph\"), comment = \"Javascript strftime library\"), person(family = \"SpryMedia Limited\", role = c(\"ctb\", \"cph\"), comment = \"DataTables library\"), person(\"John\", \"Fraser\", role = c(\"ctb\", \"cph\"), comment = \"showdown.js library\"), person(\"John\", \"Gruber\", role = c(\"ctb\", \"cph\"), comment = \"showdown.js library\"), person(\"Ivan\", \"Sagalaev\", role = c(\"ctb\", \"cph\"), comment = \"highlight.js library\"), person(given = \"R Core Team\", role = c(\"ctb\", \"cph\"), comment = \"tar implementation from R\") )", "Authors@R": "c( person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0002-1576-2126\")), person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"JJ\", \"Allaire\", , \"jj@posit.co\", role = \"aut\"), person(\"Carson\", \"Sievert\", , \"carson@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Barret\", \"Schloerke\", , \"barret@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0001-9986-114X\")), person(\"Garrick\", \"Aden-Buie\", , \"garrick@adenbuie.com\", role = \"aut\", comment = c(ORCID = \"0000-0002-7111-0077\")), person(\"Yihui\", \"Xie\", , \"yihui@posit.co\", role = \"aut\"), person(\"Jeff\", \"Allen\", role = \"aut\"), person(\"Jonathan\", \"McPherson\", , \"jonathan@posit.co\", role = \"aut\"), person(\"Alan\", \"Dipert\", role = \"aut\"), person(\"Barbara\", \"Borges\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")), person(, \"jQuery Foundation\", role = \"cph\", comment = \"jQuery library and jQuery UI library\"), person(, \"jQuery contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt\"), person(, \"jQuery UI contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery UI library; authors listed in inst/www/shared/jqueryui/AUTHORS.txt\"), person(\"Mark\", \"Otto\", role = \"ctb\", comment = \"Bootstrap library\"), person(\"Jacob\", \"Thornton\", role = \"ctb\", comment = \"Bootstrap library\"), person(, \"Bootstrap contributors\", role = \"ctb\", comment = \"Bootstrap library\"), person(, \"Twitter, Inc\", role = \"cph\", comment = \"Bootstrap library\"), person(\"Prem Nawaz\", \"Khan\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Victor\", \"Tsaran\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Dennis\", \"Lembree\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Srinivasu\", \"Chakravarthula\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Cathy\", \"O'Connor\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(, \"PayPal, Inc\", role = \"cph\", comment = \"Bootstrap accessibility plugin\"), person(\"Stefan\", \"Petre\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap-datepicker library\"), person(\"Andrew\", \"Rowls\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap-datepicker library\"), person(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"), comment = \"selectize.js library\"), person(\"Salmen\", \"Bejaoui\", role = c(\"ctb\", \"cph\"), comment = \"selectize-plugin-a11y library\"), person(\"Denis\", \"Ineshin\", role = c(\"ctb\", \"cph\"), comment = \"ion.rangeSlider library\"), person(\"Sami\", \"Samhuri\", role = c(\"ctb\", \"cph\"), comment = \"Javascript strftime library\"), person(, \"SpryMedia Limited\", role = c(\"ctb\", \"cph\"), comment = \"DataTables library\"), person(\"Ivan\", \"Sagalaev\", role = c(\"ctb\", \"cph\"), comment = \"highlight.js library\"), person(\"R Core Team\", role = c(\"ctb\", \"cph\"), comment = \"tar implementation from R\") )",
"Description": "Makes it incredibly easy to build interactive web applications with R. Automatic \"reactive\" binding between inputs and outputs and extensive prebuilt widgets make it possible to build beautiful, responsive, and powerful applications with minimal effort.", "Description": "Makes it incredibly easy to build interactive web applications with R. Automatic \"reactive\" binding between inputs and outputs and extensive prebuilt widgets make it possible to build beautiful, responsive, and powerful applications with minimal effort.",
"License": "GPL-3 | file LICENSE", "License": "GPL-3 | file LICENSE",
"URL": "https://shiny.posit.co/, https://github.com/rstudio/shiny",
"BugReports": "https://github.com/rstudio/shiny/issues",
"Depends": [ "Depends": [
"R (>= 3.0.2)", "methods",
"methods" "R (>= 3.0.2)"
], ],
"Imports": [ "Imports": [
"utils",
"grDevices",
"httpuv (>= 1.5.2)",
"mime (>= 0.3)",
"jsonlite (>= 0.9.16)",
"xtable",
"fontawesome (>= 0.4.0)",
"htmltools (>= 0.5.4)",
"R6 (>= 2.0)",
"sourcetools",
"later (>= 1.0.0)",
"promises (>= 1.3.2)",
"tools",
"cli",
"rlang (>= 0.4.10)",
"fastmap (>= 1.1.1)",
"withr",
"commonmark (>= 1.7)",
"glue (>= 1.3.2)",
"bslib (>= 0.6.0)", "bslib (>= 0.6.0)",
"cachem (>= 1.1.0)", "cachem (>= 1.1.0)",
"lifecycle (>= 0.2.0)" "cli",
"commonmark (>= 2.0.0)",
"fastmap (>= 1.1.1)",
"fontawesome (>= 0.4.0)",
"glue (>= 1.3.2)",
"grDevices",
"htmltools (>= 0.5.4)",
"httpuv (>= 1.5.2)",
"jsonlite (>= 0.9.16)",
"later (>= 1.0.0)",
"lifecycle (>= 0.2.0)",
"mime (>= 0.3)",
"otel",
"promises (>= 1.5.0)",
"R6 (>= 2.0)",
"rlang (>= 0.4.10)",
"sourcetools",
"tools",
"utils",
"withr",
"xtable"
], ],
"Suggests": [ "Suggests": [
"Cairo (>= 1.5-5)",
"coro (>= 1.1.0)", "coro (>= 1.1.0)",
"datasets", "datasets",
"DT", "DT",
"Cairo (>= 1.5-5)",
"testthat (>= 3.2.1)",
"knitr (>= 1.6)",
"markdown",
"rmarkdown",
"ggplot2",
"reactlog (>= 1.0.0)",
"magrittr",
"yaml",
"mirai",
"future",
"dygraphs", "dygraphs",
"future",
"ggplot2",
"knitr (>= 1.6)",
"magrittr",
"markdown",
"mirai",
"otelsdk (>= 0.2.0)",
"ragg", "ragg",
"showtext", "reactlog (>= 1.0.0)",
"rmarkdown",
"sass", "sass",
"watcher" "showtext",
"testthat (>= 3.2.1)",
"watcher",
"yaml"
], ],
"URL": "https://shiny.posit.co/, https://github.com/rstudio/shiny",
"BugReports": "https://github.com/rstudio/shiny/issues",
"Collate": "'globals.R' 'app-state.R' 'app_template.R' 'bind-cache.R' 'bind-event.R' 'bookmark-state-local.R' 'bookmark-state.R' 'bootstrap-deprecated.R' 'bootstrap-layout.R' 'conditions.R' 'map.R' 'utils.R' 'bootstrap.R' 'busy-indicators-spinners.R' 'busy-indicators.R' 'cache-utils.R' 'deprecated.R' 'devmode.R' 'diagnose.R' 'extended-task.R' 'fileupload.R' 'graph.R' 'reactives.R' 'reactive-domains.R' 'history.R' 'hooks.R' 'html-deps.R' 'image-interact-opts.R' 'image-interact.R' 'imageutils.R' 'input-action.R' 'input-checkbox.R' 'input-checkboxgroup.R' 'input-date.R' 'input-daterange.R' 'input-file.R' 'input-numeric.R' 'input-password.R' 'input-radiobuttons.R' 'input-select.R' 'input-slider.R' 'input-submit.R' 'input-text.R' 'input-textarea.R' 'input-utils.R' 'insert-tab.R' 'insert-ui.R' 'jqueryui.R' 'knitr.R' 'middleware-shiny.R' 'middleware.R' 'timer.R' 'shiny.R' 'mock-session.R' 'modal.R' 'modules.R' 'notifications.R' 'priorityqueue.R' 'progress.R' 'react.R' 'reexports.R' 'render-cached-plot.R' 'render-plot.R' 'render-table.R' 'run-url.R' 'runapp.R' 'serializers.R' 'server-input-handlers.R' 'server-resource-paths.R' 'server.R' 'shiny-options.R' 'shiny-package.R' 'shinyapp.R' 'shinyui.R' 'shinywrappers.R' 'showcase.R' 'snapshot.R' 'staticimports.R' 'tar.R' 'test-export.R' 'test-server.R' 'test.R' 'update-input.R' 'utils-lang.R' 'version_bs_date_picker.R' 'version_ion_range_slider.R' 'version_jquery.R' 'version_jqueryui.R' 'version_selectize.R' 'version_strftime.R' 'viewer.R'",
"RoxygenNote": "7.3.2",
"Encoding": "UTF-8",
"Config/testthat/edition": "3",
"Config/Needs/check": "shinytest2", "Config/Needs/check": "shinytest2",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.3",
"Collate": "'globals.R' 'app-state.R' 'app_template.R' 'bind-cache.R' 'bind-event.R' 'bookmark-state-local.R' 'bookmark-state.R' 'bootstrap-deprecated.R' 'bootstrap-layout.R' 'conditions.R' 'map.R' 'utils.R' 'bootstrap.R' 'busy-indicators-spinners.R' 'busy-indicators.R' 'cache-utils.R' 'deprecated.R' 'devmode.R' 'diagnose.R' 'extended-task.R' 'fileupload.R' 'graph.R' 'reactives.R' 'reactive-domains.R' 'history.R' 'hooks.R' 'html-deps.R' 'image-interact-opts.R' 'image-interact.R' 'imageutils.R' 'input-action.R' 'input-checkbox.R' 'input-checkboxgroup.R' 'input-date.R' 'input-daterange.R' 'input-file.R' 'input-numeric.R' 'input-password.R' 'input-radiobuttons.R' 'input-select.R' 'input-slider.R' 'input-submit.R' 'input-text.R' 'input-textarea.R' 'input-utils.R' 'insert-tab.R' 'insert-ui.R' 'jqueryui.R' 'knitr.R' 'middleware-shiny.R' 'middleware.R' 'timer.R' 'shiny.R' 'mock-session.R' 'modal.R' 'modules.R' 'notifications.R' 'otel-attr-srcref.R' 'otel-collect.R' 'otel-enable.R' 'otel-error.R' 'otel-label.R' 'otel-reactive-update.R' 'otel-session.R' 'otel-shiny.R' 'otel-with.R' 'priorityqueue.R' 'progress.R' 'react.R' 'reexports.R' 'render-cached-plot.R' 'render-plot.R' 'render-table.R' 'run-url.R' 'runapp.R' 'serializers.R' 'server-input-handlers.R' 'server-resource-paths.R' 'server.R' 'shiny-options.R' 'shiny-package.R' 'shinyapp.R' 'shinyui.R' 'shinywrappers.R' 'showcase.R' 'snapshot.R' 'staticimports.R' 'tar.R' 'test-export.R' 'test-server.R' 'test.R' 'update-input.R' 'utils-lang.R' 'utils-tags.R' 'version_bs_date_picker.R' 'version_ion_range_slider.R' 'version_jquery.R' 'version_jqueryui.R' 'version_selectize.R' 'version_strftime.R' 'viewer.R'",
"NeedsCompilation": "no", "NeedsCompilation": "no",
"Author": "Winston Chang [aut, cre] (ORCID: <https://orcid.org/0000-0002-1576-2126>), Joe Cheng [aut], JJ Allaire [aut], Carson Sievert [aut] (ORCID: <https://orcid.org/0000-0002-4958-2844>), Barret Schloerke [aut] (ORCID: <https://orcid.org/0000-0001-9986-114X>), Yihui Xie [aut], Jeff Allen [aut], Jonathan McPherson [aut], Alan Dipert [aut], Barbara Borges [aut], Posit Software, PBC [cph, fnd], jQuery Foundation [cph] (jQuery library and jQuery UI library), jQuery contributors [ctb, cph] (jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt), jQuery UI contributors [ctb, cph] (jQuery UI library; authors listed in inst/www/shared/jqueryui/AUTHORS.txt), Mark Otto [ctb] (Bootstrap library), Jacob Thornton [ctb] (Bootstrap library), Bootstrap contributors [ctb] (Bootstrap library), Twitter, Inc [cph] (Bootstrap library), Prem Nawaz Khan [ctb] (Bootstrap accessibility plugin), Victor Tsaran [ctb] (Bootstrap accessibility plugin), Dennis Lembree [ctb] (Bootstrap accessibility plugin), Srinivasu Chakravarthula [ctb] (Bootstrap accessibility plugin), Cathy O'Connor [ctb] (Bootstrap accessibility plugin), PayPal, Inc [cph] (Bootstrap accessibility plugin), Stefan Petre [ctb, cph] (Bootstrap-datepicker library), Andrew Rowls [ctb, cph] (Bootstrap-datepicker library), Brian Reavis [ctb, cph] (selectize.js library), Salmen Bejaoui [ctb, cph] (selectize-plugin-a11y library), Denis Ineshin [ctb, cph] (ion.rangeSlider library), Sami Samhuri [ctb, cph] (Javascript strftime library), SpryMedia Limited [ctb, cph] (DataTables library), John Fraser [ctb, cph] (showdown.js library), John Gruber [ctb, cph] (showdown.js library), Ivan Sagalaev [ctb, cph] (highlight.js library), R Core Team [ctb, cph] (tar implementation from R)", "Author": "Winston Chang [aut] (ORCID: <https://orcid.org/0000-0002-1576-2126>), Joe Cheng [aut], JJ Allaire [aut], Carson Sievert [aut, cre] (ORCID: <https://orcid.org/0000-0002-4958-2844>), Barret Schloerke [aut] (ORCID: <https://orcid.org/0000-0001-9986-114X>), Garrick Aden-Buie [aut] (ORCID: <https://orcid.org/0000-0002-7111-0077>), Yihui Xie [aut], Jeff Allen [aut], Jonathan McPherson [aut], Alan Dipert [aut], Barbara Borges [aut], Posit Software, PBC [cph, fnd] (ROR: <https://ror.org/03wc8by49>), jQuery Foundation [cph] (jQuery library and jQuery UI library), jQuery contributors [ctb, cph] (jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt), jQuery UI contributors [ctb, cph] (jQuery UI library; authors listed in inst/www/shared/jqueryui/AUTHORS.txt), Mark Otto [ctb] (Bootstrap library), Jacob Thornton [ctb] (Bootstrap library), Bootstrap contributors [ctb] (Bootstrap library), Twitter, Inc [cph] (Bootstrap library), Prem Nawaz Khan [ctb] (Bootstrap accessibility plugin), Victor Tsaran [ctb] (Bootstrap accessibility plugin), Dennis Lembree [ctb] (Bootstrap accessibility plugin), Srinivasu Chakravarthula [ctb] (Bootstrap accessibility plugin), Cathy O'Connor [ctb] (Bootstrap accessibility plugin), PayPal, Inc [cph] (Bootstrap accessibility plugin), Stefan Petre [ctb, cph] (Bootstrap-datepicker library), Andrew Rowls [ctb, cph] (Bootstrap-datepicker library), Brian Reavis [ctb, cph] (selectize.js library), Salmen Bejaoui [ctb, cph] (selectize-plugin-a11y library), Denis Ineshin [ctb, cph] (ion.rangeSlider library), Sami Samhuri [ctb, cph] (Javascript strftime library), SpryMedia Limited [ctb, cph] (DataTables library), Ivan Sagalaev [ctb, cph] (highlight.js library), R Core Team [ctb, cph] (tar implementation from R)",
"Maintainer": "Winston Chang <winston@posit.co>", "Maintainer": "Carson Sievert <carson@posit.co>",
"Repository": "CRAN" "Repository": "CRAN"
}, },
"sourcetools": { "sourcetools": {
@ -3168,10 +3184,10 @@
}, },
"tibble": { "tibble": {
"Package": "tibble", "Package": "tibble",
"Version": "3.3.0", "Version": "3.3.1",
"Source": "Repository", "Source": "Repository",
"Title": "Simple Data Frames", "Title": "Simple Data Frames",
"Authors@R": "c(person(given = \"Kirill\", family = \"M\\u00fcller\", role = c(\"aut\", \"cre\"), email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(given = \"Hadley\", family = \"Wickham\", role = \"aut\", email = \"hadley@rstudio.com\"), person(given = \"Romain\", family = \"Francois\", role = \"ctb\", email = \"romain@r-enthusiasts.com\"), person(given = \"Jennifer\", family = \"Bryan\", role = \"ctb\", email = \"jenny@rstudio.com\"), person(given = \"RStudio\", role = c(\"cph\", \"fnd\")))", "Authors@R": "c( person(\"Kirill\", \"Müller\", , \"kirill@cynkra.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-1416-3412\")), person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = \"aut\"), person(\"Romain\", \"Francois\", , \"romain@r-enthusiasts.com\", role = \"ctb\"), person(\"Jennifer\", \"Bryan\", , \"jenny@rstudio.com\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )",
"Description": "Provides a 'tbl_df' class (the 'tibble') with stricter checking and better formatting than the traditional data frame.", "Description": "Provides a 'tbl_df' class (the 'tibble') with stricter checking and better formatting than the traditional data frame.",
"License": "MIT + file LICENSE", "License": "MIT + file LICENSE",
"URL": "https://tibble.tidyverse.org/, https://github.com/tidyverse/tibble", "URL": "https://tibble.tidyverse.org/, https://github.com/tidyverse/tibble",
@ -3216,23 +3232,24 @@
"withr" "withr"
], ],
"VignetteBuilder": "knitr", "VignetteBuilder": "knitr",
"Encoding": "UTF-8", "Config/autostyle/rmd": "false",
"RoxygenNote": "7.3.2.9000", "Config/autostyle/scope": "line_breaks",
"Config/autostyle/strict": "true",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3", "Config/testthat/edition": "3",
"Config/testthat/parallel": "true", "Config/testthat/parallel": "true",
"Config/testthat/start-first": "vignette-formats, as_tibble, add, invariants", "Config/testthat/start-first": "vignette-formats, as_tibble, add, invariants",
"Config/autostyle/scope": "line_breaks", "Config/usethis/last-upkeep": "2025-06-07",
"Config/autostyle/strict": "true", "Encoding": "UTF-8",
"Config/autostyle/rmd": "false", "RoxygenNote": "7.3.3.9000",
"Config/Needs/website": "tidyverse/tidytemplate",
"NeedsCompilation": "yes", "NeedsCompilation": "yes",
"Author": "Kirill Müller [aut, cre] (ORCID: <https://orcid.org/0000-0002-1416-3412>), Hadley Wickham [aut], Romain Francois [ctb], Jennifer Bryan [ctb], RStudio [cph, fnd]", "Author": "Kirill Müller [aut, cre] (ORCID: <https://orcid.org/0000-0002-1416-3412>), Hadley Wickham [aut], Romain Francois [ctb], Jennifer Bryan [ctb], Posit Software, PBC [cph, fnd] (ROR: <https://ror.org/03wc8by49>)",
"Maintainer": "Kirill Müller <kirill@cynkra.com>", "Maintainer": "Kirill Müller <kirill@cynkra.com>",
"Repository": "CRAN" "Repository": "CRAN"
}, },
"tidyr": { "tidyr": {
"Package": "tidyr", "Package": "tidyr",
"Version": "1.3.1", "Version": "1.3.2",
"Source": "Repository", "Source": "Repository",
"Title": "Tidy Messy Data", "Title": "Tidy Messy Data",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\"), person(\"Maximilian\", \"Girlich\", role = \"aut\"), person(\"Kevin\", \"Ushey\", , \"kevin@posit.co\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\"), person(\"Maximilian\", \"Girlich\", role = \"aut\"), person(\"Kevin\", \"Ushey\", , \"kevin@posit.co\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
@ -3241,11 +3258,11 @@
"URL": "https://tidyr.tidyverse.org, https://github.com/tidyverse/tidyr", "URL": "https://tidyr.tidyverse.org, https://github.com/tidyverse/tidyr",
"BugReports": "https://github.com/tidyverse/tidyr/issues", "BugReports": "https://github.com/tidyverse/tidyr/issues",
"Depends": [ "Depends": [
"R (>= 3.6)" "R (>= 4.1.0)"
], ],
"Imports": [ "Imports": [
"cli (>= 3.4.1)", "cli (>= 3.4.1)",
"dplyr (>= 1.0.10)", "dplyr (>= 1.1.0)",
"glue", "glue",
"lifecycle (>= 1.0.3)", "lifecycle (>= 1.0.3)",
"magrittr", "magrittr",
@ -3253,7 +3270,7 @@
"rlang (>= 1.1.1)", "rlang (>= 1.1.1)",
"stringr (>= 1.5.0)", "stringr (>= 1.5.0)",
"tibble (>= 2.1.1)", "tibble (>= 2.1.1)",
"tidyselect (>= 1.2.0)", "tidyselect (>= 1.2.1)",
"utils", "utils",
"vctrs (>= 0.5.2)" "vctrs (>= 0.5.2)"
], ],
@ -3270,11 +3287,12 @@
"cpp11 (>= 0.4.0)" "cpp11 (>= 0.4.0)"
], ],
"VignetteBuilder": "knitr", "VignetteBuilder": "knitr",
"Config/build/compilation-database": "true",
"Config/Needs/website": "tidyverse/tidytemplate", "Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3", "Config/testthat/edition": "3",
"Encoding": "UTF-8", "Encoding": "UTF-8",
"LazyData": "true", "LazyData": "true",
"RoxygenNote": "7.3.0", "RoxygenNote": "7.3.3",
"NeedsCompilation": "yes", "NeedsCompilation": "yes",
"Author": "Hadley Wickham [aut, cre], Davis Vaughan [aut], Maximilian Girlich [aut], Kevin Ushey [ctb], Posit Software, PBC [cph, fnd]", "Author": "Hadley Wickham [aut, cre], Davis Vaughan [aut], Maximilian Girlich [aut], Kevin Ushey [ctb], Posit Software, PBC [cph, fnd]",
"Maintainer": "Hadley Wickham <hadley@posit.co>", "Maintainer": "Hadley Wickham <hadley@posit.co>",
@ -3325,7 +3343,7 @@
}, },
"tinytex": { "tinytex": {
"Package": "tinytex", "Package": "tinytex",
"Version": "0.57", "Version": "0.58",
"Source": "Repository", "Source": "Repository",
"Type": "Package", "Type": "Package",
"Title": "Helper Functions to Install and Maintain TeX Live, and Compile LaTeX Documents", "Title": "Helper Functions to Install and Maintain TeX Live, and Compile LaTeX Documents",
@ -3342,9 +3360,9 @@
"URL": "https://github.com/rstudio/tinytex", "URL": "https://github.com/rstudio/tinytex",
"BugReports": "https://github.com/rstudio/tinytex/issues", "BugReports": "https://github.com/rstudio/tinytex/issues",
"Encoding": "UTF-8", "Encoding": "UTF-8",
"RoxygenNote": "7.3.2", "RoxygenNote": "7.3.3",
"NeedsCompilation": "no", "NeedsCompilation": "no",
"Author": "Yihui Xie [aut, cre, cph] (<https://orcid.org/0000-0003-0645-5666>), Posit Software, PBC [cph, fnd], Christophe Dervieux [ctb] (<https://orcid.org/0000-0003-4474-2498>), Devon Ryan [ctb] (<https://orcid.org/0000-0002-8549-0971>), Ethan Heinzen [ctb], Fernando Cagua [ctb]", "Author": "Yihui Xie [aut, cre, cph] (ORCID: <https://orcid.org/0000-0003-0645-5666>), Posit Software, PBC [cph, fnd], Christophe Dervieux [ctb] (ORCID: <https://orcid.org/0000-0003-4474-2498>), Devon Ryan [ctb] (ORCID: <https://orcid.org/0000-0002-8549-0971>), Ethan Heinzen [ctb], Fernando Cagua [ctb]",
"Maintainer": "Yihui Xie <xie@yihui.name>", "Maintainer": "Yihui Xie <xie@yihui.name>",
"Repository": "CRAN" "Repository": "CRAN"
}, },
@ -3411,7 +3429,7 @@
}, },
"vctrs": { "vctrs": {
"Package": "vctrs", "Package": "vctrs",
"Version": "0.6.5", "Version": "0.7.1",
"Source": "Repository", "Source": "Repository",
"Title": "Vector Helpers", "Title": "Vector Helpers",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = \"aut\"), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")), person(\"data.table team\", role = \"cph\", comment = \"Radix sort based on data.table's forder() and their contribution to R's order()\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = \"aut\"), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")), person(\"data.table team\", role = \"cph\", comment = \"Radix sort based on data.table's forder() and their contribution to R's order()\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
@ -3420,13 +3438,13 @@
"URL": "https://vctrs.r-lib.org/, https://github.com/r-lib/vctrs", "URL": "https://vctrs.r-lib.org/, https://github.com/r-lib/vctrs",
"BugReports": "https://github.com/r-lib/vctrs/issues", "BugReports": "https://github.com/r-lib/vctrs/issues",
"Depends": [ "Depends": [
"R (>= 3.5.0)" "R (>= 4.0.0)"
], ],
"Imports": [ "Imports": [
"cli (>= 3.4.0)", "cli (>= 3.4.0)",
"glue", "glue",
"lifecycle (>= 1.0.3)", "lifecycle (>= 1.0.3)",
"rlang (>= 1.1.0)" "rlang (>= 1.1.7)"
], ],
"Suggests": [ "Suggests": [
"bit64", "bit64",
@ -3446,11 +3464,13 @@
"zeallot" "zeallot"
], ],
"VignetteBuilder": "knitr", "VignetteBuilder": "knitr",
"Config/build/compilation-database": "true",
"Config/Needs/website": "tidyverse/tidytemplate", "Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3", "Config/testthat/edition": "3",
"Config/testthat/parallel": "true",
"Encoding": "UTF-8", "Encoding": "UTF-8",
"Language": "en-GB", "Language": "en-GB",
"RoxygenNote": "7.2.3", "RoxygenNote": "7.3.3",
"NeedsCompilation": "yes", "NeedsCompilation": "yes",
"Author": "Hadley Wickham [aut], Lionel Henry [aut], Davis Vaughan [aut, cre], data.table team [cph] (Radix sort based on data.table's forder() and their contribution to R's order()), Posit Software, PBC [cph, fnd]", "Author": "Hadley Wickham [aut], Lionel Henry [aut], Davis Vaughan [aut, cre], data.table team [cph] (Radix sort based on data.table's forder() and their contribution to R's order()), Posit Software, PBC [cph, fnd]",
"Maintainer": "Davis Vaughan <davis@posit.co>", "Maintainer": "Davis Vaughan <davis@posit.co>",
@ -3486,16 +3506,16 @@
}, },
"vroom": { "vroom": {
"Package": "vroom", "Package": "vroom",
"Version": "1.6.6", "Version": "1.7.0",
"Source": "Repository", "Source": "Repository",
"Title": "Read and Write Rectangular Text Data Quickly", "Title": "Read and Write Rectangular Text Data Quickly",
"Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6983-2759\")), person(\"Shelby\", \"Bearrows\", role = \"ctb\"), person(\"https://github.com/mandreyel/\", role = \"cph\", comment = \"mio library\"), person(\"Jukka\", \"Jylänki\", role = \"cph\", comment = \"grisu3 implementation\"), person(\"Mikkel\", \"Jørgensen\", role = \"cph\", comment = \"grisu3 implementation\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", "Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6983-2759\")), person(\"Shelby\", \"Bearrows\", role = \"ctb\"), person(\"https://github.com/mandreyel/\", role = \"cph\", comment = \"mio library\"), person(\"Jukka\", \"Jylänki\", role = \"cph\", comment = \"grisu3 implementation\"), person(\"Mikkel\", \"Jørgensen\", role = \"cph\", comment = \"grisu3 implementation\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )",
"Description": "The goal of 'vroom' is to read and write data (like 'csv', 'tsv' and 'fwf') quickly. When reading it uses a quick initial indexing step, then reads the values lazily , so only the data you actually use needs to be read. The writer formats the data in parallel and writes to disk asynchronously from formatting.", "Description": "The goal of 'vroom' is to read and write data (like 'csv', 'tsv' and 'fwf') quickly. When reading it uses a quick initial indexing step, then reads the values lazily , so only the data you actually use needs to be read. The writer formats the data in parallel and writes to disk asynchronously from formatting.",
"License": "MIT + file LICENSE", "License": "MIT + file LICENSE",
"URL": "https://vroom.r-lib.org, https://github.com/tidyverse/vroom", "URL": "https://vroom.tidyverse.org, https://github.com/tidyverse/vroom",
"BugReports": "https://github.com/tidyverse/vroom/issues", "BugReports": "https://github.com/tidyverse/vroom/issues",
"Depends": [ "Depends": [
"R (>= 3.6)" "R (>= 4.1)"
], ],
"Imports": [ "Imports": [
"bit64", "bit64",
@ -3505,7 +3525,7 @@
"hms", "hms",
"lifecycle (>= 1.0.3)", "lifecycle (>= 1.0.3)",
"methods", "methods",
"rlang (>= 0.4.2)", "rlang (>= 1.1.0)",
"stats", "stats",
"tibble (>= 2.0.0)", "tibble (>= 2.0.0)",
"tidyselect", "tidyselect",
@ -3545,12 +3565,14 @@
"Config/Needs/website": "nycflights13, tidyverse/tidytemplate", "Config/Needs/website": "nycflights13, tidyverse/tidytemplate",
"Config/testthat/edition": "3", "Config/testthat/edition": "3",
"Config/testthat/parallel": "false", "Config/testthat/parallel": "false",
"Config/usethis/last-upkeep": "2025-11-25",
"Copyright": "file COPYRIGHTS", "Copyright": "file COPYRIGHTS",
"Encoding": "UTF-8", "Encoding": "UTF-8",
"Language": "en-US", "Language": "en-US",
"RoxygenNote": "7.3.3", "RoxygenNote": "7.3.3",
"Config/build/compilation-database": "true",
"NeedsCompilation": "yes", "NeedsCompilation": "yes",
"Author": "Jim Hester [aut] (ORCID: <https://orcid.org/0000-0002-2739-7082>), Hadley Wickham [aut] (ORCID: <https://orcid.org/0000-0003-4757-117X>), Jennifer Bryan [aut, cre] (ORCID: <https://orcid.org/0000-0002-6983-2759>), Shelby Bearrows [ctb], https://github.com/mandreyel/ [cph] (mio library), Jukka Jylänki [cph] (grisu3 implementation), Mikkel Jørgensen [cph] (grisu3 implementation), Posit Software, PBC [cph, fnd]", "Author": "Jim Hester [aut] (ORCID: <https://orcid.org/0000-0002-2739-7082>), Hadley Wickham [aut] (ORCID: <https://orcid.org/0000-0003-4757-117X>), Jennifer Bryan [aut, cre] (ORCID: <https://orcid.org/0000-0002-6983-2759>), Shelby Bearrows [ctb], https://github.com/mandreyel/ [cph] (mio library), Jukka Jylänki [cph] (grisu3 implementation), Mikkel Jørgensen [cph] (grisu3 implementation), Posit Software, PBC [cph, fnd] (ROR: <https://ror.org/03wc8by49>)",
"Maintainer": "Jennifer Bryan <jenny@posit.co>", "Maintainer": "Jennifer Bryan <jenny@posit.co>",
"Repository": "CRAN" "Repository": "CRAN"
}, },
@ -3594,7 +3616,7 @@
}, },
"xfun": { "xfun": {
"Package": "xfun", "Package": "xfun",
"Version": "0.54", "Version": "0.56",
"Source": "Repository", "Source": "Repository",
"Type": "Package", "Type": "Package",
"Title": "Supporting Functions for Packages Maintained by 'Yihui Xie'", "Title": "Supporting Functions for Packages Maintained by 'Yihui Xie'",
@ -3627,7 +3649,7 @@
"magick", "magick",
"yaml", "yaml",
"data.table", "data.table",
"qs" "qs2"
], ],
"License": "MIT + file LICENSE", "License": "MIT + file LICENSE",
"URL": "https://github.com/yihui/xfun", "URL": "https://github.com/yihui/xfun",
@ -3642,7 +3664,7 @@
}, },
"xml2": { "xml2": {
"Package": "xml2", "Package": "xml2",
"Version": "1.4.1", "Version": "1.5.2",
"Source": "Repository", "Source": "Repository",
"Title": "Parse XML", "Title": "Parse XML",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Jeroen\", \"Ooms\", email = \"jeroenooms@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"R Foundation\", role = \"ctb\", comment = \"Copy of R-project homepage cached as example\") )", "Authors@R": "c( person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Jeroen\", \"Ooms\", email = \"jeroenooms@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"R Foundation\", role = \"ctb\", comment = \"Copy of R-project homepage cached as example\") )",
@ -3711,21 +3733,28 @@
}, },
"yaml": { "yaml": {
"Package": "yaml", "Package": "yaml",
"Version": "2.3.10", "Version": "2.3.12",
"Source": "Repository", "Source": "Repository",
"Type": "Package", "Type": "Package",
"Title": "Methods to Convert R Data to YAML and Back", "Title": "Methods to Convert R Data to YAML and Back",
"Date": "2024-07-22", "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"cre\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Shawn\", \"Garbett\", , \"shawn.garbett@vumc.org\", role = \"ctb\", comment = c(ORCID = \"0000-0003-4079-5621\")), person(\"Jeremy\", \"Stephens\", role = c(\"aut\", \"ctb\")), person(\"Kirill\", \"Simonov\", role = \"aut\"), person(\"Yihui\", \"Xie\", role = \"ctb\", comment = c(ORCID = \"0000-0003-0645-5666\")), person(\"Zhuoer\", \"Dong\", role = \"ctb\"), person(\"Jeffrey\", \"Horner\", role = \"ctb\"), person(\"reikoch\", role = \"ctb\"), person(\"Will\", \"Beasley\", role = \"ctb\", comment = c(ORCID = \"0000-0002-5613-5006\")), person(\"Brendan\", \"O'Connor\", role = \"ctb\"), person(\"Michael\", \"Quinn\", role = \"ctb\"), person(\"Charlie\", \"Gao\", role = \"ctb\"), person(c(\"Gregory\", \"R.\"), \"Warnes\", role = \"ctb\"), person(c(\"Zhian\", \"N.\"), \"Kamvar\", role = \"ctb\") )",
"Suggests": [
"RUnit"
],
"Author": "Shawn P Garbett [aut], Jeremy Stephens [aut, cre], Kirill Simonov [aut], Yihui Xie [ctb], Zhuoer Dong [ctb], Hadley Wickham [ctb], Jeffrey Horner [ctb], reikoch [ctb], Will Beasley [ctb], Brendan O'Connor [ctb], Gregory R. Warnes [ctb], Michael Quinn [ctb], Zhian N. Kamvar [ctb], Charlie Gao [ctb]",
"Maintainer": "Shawn Garbett <shawn.garbett@vumc.org>",
"License": "BSD_3_clause + file LICENSE",
"Description": "Implements the 'libyaml' 'YAML' 1.1 parser and emitter (<https://pyyaml.org/wiki/LibYAML>) for R.", "Description": "Implements the 'libyaml' 'YAML' 1.1 parser and emitter (<https://pyyaml.org/wiki/LibYAML>) for R.",
"URL": "https://github.com/vubiostat/r-yaml/", "License": "BSD_3_clause + file LICENSE",
"BugReports": "https://github.com/vubiostat/r-yaml/issues", "URL": "https://yaml.r-lib.org, https://github.com/r-lib/yaml/",
"BugReports": "https://github.com/r-lib/yaml/issues",
"Suggests": [
"knitr",
"rmarkdown",
"testthat (>= 3.0.0)"
],
"Config/testthat/edition": "3",
"Config/Needs/website": "tidyverse/tidytemplate",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.3",
"VignetteBuilder": "knitr",
"NeedsCompilation": "yes", "NeedsCompilation": "yes",
"Author": "Hadley Wickham [cre] (ORCID: <https://orcid.org/0000-0003-4757-117X>), Shawn Garbett [ctb] (ORCID: <https://orcid.org/0000-0003-4079-5621>), Jeremy Stephens [aut, ctb], Kirill Simonov [aut], Yihui Xie [ctb] (ORCID: <https://orcid.org/0000-0003-0645-5666>), Zhuoer Dong [ctb], Jeffrey Horner [ctb], reikoch [ctb], Will Beasley [ctb] (ORCID: <https://orcid.org/0000-0002-5613-5006>), Brendan O'Connor [ctb], Michael Quinn [ctb], Charlie Gao [ctb], Gregory R. Warnes [ctb], Zhian N. Kamvar [ctb]",
"Maintainer": "Hadley Wickham <hadley@posit.co>",
"Repository": "CRAN" "Repository": "CRAN"
}, },
"zip": { "zip": {

View file

@ -2,7 +2,7 @@
local({ local({
# the requested version of renv # the requested version of renv
version <- "1.1.5" version <- "1.1.7"
attr(version, "sha") <- NULL attr(version, "sha") <- NULL
# the project directory # the project directory