From 1c4451e8f91b675114ac2106a87bf1ed22d5a79f Mon Sep 17 00:00:00 2001 From: Jeff Thompson <160783290+jthompson-arcus@users.noreply.github.com> Date: Fri, 2 Aug 2024 14:01:50 -0400 Subject: [PATCH 01/20] Remove evaluation recording from riskmetric assessments --- R/utils_insert_db.R | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/R/utils_insert_db.R b/R/utils_insert_db.R index 3b9f9cb1..3b25f4da 100644 --- a/R/utils_insert_db.R +++ b/R/utils_insert_db.R @@ -183,7 +183,20 @@ insert_riskmetric_to_db <- function(pkg_name, pkg_version = "", loggit::loggit("WARN", paste("Package", pkg_name, "not found.")) return() } - + + riskmetric_assess <- + lapply(riskmetric_assess[-(1:3)], \(x) { + out <- + list( + structure( + x[[1]], + .recording = NULL, + class = setdiff(class(x[[1]]), "with_eval_recording") + ) + ) + attributes(out) <- attributes(x) + out + }) assessment_serialized <- data.frame(pkg_assess = I(lapply(riskmetric_assess, serialize, connection = NULL))) # Insert all the metrics (columns of class "pkg_score") into the db. From dcb0728a429a44dc8cbe5088f370015a1e1b8445 Mon Sep 17 00:00:00 2001 From: Jeff Thompson <160783290+jthompson-arcus@users.noreply.github.com> Date: Mon, 5 Aug 2024 08:45:56 -0400 Subject: [PATCH 02/20] Update NEWS --- NEWS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/NEWS.md b/NEWS.md index 678888e2..2389cf67 100644 --- a/NEWS.md +++ b/NEWS.md @@ -4,6 +4,7 @@ * Fixed bug that crashed the Package Dependencies page for pkgs without any dependency info available (#802) * Fixed bug that incorrectly displayed 0 dependencies as 1 (#805) * Fixed bug that kept full list of available packages from populating (#776) +* Removed `.recording` attribute from `riskmetric` assessments for storage purposes # riskassessment 3.1.0 From db3593251494fa6150f6f8098c59aa061cbe38d2 Mon Sep 17 00:00:00 2001 From: Jeff Thompson <160783290+jthompson-arcus@users.noreply.github.com> Date: Mon, 5 Aug 2024 09:00:01 -0400 Subject: [PATCH 03/20] Check for tarball directory before returning from `initialize_raa()` --- R/utils_startup.R | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/R/utils_startup.R b/R/utils_startup.R index 644d0f57..6ecaf4c3 100644 --- a/R/utils_startup.R +++ b/R/utils_startup.R @@ -217,8 +217,10 @@ initialize_raa <- function(assess_db, cred_db, configuration) { check_repos(db_config[["package_repo"]]) - if (file.exists(assessment_db) && (isTRUE(getOption("shiny.testmode")) || use_shinymanager && file.exists(credentials_db))) - return(invisible(c(assessment_db, if (!isTRUE(getOption("shiny.testmode")) & use_shinymanager) credentials_db))) + if (!dir.exists("tarballs")) dir.create("tarballs") + + if (file.exists(assessment_db) && (use_shinymanager && file.exists(credentials_db))) + return(invisible(c(assessment_db, if (use_shinymanager) credentials_db))) check_credentials(db_config[["credentials"]]) @@ -242,8 +244,6 @@ initialize_raa <- function(assess_db, cred_db, configuration) { } else if (!identical(decisions$decision, decision_categories)) { stop("The decision categories in the configuration file do not match those in the assessment database.") } - - if (!dir.exists("tarballs")) dir.create("tarballs") invisible(c(assessment_db, if (use_shinymanager) credentials_db)) } From 7ab8821d7eaaf5ed4758437068a2311468c5797c Mon Sep 17 00:00:00 2001 From: Jeff Thompson <160783290+jthompson-arcus@users.noreply.github.com> Date: Mon, 5 Aug 2024 09:17:54 -0400 Subject: [PATCH 04/20] Update NEWS --- NEWS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/NEWS.md b/NEWS.md index 2389cf67..0f8d0a32 100644 --- a/NEWS.md +++ b/NEWS.md @@ -5,6 +5,7 @@ * Fixed bug that incorrectly displayed 0 dependencies as 1 (#805) * Fixed bug that kept full list of available packages from populating (#776) * Removed `.recording` attribute from `riskmetric` assessments for storage purposes +* Ensured `tarballs` directory existed before returning from `initialize_raa()` # riskassessment 3.1.0 From 1265f768087f810061b17d0d6f106f4620a04db1 Mon Sep 17 00:00:00 2001 From: Github Actions Date: Mon, 5 Aug 2024 13:19:49 +0000 Subject: [PATCH 05/20] Re-build manifest file --- manifest.json | 218 +++++++++++++++++++++++++------------------------- 1 file changed, 109 insertions(+), 109 deletions(-) diff --git a/manifest.json b/manifest.json index 2546af10..5f8e9d23 100644 --- a/manifest.json +++ b/manifest.json @@ -54,7 +54,7 @@ "Repository": "RSPM", "Date/Publication": "2024-01-10 11:53:35 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2024-05-30 01:39:27 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:46 UTC; unix" } }, "BiocManager": { @@ -168,7 +168,7 @@ "Maintainer": "Brian Ripley ", "Repository": "CRAN", "Date/Publication": "2024-01-13 13:36:16 UTC", - "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2024-05-25 01:45:06 UTC; unix" + "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2024-08-01 23:58:31 UTC; unix" } }, "Matrix": { @@ -201,7 +201,7 @@ "Maintainer": "Martin Maechler ", "Repository": "CRAN", "Date/Publication": "2024-01-11 17:50:15 UTC", - "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2024-05-25 01:45:20 UTC; unix" + "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2024-08-01 23:58:46 UTC; unix" } }, "R.methodsS3": { @@ -304,7 +304,7 @@ "Repository": "RSPM", "Date/Publication": "2021-08-19 14:00:05 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2024-05-30 00:32:53 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:45 UTC; unix" } }, "RColorBrewer": { @@ -326,7 +326,7 @@ "Repository": "RSPM", "Date/Publication": "2022-04-03 19:20:13 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2023-04-21 21:44:53 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:35 UTC; unix" } }, "RSQLite": { @@ -386,7 +386,7 @@ "Packaged": "2024-01-08 12:50:16 UTC; edd", "Repository": "RSPM", "Date/Publication": "2024-01-09 08:20:35 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-05-30 01:39:06 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:39 UTC; unix" } }, "anytime": { @@ -414,7 +414,7 @@ "Packaged": "2020-08-26 17:46:45.898451 UTC; edd", "Repository": "RSPM", "Date/Publication": "2020-08-27 11:40:21 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-01-11 13:12:03 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-07-18 06:49:15 UTC; unix" } }, "archive": { @@ -471,7 +471,7 @@ "Maintainer": "Jeroen Ooms ", "Repository": "RSPM", "Date/Publication": "2023-09-03 20:00:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-09-04 11:31:18 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:35 UTC; unix" } }, "assertthat": { @@ -495,7 +495,7 @@ "Repository": "RSPM", "Date/Publication": "2019-03-21 14:53:46 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2024-06-25 22:08:11 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:44 UTC; unix" } }, "attachment": { @@ -600,7 +600,7 @@ "Repository": "RSPM", "Date/Publication": "2015-07-28 08:03:37", "Encoding": "UTF-8", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-08-11 13:38:05 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:29 UTC; unix" } }, "billboarder": { @@ -656,7 +656,7 @@ "Packaged": "2022-11-13 21:22:09 UTC; jo", "Repository": "RSPM", "Date/Publication": "2022-11-15 21:20:16 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:46:43 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:39 UTC; unix" } }, "bit64": { @@ -684,7 +684,7 @@ "Date/Publication": "2020-08-30 07:20:02 UTC", "NeedsCompilation": "yes", "Packaged": "2020-08-29 10:56:45 UTC; jo", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:46:57 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:53 UTC; unix" } }, "blob": { @@ -828,7 +828,7 @@ "Maintainer": "Carson Sievert ", "Repository": "RSPM", "Date/Publication": "2024-03-29 01:00:03 UTC", - "Built": "R 4.3.0; ; 2024-03-29 04:17:14 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:48:24 UTC; unix" } }, "cachem": { @@ -884,7 +884,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2024-03-25 13:30:06 UTC", - "Built": "R 4.3.0; ; 2024-06-25 22:13:07 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:45:50 UTC; unix" } }, "cellranger": { @@ -940,7 +940,7 @@ "RoxygenNote": "7.3.0", "Author": "Sebastien Rochette [aut, cre] (),\n Vincent Guyader [aut] (),\n Arthur Bréant [aut] (),\n Murielle Delmotte [aut] (),\n ThinkR [cph]", "Maintainer": "Sebastien Rochette ", - "Built": "R 4.3.3; ; 2024-06-26 14:09:33 UTC; unix", + "Built": "R 4.3.3; ; 2024-08-05 13:07:36 UTC; unix", "RemoteType": "github", "RemoteUsername": "thinkr-open", "RemoteRepo": "checkhelper", @@ -982,7 +982,7 @@ "Maintainer": "Michel Lang ", "Repository": "RSPM", "Date/Publication": "2023-12-04 10:20:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-12-05 15:35:32 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:35 UTC; unix" } }, "chromote": { @@ -1068,7 +1068,7 @@ "Maintainer": "Matthew Lincoln ", "Repository": "RSPM", "Date/Publication": "2022-02-22 00:58:45 UTC", - "Built": "R 4.3.0; ; 2023-04-21 21:44:55 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:52 UTC; unix" } }, "clisymbols": { @@ -1091,7 +1091,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2017-05-21 17:19:19 UTC", - "Built": "R 4.3.0; ; 2024-06-25 22:08:30 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:45:27 UTC; unix" } }, "codetools": { @@ -1113,7 +1113,7 @@ "Repository": "RSPM", "Date/Publication": "2024-03-31 20:10:06 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2024-06-25 22:09:39 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:45:04 UTC; unix" } }, "colorspace": { @@ -1142,7 +1142,7 @@ "Maintainer": "Achim Zeileis ", "Repository": "RSPM", "Date/Publication": "2023-01-23 11:40:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:54:01 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:43 UTC; unix" } }, "commonmark": { @@ -1168,7 +1168,7 @@ "Maintainer": "Jeroen Ooms ", "Repository": "RSPM", "Date/Publication": "2024-01-30 12:40:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-25 22:11:40 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:43 UTC; unix" } }, "config": { @@ -1281,7 +1281,7 @@ "Maintainer": "Davis Vaughan ", "Repository": "RSPM", "Date/Publication": "2023-12-02 13:20:02 UTC", - "Built": "R 4.3.0; ; 2023-12-04 11:50:35 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:42 UTC; unix" } }, "crancache": { @@ -1303,7 +1303,7 @@ "Imports": "callr,\ncranlike (>= 1.0.2),\ncurl,\ndesc (>= 1.1.0),\ndigest,\nparsedate,\nrappdirs,\nrematch2,\ntools,\nutils,\nwithr", "Suggests": "covr,\npingr,\ntestthat,\nzip", "Encoding": "UTF-8", - "Built": "R 4.3.3; ; 2024-06-26 14:09:41 UTC; unix", + "Built": "R 4.3.3; ; 2024-08-05 13:07:44 UTC; unix", "RemoteType": "github", "RemoteHost": "api.github.com", "RemoteUsername": "r-lib", @@ -1504,7 +1504,7 @@ "Maintainer": "Jeroen Ooms ", "Repository": "RSPM", "Date/Publication": "2024-03-01 23:22:46 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-03-04 12:33:23 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:35 UTC; unix" } }, "data.table": { @@ -1531,7 +1531,7 @@ "Repository": "RSPM", "Date/Publication": "2024-03-30 23:50:02 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-05-30 00:32:55 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:59 UTC; unix" } }, "dbplyr": { @@ -1619,7 +1619,7 @@ "Author": "Gábor Csárdi [aut, cre],\n Kirill Müller [aut],\n Jim Hester [aut],\n Maëlle Salmon [ctb] (),\n Posit Software, PBC [cph, fnd]", "Repository": "RSPM", "Date/Publication": "2023-12-10 11:40:08 UTC", - "Built": "R 4.3.0; ; 2024-06-25 22:12:53 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:45:09 UTC; unix" } }, "devtools": { @@ -1678,7 +1678,7 @@ "Maintainer": "Brodie Gaslam ", "Repository": "RSPM", "Date/Publication": "2021-10-05 07:10:17 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-25 22:10:14 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:52 UTC; unix" } }, "digest": { @@ -1763,7 +1763,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2023-11-17 16:50:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-25 22:19:26 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:46:52 UTC; unix" } }, "dtplyr": { @@ -1874,7 +1874,7 @@ "Maintainer": "Brodie Gaslam ", "Repository": "RSPM", "Date/Publication": "2023-12-08 03:30:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-25 22:12:46 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:34 UTC; unix" } }, "farver": { @@ -1976,7 +1976,7 @@ "License_is_FOSS": "yes", "Repository": "RSPM", "Date/Publication": "2017-02-01 00:53:34", - "Built": "R 4.3.0; ; 2024-06-25 22:12:25 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:35 UTC; unix" } }, "fontLiberation": { @@ -2000,7 +2000,7 @@ "Repository": "RSPM", "Date/Publication": "2016-10-15 11:24:18", "License_is_FOSS": "yes", - "Built": "R 4.3.0; ; 2024-06-25 22:17:44 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:31 UTC; unix" } }, "fontawesome": { @@ -2029,7 +2029,7 @@ "Maintainer": "Richard Iannone ", "Repository": "RSPM", "Date/Publication": "2023-08-19 04:52:40 UTC", - "Built": "R 4.3.0; ; 2023-08-21 12:16:43 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:45:27 UTC; unix" } }, "fontquiver": { @@ -2055,7 +2055,7 @@ "Maintainer": "Lionel Henry ", "Repository": "RSPM", "Date/Publication": "2017-02-01 00:52:56", - "Built": "R 4.3.0; ; 2024-06-25 22:19:02 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:48 UTC; unix" } }, "forcats": { @@ -2085,7 +2085,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2023-01-29 22:20:02 UTC", - "Built": "R 4.3.0; ; 2024-06-25 22:18:24 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:46:49 UTC; unix" } }, "formattable": { @@ -2206,7 +2206,7 @@ "Maintainer": "David Gohel ", "Repository": "RSPM", "Date/Publication": "2024-03-05 05:30:36 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-25 22:20:08 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-07-18 07:39:09 UTC; unix" } }, "generics": { @@ -2234,7 +2234,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2022-07-05 19:40:02 UTC", - "Built": "R 4.3.0; ; 2023-06-20 23:46:09 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:26 UTC; unix" } }, "gert": { @@ -2291,7 +2291,7 @@ "Maintainer": "Victor Perrier ", "Repository": "RSPM", "Date/Publication": "2023-01-08 18:50:02 UTC", - "Built": "R 4.3.0; ; 2024-06-25 22:18:39 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:50:55 UTC; unix" } }, "ggplot2": { @@ -2409,7 +2409,7 @@ "Repository": "RSPM", "Date/Publication": "2024-03-08 00:00:03 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2024-03-08 03:45:11 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:45:21 UTC; unix" } }, "glue": { @@ -2439,7 +2439,7 @@ "Maintainer": "Jennifer Bryan ", "Repository": "RSPM", "Date/Publication": "2024-01-09 23:13:08 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-01-11 12:53:35 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:27 UTC; unix" } }, "gmailr": { @@ -2617,7 +2617,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2023-11-30 15:10:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-12-04 11:56:10 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:49:38 UTC; unix" } }, "here": { @@ -2704,7 +2704,7 @@ "Maintainer": "Kirill Müller ", "Repository": "RSPM", "Date/Publication": "2023-03-21 18:10:02 UTC", - "Built": "R 4.3.0; ; 2023-04-21 21:47:57 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:46:16 UTC; unix" } }, "htmltools": { @@ -2735,7 +2735,7 @@ "Maintainer": "Carson Sievert ", "Repository": "RSPM", "Date/Publication": "2024-04-04 05:03:00 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-25 22:13:22 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:16 UTC; unix" } }, "htmlwidgets": { @@ -2763,7 +2763,7 @@ "Maintainer": "Carson Sievert ", "Repository": "RSPM", "Date/Publication": "2023-12-06 06:00:06 UTC", - "Built": "R 4.3.0; ; 2023-12-07 11:17:28 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:49:51 UTC; unix" } }, "httpcode": { @@ -2788,7 +2788,7 @@ "Maintainer": "Scott Chamberlain ", "Repository": "RSPM", "Date/Publication": "2020-04-10 06:20:02 UTC", - "Built": "R 4.3.0; ; 2024-06-25 22:09:47 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:29 UTC; unix" } }, "httpuv": { @@ -2818,7 +2818,7 @@ "Maintainer": "Winston Chang ", "Repository": "RSPM", "Date/Publication": "2024-03-26 05:50:06 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-03-27 04:11:05 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-07-18 06:39:42 UTC; unix" } }, "httr": { @@ -2846,7 +2846,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2023-08-15 09:00:02 UTC", - "Built": "R 4.3.0; ; 2024-06-25 22:13:00 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:45:56 UTC; unix" } }, "httr2": { @@ -2905,7 +2905,7 @@ "Maintainer": "Jeroen Ooms ", "Repository": "RSPM", "Date/Publication": "2023-10-06 07:10:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-01-11 13:16:27 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-07-18 07:08:15 UTC; unix" } }, "ids": { @@ -2986,7 +2986,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2022-12-20 10:00:13 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-01-16 22:32:04 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:29 UTC; unix" } }, "jquerylib": { @@ -3010,7 +3010,7 @@ "Maintainer": "Carson Sievert ", "Repository": "RSPM", "Date/Publication": "2021-04-26 17:10:02 UTC", - "Built": "R 4.3.0; ; 2023-04-21 21:47:50 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:45:27 UTC; unix" } }, "jsonlite": { @@ -3036,7 +3036,7 @@ "Author": "Jeroen Ooms [aut, cre] (),\n Duncan Temple Lang [ctb],\n Lloyd Hilaiel [cph] (author of bundled libyajl)", "Repository": "RSPM", "Date/Publication": "2023-12-04 15:20:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-25 22:11:19 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:28 UTC; unix" } }, "kableExtra": { @@ -3119,7 +3119,7 @@ "Repository": "RSPM", "Date/Publication": "2023-08-29 22:20:02 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2023-08-30 23:36:37 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:45:27 UTC; unix" } }, "later": { @@ -3147,7 +3147,7 @@ "Maintainer": "Winston Chang ", "Repository": "RSPM", "Date/Publication": "2023-12-06 09:10:05 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-01-11 13:11:35 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-07-18 06:30:24 UTC; unix" } }, "lattice": { @@ -3177,7 +3177,7 @@ "Repository": "RSPM", "Date/Publication": "2024-03-20 06:10:02 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-25 22:09:33 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:04 UTC; unix" } }, "lazyeval": { @@ -3262,7 +3262,7 @@ "Maintainer": "Lionel Henry ", "Repository": "RSPM", "Date/Publication": "2023-11-07 10:10:10 UTC", - "Built": "R 4.3.0; ; 2023-11-08 11:19:23 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:45:36 UTC; unix" } }, "loggit": { @@ -3323,7 +3323,7 @@ "Author": "Vitalie Spinu [aut, cre],\n Garrett Grolemund [aut],\n Hadley Wickham [aut],\n Davis Vaughan [ctb],\n Ian Lyttle [ctb],\n Imanuel Costigan [ctb],\n Jason Law [ctb],\n Doug Mitarotonda [ctb],\n Joseph Larmarange [ctb],\n Jonathan Boiser [ctb],\n Chel Hee Lee [ctb]", "Repository": "RSPM", "Date/Publication": "2023-09-27 09:20:06 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-25 22:11:33 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:17 UTC; unix" } }, "magrittr": { @@ -3352,7 +3352,7 @@ "Maintainer": "Lionel Henry ", "Repository": "RSPM", "Date/Publication": "2022-03-30 07:30:09 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:46:21 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:43 UTC; unix" } }, "markdown": { @@ -3405,7 +3405,7 @@ "Maintainer": "Winston Chang ", "Repository": "RSPM", "Date/Publication": "2021-11-26 16:11:10 UTC", - "Built": "R 4.3.0; ; 2023-04-21 21:46:33 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:45:24 UTC; unix" } }, "mgcv": { @@ -3429,7 +3429,7 @@ "Packaged": "2023-12-20 10:39:06 UTC; sw283", "Repository": "CRAN", "Date/Publication": "2023-12-21 00:30:02 UTC", - "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2024-05-25 01:48:04 UTC; unix" + "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2024-08-02 00:01:34 UTC; unix" } }, "mime": { @@ -3454,7 +3454,7 @@ "Maintainer": "Yihui Xie ", "Repository": "RSPM", "Date/Publication": "2021-09-28 05:00:05 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:46:13 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:36 UTC; unix" } }, "miniUI": { @@ -3532,7 +3532,7 @@ "Packaged": "2024-04-01 20:42:09 UTC; charlottewickham", "Repository": "RSPM", "Date/Publication": "2024-04-01 23:40:10 UTC", - "Built": "R 4.3.0; ; 2024-04-02 04:13:59 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:59 UTC; unix" } }, "nlme": { @@ -3562,7 +3562,7 @@ "Maintainer": "R Core Team ", "Repository": "CRAN", "Date/Publication": "2023-11-27 15:26:12 UTC", - "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2024-05-25 01:46:56 UTC; unix" + "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2024-08-02 00:00:23 UTC; unix" } }, "officer": { @@ -3672,7 +3672,7 @@ "Maintainer": "Kirill Müller ", "Repository": "RSPM", "Date/Publication": "2023-03-22 08:10:02 UTC", - "Built": "R 4.3.0; ; 2023-04-21 21:47:44 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:46:17 UTC; unix" } }, "pingr": { @@ -3728,7 +3728,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2024-03-17 14:40:02 UTC", - "Built": "R 4.3.0; ; 2024-06-25 22:13:21 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:46:03 UTC; unix" } }, "pkgconfig": { @@ -3752,7 +3752,7 @@ "Packaged": "2019-09-22 08:42:40 UTC; gaborcsardi", "Repository": "RSPM", "Date/Publication": "2019-09-22 09:20:02 UTC", - "Built": "R 4.3.0; ; 2023-04-21 21:46:12 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:38 UTC; unix" } }, "pkgdown": { @@ -3813,7 +3813,7 @@ "Maintainer": "Lionel Henry ", "Repository": "RSPM", "Date/Publication": "2024-01-16 12:20:04 UTC", - "Built": "R 4.3.0; ; 2024-06-25 22:13:45 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:46:23 UTC; unix" } }, "plogr": { @@ -3913,7 +3913,7 @@ "Repository": "RSPM", "Date/Publication": "2015-08-11 08:22:28", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2024-06-25 22:08:12 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:29 UTC; unix" } }, "prettyunits": { @@ -3938,7 +3938,7 @@ "Maintainer": "Gabor Csardi ", "Repository": "RSPM", "Date/Publication": "2023-09-24 21:10:02 UTC", - "Built": "R 4.3.0; ; 2024-01-16 22:22:09 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:26 UTC; unix" } }, "processx": { @@ -3966,7 +3966,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2024-03-16 14:50:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-25 22:12:45 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:38 UTC; unix" } }, "profvis": { @@ -4020,7 +4020,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2023-12-06 10:30:02 UTC", - "Built": "R 4.3.0; ; 2024-06-25 22:17:54 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:46:31 UTC; unix" } }, "promises": { @@ -4050,7 +4050,7 @@ "Maintainer": "Joe Cheng ", "Repository": "RSPM", "Date/Publication": "2024-04-05 15:00:06 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-06 04:12:33 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-07-18 06:34:47 UTC; unix" } }, "ps": { @@ -4079,7 +4079,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2024-01-18 06:40:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-25 22:12:26 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:26 UTC; unix" } }, "purrr": { @@ -4110,7 +4110,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2023-08-10 08:20:07 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-22 04:22:05 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:46:17 UTC; unix" } }, "ragg": { @@ -4168,7 +4168,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2021-01-31 05:40:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-01-16 22:24:11 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:29 UTC; unix" } }, "rcmdcheck": { @@ -4226,7 +4226,7 @@ "Maintainer": "Jennifer Bryan ", "Repository": "RSPM", "Date/Publication": "2024-01-10 23:20:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-01-11 12:56:02 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:48:28 UTC; unix" } }, "readxl": { @@ -4306,7 +4306,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2020-05-01 06:50:02 UTC", - "Built": "R 4.3.0; ; 2023-04-21 21:48:15 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:46:49 UTC; unix" } }, "remotes": { @@ -4367,7 +4367,7 @@ "Maintainer": "Kevin Ushey ", "Repository": "RSPM", "Date/Publication": "2024-02-29 01:10:07 UTC", - "Built": "R 4.3.3; ; 2024-07-10 16:07:53 UTC; unix" + "Built": "R 4.3.3; ; 2024-08-05 13:19:01 UTC; unix" } }, "reprex": { @@ -4425,7 +4425,7 @@ "RoxygenNote": "7.2.3", "Author": "Gábor Csárdi [cre, aut, cph],\n Hadley Wickham [aut],\n RConsortium [cph],\n RStudio [cph, fnd]", "Maintainer": "Gábor Csárdi ", - "Built": "R 4.3.3; ; 2024-06-26 14:10:12 UTC; unix", + "Built": "R 4.3.3; ; 2024-08-05 13:08:16 UTC; unix", "RemoteType": "github", "RemoteUsername": "r-lib", "RemoteRepo": "revdepcheck", @@ -4543,7 +4543,7 @@ "Config/testthat/edition": "3", "Author": "R Validation Hub [aut],\n Doug Kelkhoff [aut],\n Marly Gotti [aut],\n Eli Miller [cre, aut],\n Kevin K [aut],\n Yilong Zhang [aut],\n Eric Milliman [aut],\n Juliane Manitz [aut],\n Mark Padgham [ctb],\n PSI special interest group Application and Implementation of\n Methodologies in Statistics [cph]", "Maintainer": "Eli Miller ", - "Built": "R 4.3.3; ; 2024-06-26 14:10:18 UTC; unix", + "Built": "R 4.3.3; ; 2024-08-05 13:08:22 UTC; unix", "RemoteType": "github", "RemoteUsername": "pharmaR", "RemoteRepo": "riskmetric", @@ -4697,7 +4697,7 @@ "Maintainer": "Kirill Müller ", "Repository": "RSPM", "Date/Publication": "2023-11-05 10:20:02 UTC", - "Built": "R 4.3.0; ; 2024-06-25 22:09:48 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:57 UTC; unix" } }, "rstudioapi": { @@ -4722,7 +4722,7 @@ "Author": "Kevin Ushey [aut, cre],\n JJ Allaire [aut],\n Hadley Wickham [aut],\n Gary Ritchie [aut],\n RStudio [cph]", "Repository": "RSPM", "Date/Publication": "2024-03-24 11:30:02 UTC", - "Built": "R 4.3.0; ; 2024-03-25 11:26:26 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:34 UTC; unix" } }, "rversions": { @@ -4807,7 +4807,7 @@ "Maintainer": "Carson Sievert ", "Repository": "RSPM", "Date/Publication": "2024-03-15 22:30:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-25 22:13:49 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:46:11 UTC; unix" } }, "scales": { @@ -4836,7 +4836,7 @@ "Maintainer": "Thomas Lin Pedersen ", "Repository": "RSPM", "Date/Publication": "2023-11-28 09:10:06 UTC", - "Built": "R 4.3.0; ; 2023-11-29 11:20:39 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:45:50 UTC; unix" } }, "scrypt": { @@ -4862,7 +4862,7 @@ "Repository": "RSPM", "Date/Publication": "2023-01-29 15:40:02 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-01-11 12:58:07 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-07-18 06:27:20 UTC; unix" } }, "selectr": { @@ -4949,7 +4949,7 @@ "Maintainer": "Winston Chang ", "Repository": "RSPM", "Date/Publication": "2024-04-02 17:22:03 UTC", - "Built": "R 4.3.0; ; 2024-06-25 22:17:24 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:49:51 UTC; unix" } }, "shinyAce": { @@ -5169,7 +5169,7 @@ "Packaged": "2023-01-31 18:03:04 UTC; kevin", "Repository": "RSPM", "Date/Publication": "2023-02-01 10:10:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:44:53 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:36 UTC; unix" } }, "spelling": { @@ -5254,7 +5254,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2023-11-14 23:10:02 UTC", - "Built": "R 4.3.0; ; 2023-11-15 11:20:14 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:46:21 UTC; unix" } }, "svglite": { @@ -5311,7 +5311,7 @@ "Maintainer": "Jeroen Ooms ", "Repository": "RSPM", "Date/Publication": "2023-05-23 07:50:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-12-05 20:45:12 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:09 UTC; unix" } }, "systemfonts": { @@ -5435,7 +5435,7 @@ "Maintainer": "Kirill Müller ", "Repository": "RSPM", "Date/Publication": "2023-03-20 06:30:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-07-10 03:18:32 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:46:33 UTC; unix" } }, "tidyr": { @@ -5466,7 +5466,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2024-01-24 14:50:09 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-01-25 11:25:54 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:47:29 UTC; unix" } }, "tidyselect": { @@ -5496,7 +5496,7 @@ "Maintainer": "Lionel Henry ", "Repository": "RSPM", "Date/Publication": "2024-03-11 14:10:02 UTC", - "Built": "R 4.3.0; ; 2024-03-12 11:12:24 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:46:16 UTC; unix" } }, "tidyverse": { @@ -5552,7 +5552,7 @@ "Maintainer": "Vitalie Spinu ", "Repository": "RSPM", "Date/Publication": "2024-01-18 09:20:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-01-19 11:18:35 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:50 UTC; unix" } }, "tinytex": { @@ -5606,7 +5606,7 @@ "Packaged": "2023-03-04 21:40:31 UTC; ironholds", "Repository": "RSPM", "Date/Publication": "2023-03-04 23:30:07 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-25 22:11:40 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-07-18 06:45:50 UTC; unix" } }, "tzdb": { @@ -5635,7 +5635,7 @@ "Maintainer": "Davis Vaughan ", "Repository": "RSPM", "Date/Publication": "2023-05-12 23:00:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-12-04 11:51:00 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:50 UTC; unix" } }, "urlchecker": { @@ -5691,7 +5691,7 @@ "Packaged": "2019-04-14 22:25:08 UTC; ironholds", "Repository": "RSPM", "Date/Publication": "2019-04-14 23:02:47 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-25 22:13:32 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-07-18 07:11:18 UTC; unix" } }, "usethis": { @@ -5749,7 +5749,7 @@ "Maintainer": "Kirill Müller ", "Repository": "RSPM", "Date/Publication": "2023-10-22 21:50:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-10-23 11:14:20 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:35 UTC; unix" } }, "uuid": { @@ -5771,7 +5771,7 @@ "Repository": "RSPM", "Date/Publication": "2024-01-14 15:20:05 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-25 22:08:39 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:28 UTC; unix" } }, "vctrs": { @@ -5801,7 +5801,7 @@ "Maintainer": "Davis Vaughan ", "Repository": "RSPM", "Date/Publication": "2023-12-01 23:50:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-25 22:13:43 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:47 UTC; unix" } }, "viridisLite": { @@ -5828,7 +5828,7 @@ "Author": "Simon Garnier [aut, cre],\n Noam Ross [ctb, cph],\n Bob Rudis [ctb, cph],\n Marco Sciaini [ctb, cph],\n Antônio Pedro Camargo [ctb, cph],\n Cédric Scherer [ctb, cph]", "Repository": "RSPM", "Date/Publication": "2023-05-02 23:50:02 UTC", - "Built": "R 4.3.0; ; 2023-05-04 22:20:46 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:58 UTC; unix" } }, "vroom": { @@ -5861,7 +5861,7 @@ "Maintainer": "Jennifer Bryan ", "Repository": "RSPM", "Date/Publication": "2023-12-05 23:50:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-12-07 11:15:40 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:46:55 UTC; unix" } }, "waldo": { @@ -5889,7 +5889,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2023-11-02 13:10:02 UTC", - "Built": "R 4.3.0; ; 2024-06-25 22:19:41 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:47:07 UTC; unix" } }, "websocket": { @@ -5917,7 +5917,7 @@ "Maintainer": "Winston Chang ", "Repository": "RSPM", "Date/Publication": "2021-08-18 20:30:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-01-11 13:27:04 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-05-06 07:08:02 UTC; unix" } }, "whisker": { @@ -5996,7 +5996,7 @@ "Maintainer": "Lionel Henry ", "Repository": "RSPM", "Date/Publication": "2024-01-16 14:20:02 UTC", - "Built": "R 4.3.0; ; 2024-06-25 22:08:10 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:43:27 UTC; unix" } }, "xfun": { @@ -6054,7 +6054,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2023-12-04 16:30:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-01-09 01:08:39 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:22 UTC; unix" } }, "xopen": { @@ -6107,7 +6107,7 @@ "Author": "David B. Dahl [aut],\n David Scott [aut, cre],\n Charles Roosen [aut],\n Arni Magnusson [aut],\n Jonathan Swinton [aut],\n Ajay Shah [ctb],\n Arne Henningsen [ctb],\n Benno Puetz [ctb],\n Bernhard Pfaff [ctb],\n Claudio Agostinelli [ctb],\n Claudius Loehnert [ctb],\n David Mitchell [ctb],\n David Whiting [ctb],\n Fernando da Rosa [ctb],\n Guido Gay [ctb],\n Guido Schulz [ctb],\n Ian Fellows [ctb],\n Jeff Laake [ctb],\n John Walker [ctb],\n Jun Yan [ctb],\n Liviu Andronic [ctb],\n Markus Loecher [ctb],\n Martin Gubri [ctb],\n Matthieu Stigler [ctb],\n Robert Castelo [ctb],\n Seth Falcon [ctb],\n Stefan Edwards [ctb],\n Sven Garbade [ctb],\n Uwe Ligges [ctb]", "Date/Publication": "2019-04-21 12:20:03 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2024-01-09 00:45:05 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:45:38 UTC; unix" } }, "yaml": { @@ -6131,7 +6131,7 @@ "Repository": "RSPM", "Date/Publication": "2023-12-11 18:50:02 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-12-12 11:28:30 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:58 UTC; unix" } }, "zip": { @@ -6157,7 +6157,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2024-01-27 10:00:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-01-29 11:17:32 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:27 UTC; unix" } } }, @@ -6463,7 +6463,7 @@ "checksum": "97d1232340e04c53088bc8f814133dcd" }, "NEWS.md": { - "checksum": "8f1dc97771e1911ac13a12a45300a516" + "checksum": "526767264e37ac9c9f972a5f93d942b3" }, "R/app_config.R": { "checksum": "c2b61f270b86b6833f0ee39c44a1a440" @@ -6574,10 +6574,10 @@ "checksum": "6c0e6fb4b3716cdd0c0d2953a1cf4393" }, "R/utils_insert_db.R": { - "checksum": "5eaa94311e33014f000eb3cc5aec8282" + "checksum": "ddb81d628ed7a465d2d050ad67983dd7" }, "R/utils_startup.R": { - "checksum": "b689ee96f0761480ac65ca22cbbb4980" + "checksum": "027b633f3e6ace9fcfac994fb62e86c9" }, "R/utils.R": { "checksum": "995d947896038bdcec381ff4b4e94fd0" From f6c133cfcabc7fb6d39e87e51f4e39588135de94 Mon Sep 17 00:00:00 2001 From: "Aaron Clark (Arcus)" Date: Mon, 5 Aug 2024 11:13:07 -0400 Subject: [PATCH 06/20] Increment version number to 3.1.1.9000 --- DESCRIPTION | 2 +- NEWS.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 66601712..b533e9e6 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: riskassessment Title: A web app designed to interface with the `riskmetric` package -Version: 3.1.1 +Version: 3.1.1.9000 Authors@R: c( person("Aaron", "Clark", role = c("aut", "cre"), email = "clark.aaronchris@gmail.com"), person("Jeff", "Thompson", role = c("aut"), email = "jeff.thompson51317@gmail.com", comment = "Co-Lead"), diff --git a/NEWS.md b/NEWS.md index 0f8d0a32..80af089a 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,5 @@ +# riskassessment (development version) + # riskassessment 3.1.1 * Added navigation controls in Function Explorer tab (#644) From 90d06d488841326340f6c8a8a092d22a000c3111 Mon Sep 17 00:00:00 2001 From: Jeff Thompson <160783290+jthompson-arcus@users.noreply.github.com> Date: Thu, 9 Jan 2025 11:09:20 -0500 Subject: [PATCH 07/20] Add `target="_blank"` to hyperlink --- R/mod_metricBox.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/mod_metricBox.R b/R/mod_metricBox.R index c05601bc..46dd33c4 100644 --- a/R/mod_metricBox.R +++ b/R/mod_metricBox.R @@ -54,7 +54,7 @@ metricBoxServer <- function(id, title, desc, value, score = "NULL", } else if (is_url) { value <- a(ifelse(nchar(value) <= val_max_nchar, value, glue::glue("{stringr::str_sub(value, 1, (val_max_nchar - 3))}...") - ), href = value) + ), target = "_blank", href = value) } # unfortunately, adding the href can sometimes force the footer to fall # outside the card when val_max_nchar is too large. else if (value %in% c("TRUE", "FALSE")) { From 3994373fb62508d1bf985930e68afbf68fb6507c Mon Sep 17 00:00:00 2001 From: Jeff Thompson <160783290+jthompson-arcus@users.noreply.github.com> Date: Thu, 9 Jan 2025 11:11:03 -0500 Subject: [PATCH 08/20] Update version and NEWS --- DESCRIPTION | 2 +- NEWS.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index b533e9e6..1a88668c 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: riskassessment Title: A web app designed to interface with the `riskmetric` package -Version: 3.1.1.9000 +Version: 3.1.1.9001 Authors@R: c( person("Aaron", "Clark", role = c("aut", "cre"), email = "clark.aaronchris@gmail.com"), person("Jeff", "Thompson", role = c("aut"), email = "jeff.thompson51317@gmail.com", comment = "Co-Lead"), diff --git a/NEWS.md b/NEWS.md index 80af089a..32da34f7 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,7 @@ # riskassessment (development version) +* Open hyperlinks in a new tab from cards. + # riskassessment 3.1.1 * Added navigation controls in Function Explorer tab (#644) From 16ebe961170b766f6d925b5a31ff7e83917da6a6 Mon Sep 17 00:00:00 2001 From: Jeff Thompson <160783290+jthompson-arcus@users.noreply.github.com> Date: Thu, 9 Jan 2025 11:53:21 -0500 Subject: [PATCH 09/20] Update pkg_explorer.md --- tests/testthat/_snaps/pkg_explorer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testthat/_snaps/pkg_explorer.md b/tests/testthat/_snaps/pkg_explorer.md index 1cc170a9..c966e5e7 100644 --- a/tests/testthat/_snaps/pkg_explorer.md +++ b/tests/testthat/_snaps/pkg_explorer.md @@ -1,6 +1,6 @@ # pkg_explorer works - "Type: PackagePackage: dplyrTitle: A Grammar of Data ManipulationVersion: 1.1.2Authors@R: c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Lionel\", \"Henry\", role = \"aut\"), person(\"Kirill\", \"Müller\", role = \"aut\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4777-038X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )Description: A fast, consistent tool for working with data frame like objects, both in memory and out of memory.License: MIT + file LICENSEURL: https://dplyr.tidyverse.org, https://github.com/tidyverse/dplyrBugReports: https://github.com/tidyverse/dplyr/issuesDepends: R (>= 3.5.0)Imports: cli (>= 3.4.0), generics, glue (>= 1.3.2), lifecycle (>= 1.0.3), magrittr (>= 1.5), methods, pillar (>= 1.9.0), R6, rlang (>= 1.1.0), tibble (>= 3.2.0), tidyselect (>= 1.2.0), utils, vctrs (>= 0.6.0)Suggests: bench, broom, callr, covr, DBI, dbplyr (>= 2.2.1), ggplot2, knitr, Lahman, lobstr, microbenchmark, nycflights13, purrr, rmarkdown, RMySQL, RPostgreSQL, RSQLite, stringi (>= 1.7.6), testthat (>= 3.1.5), tidyr (>= 1.3.0), withrVignetteBuilder: knitrConfig/Needs/website: tidyverse, shiny, pkgdown, tidyverse/tidytemplateConfig/testthat/edition: 3Encoding: UTF-8LazyData: trueRoxygenNote: 7.2.3NeedsCompilation: yesPackaged: 2023-04-19 19:29:34 UTC; hadleywickhamAuthor: Hadley Wickham [aut, cre] (), Romain François [aut] (), Lionel Henry [aut], Kirill Müller [aut] (), Davis Vaughan [aut] (), Posit Software, PBC [cph, fnd]Maintainer: Hadley Wickham Repository: CRANDate/Publication: 2023-04-20 14:00:03 UTC" + "Type: PackagePackage: dplyrTitle: A Grammar of Data ManipulationVersion: 1.1.2Authors@R: c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Lionel\", \"Henry\", role = \"aut\"), person(\"Kirill\", \"Müller\", role = \"aut\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4777-038X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )Description: A fast, consistent tool for working with data frame like objects, both in memory and out of memory.License: MIT + file LICENSEURL: https://dplyr.tidyverse.org, https://github.com/tidyverse/dplyrBugReports: https://github.com/tidyverse/dplyr/issuesDepends: R (>= 3.5.0)Imports: cli (>= 3.4.0), generics, glue (>= 1.3.2), lifecycle (>= 1.0.3), magrittr (>= 1.5), methods, pillar (>= 1.9.0), R6, rlang (>= 1.1.0), tibble (>= 3.2.0), tidyselect (>= 1.2.0), utils, vctrs (>= 0.6.0)" --- From b44c68475594ad5dbe663c1aa7263c1c6165068e Mon Sep 17 00:00:00 2001 From: Jeff Thompson <160783290+jthompson-arcus@users.noreply.github.com> Date: Thu, 9 Jan 2025 12:29:54 -0500 Subject: [PATCH 10/20] Ignore temporary testing files --- tests/testthat/test-apps/explorer-app/.gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 tests/testthat/test-apps/explorer-app/.gitignore diff --git a/tests/testthat/test-apps/explorer-app/.gitignore b/tests/testthat/test-apps/explorer-app/.gitignore new file mode 100644 index 00000000..56f0bcef --- /dev/null +++ b/tests/testthat/test-apps/explorer-app/.gitignore @@ -0,0 +1 @@ +source/ \ No newline at end of file From 5973a398688b7411f288062cf4a0a2fb0fc0448c Mon Sep 17 00:00:00 2001 From: Jeff Thompson <160783290+jthompson-arcus@users.noreply.github.com> Date: Thu, 9 Jan 2025 12:30:19 -0500 Subject: [PATCH 11/20] Use renv repo in R CMD check --- .github/workflows/R-CMD-check.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/R-CMD-check.yaml b/.github/workflows/R-CMD-check.yaml index 86c8d6ab..fa81e444 100644 --- a/.github/workflows/R-CMD-check.yaml +++ b/.github/workflows/R-CMD-check.yaml @@ -43,7 +43,7 @@ jobs: - uses: r-lib/actions/setup-r@v2 with: r-version: 'renv' - use-public-rspm: true + use-public-rspm: false - uses: r-lib/actions/setup-renv@v2 - name: Install riskassessment From e5787bd701815f92addb59c61e079d3234a2369f Mon Sep 17 00:00:00 2001 From: Jeff Thompson <160783290+jthompson-arcus@users.noreply.github.com> Date: Thu, 9 Jan 2025 13:37:40 -0500 Subject: [PATCH 12/20] Standardize window size for snapshots --- tests/testthat/_snaps/pkg_explorer.md | 2 +- tests/testthat/test-pkg_explorer.R | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/testthat/_snaps/pkg_explorer.md b/tests/testthat/_snaps/pkg_explorer.md index c966e5e7..18b6ffd4 100644 --- a/tests/testthat/_snaps/pkg_explorer.md +++ b/tests/testthat/_snaps/pkg_explorer.md @@ -1,6 +1,6 @@ # pkg_explorer works - "Type: PackagePackage: dplyrTitle: A Grammar of Data ManipulationVersion: 1.1.2Authors@R: c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Lionel\", \"Henry\", role = \"aut\"), person(\"Kirill\", \"Müller\", role = \"aut\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4777-038X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )Description: A fast, consistent tool for working with data frame like objects, both in memory and out of memory.License: MIT + file LICENSEURL: https://dplyr.tidyverse.org, https://github.com/tidyverse/dplyrBugReports: https://github.com/tidyverse/dplyr/issuesDepends: R (>= 3.5.0)Imports: cli (>= 3.4.0), generics, glue (>= 1.3.2), lifecycle (>= 1.0.3), magrittr (>= 1.5), methods, pillar (>= 1.9.0), R6, rlang (>= 1.1.0), tibble (>= 3.2.0), tidyselect (>= 1.2.0), utils, vctrs (>= 0.6.0)" + "Type: PackagePackage: dplyrTitle: A Grammar of Data ManipulationVersion: 1.1.2Authors@R: c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Lionel\", \"Henry\", role = \"aut\"), person(\"Kirill\", \"Müller\", role = \"aut\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4777-038X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )Description: A fast, consistent tool for working with data frame like objects, both in memory and out of memory.License: MIT + file LICENSEURL: https://dplyr.tidyverse.org, https://github.com/tidyverse/dplyrBugReports: https://github.com/tidyverse/dplyr/issuesDepends: R (>= 3.5.0)Imports: cli (>= 3.4.0), generics, glue (>= 1.3.2), lifecycle (>= 1.0.3), magrittr (>= 1.5), methods, pillar (>= 1.9.0), R6, rlang (>= 1.1.0), tibble (>= 3.2.0), tidyselect (>= 1.2.0), utils, vctrs (>= 0.6.0)Suggests: bench, broom, callr, covr, DBI, dbplyr (>= 2.2.1), ggplot2, knitr, Lahman, lobstr, microbenchmark, nycflights13, purrr, rmarkdown, RMySQL, RPostgreSQL, RSQLite, stringi (>= 1.7.6), testthat (>= 3.1.5), tidyr (>= 1.3.0), withrVignetteBuilder: knitrConfig/Needs/website: tidyverse, shiny, pkgdown, tidyverse/tidytemplateConfig/testthat/edition: 3Encoding: UTF-8LazyData: trueRoxygenNote: 7.2.3NeedsCompilation: yesPackaged: 2023-04-19 19:29:34 UTC; hadleywickhamAuthor: Hadley Wickham [aut, cre] (), Romain François [aut] (), Lionel Henry [aut], Kirill Müller [aut] (), Davis Vaughan [aut] ()," --- diff --git a/tests/testthat/test-pkg_explorer.R b/tests/testthat/test-pkg_explorer.R index 5e77400f..c0b279c5 100644 --- a/tests/testthat/test-pkg_explorer.R +++ b/tests/testthat/test-pkg_explorer.R @@ -31,7 +31,11 @@ test_that("pkg_explorer works", { untar(app_tar_loc, exdir = dirname(app_src_loc)) } - app <- shinytest2::AppDriver$new(test_path("test-apps", "explorer-app")) + app <- shinytest2::AppDriver$new( + test_path("test-apps", "explorer-app"), + height = 1080, + width = 1920 + ) expect_equal( app$get_value(output = "src_explorer-is_file"), From 9b844231a0a7e0d88b80b8d92bcd1f3e2746bb53 Mon Sep 17 00:00:00 2001 From: Github Actions Date: Thu, 9 Jan 2025 18:56:38 +0000 Subject: [PATCH 13/20] Re-build manifest file --- manifest.json | 60 +++++++++++++++++++++++++-------------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/manifest.json b/manifest.json index 5f8e9d23..63acc8b4 100644 --- a/manifest.json +++ b/manifest.json @@ -168,7 +168,7 @@ "Maintainer": "Brian Ripley ", "Repository": "CRAN", "Date/Publication": "2024-01-13 13:36:16 UTC", - "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2024-08-01 23:58:31 UTC; unix" + "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2024-11-07 07:01:18 UTC; unix" } }, "Matrix": { @@ -201,7 +201,7 @@ "Maintainer": "Martin Maechler ", "Repository": "CRAN", "Date/Publication": "2024-01-11 17:50:15 UTC", - "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2024-08-01 23:58:46 UTC; unix" + "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2024-11-07 07:01:34 UTC; unix" } }, "R.methodsS3": { @@ -414,7 +414,7 @@ "Packaged": "2020-08-26 17:46:45.898451 UTC; edd", "Repository": "RSPM", "Date/Publication": "2020-08-27 11:40:21 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-07-18 06:49:15 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-05-18 19:12:56 UTC; unix" } }, "archive": { @@ -940,7 +940,7 @@ "RoxygenNote": "7.3.0", "Author": "Sebastien Rochette [aut, cre] (),\n Vincent Guyader [aut] (),\n Arthur Bréant [aut] (),\n Murielle Delmotte [aut] (),\n ThinkR [cph]", "Maintainer": "Sebastien Rochette ", - "Built": "R 4.3.3; ; 2024-08-05 13:07:36 UTC; unix", + "Built": "R 4.3.3; ; 2025-01-09 16:16:06 UTC; unix", "RemoteType": "github", "RemoteUsername": "thinkr-open", "RemoteRepo": "checkhelper", @@ -1303,7 +1303,7 @@ "Imports": "callr,\ncranlike (>= 1.0.2),\ncurl,\ndesc (>= 1.1.0),\ndigest,\nparsedate,\nrappdirs,\nrematch2,\ntools,\nutils,\nwithr", "Suggests": "covr,\npingr,\ntestthat,\nzip", "Encoding": "UTF-8", - "Built": "R 4.3.3; ; 2024-08-05 13:07:44 UTC; unix", + "Built": "R 4.3.3; ; 2025-01-09 16:16:14 UTC; unix", "RemoteType": "github", "RemoteHost": "api.github.com", "RemoteUsername": "r-lib", @@ -2206,7 +2206,7 @@ "Maintainer": "David Gohel ", "Repository": "RSPM", "Date/Publication": "2024-03-05 05:30:36 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-07-18 07:39:09 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:51:59 UTC; unix" } }, "generics": { @@ -2617,7 +2617,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2023-11-30 15:10:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:49:38 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-12-05 04:20:50 UTC; unix" } }, "here": { @@ -2818,7 +2818,7 @@ "Maintainer": "Winston Chang ", "Repository": "RSPM", "Date/Publication": "2024-03-26 05:50:06 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-07-18 06:39:42 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-11-28 04:14:37 UTC; unix" } }, "httr": { @@ -2905,7 +2905,7 @@ "Maintainer": "Jeroen Ooms ", "Repository": "RSPM", "Date/Publication": "2023-10-06 07:10:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-07-18 07:08:15 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-10-09 11:49:37 UTC; unix" } }, "ids": { @@ -3147,7 +3147,7 @@ "Maintainer": "Winston Chang ", "Repository": "RSPM", "Date/Publication": "2023-12-06 09:10:05 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-07-18 06:30:24 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-12-07 11:15:13 UTC; unix" } }, "lattice": { @@ -3429,7 +3429,7 @@ "Packaged": "2023-12-20 10:39:06 UTC; sw283", "Repository": "CRAN", "Date/Publication": "2023-12-21 00:30:02 UTC", - "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2024-08-02 00:01:34 UTC; unix" + "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2024-11-07 07:04:41 UTC; unix" } }, "mime": { @@ -3562,7 +3562,7 @@ "Maintainer": "R Core Team ", "Repository": "CRAN", "Date/Publication": "2023-11-27 15:26:12 UTC", - "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2024-08-02 00:00:23 UTC; unix" + "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2024-11-07 07:03:17 UTC; unix" } }, "officer": { @@ -4050,7 +4050,7 @@ "Maintainer": "Joe Cheng ", "Repository": "RSPM", "Date/Publication": "2024-04-05 15:00:06 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-07-18 06:34:47 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:47:00 UTC; unix" } }, "ps": { @@ -4226,7 +4226,7 @@ "Maintainer": "Jennifer Bryan ", "Repository": "RSPM", "Date/Publication": "2024-01-10 23:20:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:48:28 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-12-05 04:19:24 UTC; unix" } }, "readxl": { @@ -4257,7 +4257,7 @@ "Maintainer": "Jennifer Bryan ", "Repository": "RSPM", "Date/Publication": "2023-07-06 22:00:09 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-12-07 11:15:38 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-12-05 04:17:28 UTC; unix" } }, "rematch": { @@ -4367,7 +4367,7 @@ "Maintainer": "Kevin Ushey ", "Repository": "RSPM", "Date/Publication": "2024-02-29 01:10:07 UTC", - "Built": "R 4.3.3; ; 2024-08-05 13:19:01 UTC; unix" + "Built": "R 4.3.3; ; 2025-01-09 18:55:40 UTC; unix" } }, "reprex": { @@ -4425,7 +4425,7 @@ "RoxygenNote": "7.2.3", "Author": "Gábor Csárdi [cre, aut, cph],\n Hadley Wickham [aut],\n RConsortium [cph],\n RStudio [cph, fnd]", "Maintainer": "Gábor Csárdi ", - "Built": "R 4.3.3; ; 2024-08-05 13:08:16 UTC; unix", + "Built": "R 4.3.3; ; 2025-01-09 16:16:46 UTC; unix", "RemoteType": "github", "RemoteUsername": "r-lib", "RemoteRepo": "revdepcheck", @@ -4543,7 +4543,7 @@ "Config/testthat/edition": "3", "Author": "R Validation Hub [aut],\n Doug Kelkhoff [aut],\n Marly Gotti [aut],\n Eli Miller [cre, aut],\n Kevin K [aut],\n Yilong Zhang [aut],\n Eric Milliman [aut],\n Juliane Manitz [aut],\n Mark Padgham [ctb],\n PSI special interest group Application and Implementation of\n Methodologies in Statistics [cph]", "Maintainer": "Eli Miller ", - "Built": "R 4.3.3; ; 2024-08-05 13:08:22 UTC; unix", + "Built": "R 4.3.3; ; 2025-01-09 16:16:52 UTC; unix", "RemoteType": "github", "RemoteUsername": "pharmaR", "RemoteRepo": "riskmetric", @@ -4862,7 +4862,7 @@ "Repository": "RSPM", "Date/Publication": "2023-01-29 15:40:02 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-07-18 06:27:20 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-11-03 07:04:23 UTC; unix" } }, "selectr": { @@ -5285,7 +5285,7 @@ "Maintainer": "Thomas Lin Pedersen ", "Repository": "RSPM", "Date/Publication": "2023-12-08 16:20:13 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-05-16 04:12:57 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-12-05 04:18:22 UTC; unix" } }, "sys": { @@ -5466,7 +5466,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2024-01-24 14:50:09 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:47:29 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-12-05 04:17:45 UTC; unix" } }, "tidyselect": { @@ -5552,7 +5552,7 @@ "Maintainer": "Vitalie Spinu ", "Repository": "RSPM", "Date/Publication": "2024-01-18 09:20:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:50 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-12-05 04:17:18 UTC; unix" } }, "tinytex": { @@ -5606,7 +5606,7 @@ "Packaged": "2023-03-04 21:40:31 UTC; ironholds", "Repository": "RSPM", "Date/Publication": "2023-03-04 23:30:07 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-07-18 06:45:50 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-11-03 07:03:38 UTC; unix" } }, "tzdb": { @@ -5635,7 +5635,7 @@ "Maintainer": "Davis Vaughan ", "Repository": "RSPM", "Date/Publication": "2023-05-12 23:00:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:50 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-12-05 04:17:17 UTC; unix" } }, "urlchecker": { @@ -5691,7 +5691,7 @@ "Packaged": "2019-04-14 22:25:08 UTC; ironholds", "Repository": "RSPM", "Date/Publication": "2019-04-14 23:02:47 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-07-18 07:11:18 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-11-03 07:15:44 UTC; unix" } }, "usethis": { @@ -5861,7 +5861,7 @@ "Maintainer": "Jennifer Bryan ", "Repository": "RSPM", "Date/Publication": "2023-12-05 23:50:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:46:55 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-12-05 04:17:53 UTC; unix" } }, "waldo": { @@ -6169,7 +6169,7 @@ "checksum": "5672e25aad19ca20ba7c2d23a8362245" }, ".github/workflows/R-CMD-check.yaml": { - "checksum": "f3b8ba11fdfeb87ccfbca0723895f82f" + "checksum": "4c240fa388edea9f6b99577780395101" }, ".github/workflows/render-readme.yml": { "checksum": "d74482ddef0a4941a51c077f5ea60e10" @@ -6220,7 +6220,7 @@ "checksum": "99c5575cb81828e20a7fe1d205551316" }, "DESCRIPTION": { - "checksum": "43f16dae5ba2122f4fd55e23f7229a40" + "checksum": "2f9e828b7d8a25e828cbeee499dbbaa7" }, "inst/app/www/css/community_metrics.css": { "checksum": "f08eb25c2ee48ac22ed63b0d18994a04" @@ -6463,7 +6463,7 @@ "checksum": "97d1232340e04c53088bc8f814133dcd" }, "NEWS.md": { - "checksum": "526767264e37ac9c9f972a5f93d942b3" + "checksum": "a34423a7ebfa4501e7a34e6c97036851" }, "R/app_config.R": { "checksum": "c2b61f270b86b6833f0ee39c44a1a440" @@ -6526,7 +6526,7 @@ "checksum": "31ad6d7cf277573e4fcca1260e676ee7" }, "R/mod_metricBox.R": { - "checksum": "92210692560ef3bce21814f437f9643d" + "checksum": "9f62eb6c1b3ea6321dddf7b448ab0996" }, "R/mod_metricGrid.R": { "checksum": "a894eb9114e258feb99b76cdca557cd2" From d0a92d4ac482f309216dcd91db878555ef8b2a8a Mon Sep 17 00:00:00 2001 From: Github Actions Date: Fri, 10 Jan 2025 17:01:36 +0000 Subject: [PATCH 14/20] Re-build manifest file --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 63acc8b4..9d990b54 100644 --- a/manifest.json +++ b/manifest.json @@ -4367,7 +4367,7 @@ "Maintainer": "Kevin Ushey ", "Repository": "RSPM", "Date/Publication": "2024-02-29 01:10:07 UTC", - "Built": "R 4.3.3; ; 2025-01-09 18:55:40 UTC; unix" + "Built": "R 4.3.3; ; 2025-01-10 17:00:47 UTC; unix" } }, "reprex": { From 6cb226fcb7880607182a3f56e9003b2e81921fd3 Mon Sep 17 00:00:00 2001 From: Jeff Thompson <160783290+jthompson-arcus@users.noreply.github.com> Date: Fri, 10 Jan 2025 12:20:06 -0500 Subject: [PATCH 15/20] Open new tabs for hyperlinks in HTML reports --- inst/report_downloads/reportHtml.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inst/report_downloads/reportHtml.Rmd b/inst/report_downloads/reportHtml.Rmd index a760fda1..6d160240 100644 --- a/inst/report_downloads/reportHtml.Rmd +++ b/inst/report_downloads/reportHtml.Rmd @@ -76,7 +76,7 @@ createCard <- function(title, desc, value, score = "NULL", else if(is_url) value <- a(ifelse(nchar(value) <= val_max_nchar, value, glue::glue('{stringr::str_sub(value, 1, (val_max_nchar - 3))}...') - ), href = value) + ), target = "_blank", href = value) # unfortunately, adding the href can sometimes force the footer to fall # outside the card when val_max_nchar is too large. else if(value %in% c('TRUE', 'FALSE')) From 350b5685c0eba412cacf3d642bd846a95d4ac195 Mon Sep 17 00:00:00 2001 From: Github Actions Date: Fri, 10 Jan 2025 17:25:09 +0000 Subject: [PATCH 16/20] Re-build manifest file --- manifest.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index 9d990b54..bdb55c02 100644 --- a/manifest.json +++ b/manifest.json @@ -4367,7 +4367,7 @@ "Maintainer": "Kevin Ushey ", "Repository": "RSPM", "Date/Publication": "2024-02-29 01:10:07 UTC", - "Built": "R 4.3.3; ; 2025-01-10 17:00:47 UTC; unix" + "Built": "R 4.3.3; ; 2025-01-10 17:24:24 UTC; unix" } }, "reprex": { @@ -6403,7 +6403,7 @@ "checksum": "449e8dcb07732ecd9a0963bada90e53e" }, "inst/report_downloads/reportHtml.Rmd": { - "checksum": "0e49db815a61c6698acad37894a9c0c1" + "checksum": "1447f97ade614947f36c34d35d7b4b5f" }, "inst/report_downloads/reportPdf.Rmd": { "checksum": "3c7cfa456a7a171df1f10f9c1690718c" From 630d030591f544f96c9905562ae2b559cdf37f99 Mon Sep 17 00:00:00 2001 From: Jeff Thompson <160783290+jthompson-arcus@users.noreply.github.com> Date: Thu, 16 Jan 2025 09:25:26 -0500 Subject: [PATCH 17/20] Only setup `fn` if `rule$mapper` is a function or formula --- R/mod_decision_automation_utils.R | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/R/mod_decision_automation_utils.R b/R/mod_decision_automation_utils.R index 1e755964..5d3b56c3 100644 --- a/R/mod_decision_automation_utils.R +++ b/R/mod_decision_automation_utils.R @@ -24,7 +24,8 @@ assign_decisions <- function(rule_list, package, db_name = golem::get_golem_opti if (!is.na(decision)) break rule <- rule_list[[i]] - fn <- purrr::possibly(rule$mapper, otherwise = FALSE) + if (rlang::is_function(rule$mapper) || rlang::is_formula(rule$mapper)) + fn <- purrr::possibly(rule$mapper, otherwise = FALSE) if (rule$type == "overall_score") { decision <- if (fn(get_pkg_info(package)$score)) rule$decision else NA_character_ log_message <- glue::glue("Decision for the package {package} was assigned {decision} because the risk score returned TRUE for `{rule$condition}`") From 6c4027003d5c33ccc69ac5cd248fdb9eb5ad3a0e Mon Sep 17 00:00:00 2001 From: Jeff Thompson <160783290+jthompson-arcus@users.noreply.github.com> Date: Thu, 16 Jan 2025 09:26:50 -0500 Subject: [PATCH 18/20] Update version & NEWS --- DESCRIPTION | 2 +- NEWS.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 1a88668c..06b89d60 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: riskassessment Title: A web app designed to interface with the `riskmetric` package -Version: 3.1.1.9001 +Version: 3.1.1.9002 Authors@R: c( person("Aaron", "Clark", role = c("aut", "cre"), email = "clark.aaronchris@gmail.com"), person("Jeff", "Thompson", role = c("aut"), email = "jeff.thompson51317@gmail.com", comment = "Co-Lead"), diff --git a/NEWS.md b/NEWS.md index 32da34f7..e0cf1a55 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,7 @@ # riskassessment (development version) * Open hyperlinks in a new tab from cards. +* Fix bug causing app to crash with ELSE condition in rules # riskassessment 3.1.1 From a3e6ff0bd175e30915c84420b2902c4dc389e7c8 Mon Sep 17 00:00:00 2001 From: Jeff Thompson <160783290+jthompson-arcus@users.noreply.github.com> Date: Thu, 16 Jan 2025 09:42:32 -0500 Subject: [PATCH 19/20] Update pkgdown.yaml --- .github/workflows/pkgdown.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pkgdown.yaml b/.github/workflows/pkgdown.yaml index 99cdf39e..2b39a939 100644 --- a/.github/workflows/pkgdown.yaml +++ b/.github/workflows/pkgdown.yaml @@ -26,7 +26,7 @@ jobs: - uses: r-lib/actions/setup-r@v2 with: - use-public-rspm: true + use-public-rspm: false r-version: 'renv' - uses: r-lib/actions/setup-renv@v2 From 175ccb1d003ccad456b9bb810828aeff3583dfcc Mon Sep 17 00:00:00 2001 From: Github Actions Date: Thu, 16 Jan 2025 15:03:41 +0000 Subject: [PATCH 20/20] Re-build manifest file --- manifest.json | 453 +++++++++++++++++++++++++------------------------- 1 file changed, 230 insertions(+), 223 deletions(-) diff --git a/manifest.json b/manifest.json index bdb55c02..520b8d87 100644 --- a/manifest.json +++ b/manifest.json @@ -31,7 +31,7 @@ "Repository": "RSPM", "Date/Publication": "2022-12-08 08:12:34 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2023-04-22 01:31:05 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:46:51 UTC; unix" } }, "BH": { @@ -54,7 +54,7 @@ "Repository": "RSPM", "Date/Publication": "2024-01-10 11:53:35 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2024-06-26 20:44:46 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:26 UTC; unix" } }, "BiocManager": { @@ -80,7 +80,14 @@ "Maintainer": "Marcel Ramos ", "Repository": "RSPM", "Date/Publication": "2023-08-08 23:40:06 UTC", - "Built": "R 4.3.0; ; 2023-08-09 11:24:46 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:29:18 UTC; unix", + "RemoteType": "standard", + "RemotePkgRef": "BiocManager", + "RemoteRef": "BiocManager", + "RemoteRepos": "https://packagemanager.posit.co/cran/__linux__/noble/2024-04-08", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "source", + "RemoteSha": "1.30.22" } }, "DBI": { @@ -112,7 +119,7 @@ "Maintainer": "Kirill Müller ", "Repository": "RSPM", "Date/Publication": "2024-02-16 13:00:02 UTC", - "Built": "R 4.3.0; ; 2024-02-19 11:24:16 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:45:48 UTC; unix" } }, "DT": { @@ -139,7 +146,7 @@ "Maintainer": "Joe Cheng ", "Repository": "RSPM", "Date/Publication": "2024-04-04 05:03:17 UTC", - "Built": "R 4.3.0; ; 2024-04-05 04:37:00 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:54:58 UTC; unix" } }, "MASS": { @@ -168,7 +175,7 @@ "Maintainer": "Brian Ripley ", "Repository": "CRAN", "Date/Publication": "2024-01-13 13:36:16 UTC", - "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2024-11-07 07:01:18 UTC; unix" + "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2024-11-07 07:03:00 UTC; unix" } }, "Matrix": { @@ -201,7 +208,7 @@ "Maintainer": "Martin Maechler ", "Repository": "CRAN", "Date/Publication": "2024-01-11 17:50:15 UTC", - "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2024-11-07 07:01:34 UTC; unix" + "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2024-11-07 07:03:15 UTC; unix" } }, "R.methodsS3": { @@ -227,7 +234,7 @@ "Repository": "RSPM", "Date/Publication": "2022-06-13 22:00:14 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2023-05-30 12:53:15 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:47:05 UTC; unix" } }, "R.oo": { @@ -253,7 +260,7 @@ "Repository": "RSPM", "Date/Publication": "2024-01-24 05:12:50 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2024-01-25 11:25:32 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 06:18:30 UTC; unix" } }, "R.utils": { @@ -279,7 +286,7 @@ "Repository": "RSPM", "Date/Publication": "2023-11-18 01:00:02 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2023-11-20 11:24:04 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 06:35:56 UTC; unix" } }, "R6": { @@ -304,7 +311,7 @@ "Repository": "RSPM", "Date/Publication": "2021-08-19 14:00:05 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2024-06-26 20:44:45 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:06 UTC; unix" } }, "RColorBrewer": { @@ -326,7 +333,7 @@ "Repository": "RSPM", "Date/Publication": "2022-04-03 19:20:13 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2024-06-26 20:44:35 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:08 UTC; unix" } }, "RSQLite": { @@ -360,7 +367,7 @@ "Maintainer": "Kirill Müller ", "Repository": "RSPM", "Date/Publication": "2024-03-31 22:20:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-01 04:32:06 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-27 05:48:31 UTC; unix" } }, "Rcpp": { @@ -386,7 +393,7 @@ "Packaged": "2024-01-08 12:50:16 UTC; edd", "Repository": "RSPM", "Date/Publication": "2024-01-09 08:20:35 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:39 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:12 UTC; unix" } }, "anytime": { @@ -414,7 +421,7 @@ "Packaged": "2020-08-26 17:46:45.898451 UTC; edd", "Repository": "RSPM", "Date/Publication": "2020-08-27 11:40:21 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-05-18 19:12:56 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-27 05:23:44 UTC; unix" } }, "archive": { @@ -444,7 +451,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2023-12-11 12:40:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-12-12 11:29:22 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-27 06:27:16 UTC; unix" } }, "askpass": { @@ -471,7 +478,7 @@ "Maintainer": "Jeroen Ooms ", "Repository": "RSPM", "Date/Publication": "2023-09-03 20:00:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:35 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:27 UTC; unix" } }, "assertthat": { @@ -495,7 +502,7 @@ "Repository": "RSPM", "Date/Publication": "2019-03-21 14:53:46 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2024-06-26 20:44:44 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:39 UTC; unix" } }, "attachment": { @@ -526,7 +533,7 @@ "Maintainer": "Sébastien Rochette ", "Repository": "RSPM", "Date/Publication": "2024-01-22 09:32:46 UTC", - "Built": "R 4.3.0; ; 2024-01-23 11:14:16 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 06:13:09 UTC; unix" } }, "attempt": { @@ -552,7 +559,7 @@ "Maintainer": "Colin Fay ", "Repository": "RSPM", "Date/Publication": "2020-05-03 20:50:02 UTC", - "Built": "R 4.3.0; ; 2023-04-21 23:12:54 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:47:23 UTC; unix" } }, "backports": { @@ -578,7 +585,7 @@ "Author": "Michel Lang [cre, aut] (),\n R Core Team [aut]", "Repository": "RSPM", "Date/Publication": "2021-12-13 11:30:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:51:08 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-26 01:48:57 UTC; unix" } }, "base64enc": { @@ -600,7 +607,7 @@ "Repository": "RSPM", "Date/Publication": "2015-07-28 08:03:37", "Encoding": "UTF-8", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:29 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:07 UTC; unix" } }, "billboarder": { @@ -628,7 +635,7 @@ "Maintainer": "Victor Perrier ", "Repository": "RSPM", "Date/Publication": "2023-09-29 14:02:38 UTC", - "Built": "R 4.3.0; ; 2023-10-02 11:44:12 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:54:17 UTC; unix" } }, "bit": { @@ -656,7 +663,7 @@ "Packaged": "2022-11-13 21:22:09 UTC; jo", "Repository": "RSPM", "Date/Publication": "2022-11-15 21:20:16 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:39 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:08 UTC; unix" } }, "bit64": { @@ -684,7 +691,7 @@ "Date/Publication": "2020-08-30 07:20:02 UTC", "NeedsCompilation": "yes", "Packaged": "2020-08-29 10:56:45 UTC; jo", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:53 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:38 UTC; unix" } }, "blob": { @@ -712,7 +719,7 @@ "Maintainer": "Kirill Müller ", "Repository": "RSPM", "Date/Publication": "2023-03-17 12:00:06 UTC", - "Built": "R 4.3.0; ; 2023-04-21 21:47:56 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:48:26 UTC; unix" } }, "brew": { @@ -737,7 +744,7 @@ "Author": "Jeffrey Horner [aut, cph],\n Greg Hunt [aut, cre, cph]", "Maintainer": "Greg Hunt ", "Date/Publication": "2023-12-16 08:30:02 UTC", - "Built": "R 4.3.0; ; 2024-01-16 22:31:00 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:19:26 UTC; unix" } }, "brio": { @@ -764,7 +771,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2023-12-10 10:50:07 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-12-11 11:23:07 UTC; unix" + "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2025-01-16 14:32:39 UTC; unix" } }, "broom": { @@ -795,7 +802,7 @@ "Maintainer": "Simon Couch ", "Repository": "RSPM", "Date/Publication": "2023-06-09 22:50:02 UTC", - "Built": "R 4.3.0; ; 2023-06-12 11:47:13 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:54:33 UTC; unix" } }, "bslib": { @@ -828,7 +835,7 @@ "Maintainer": "Carson Sievert ", "Repository": "RSPM", "Date/Publication": "2024-03-29 01:00:03 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:48:24 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:47:40 UTC; unix" } }, "cachem": { @@ -855,7 +862,7 @@ "Maintainer": "Winston Chang ", "Repository": "RSPM", "Date/Publication": "2023-05-01 16:40:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-05-03 00:20:55 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-26 01:47:39 UTC; unix" } }, "callr": { @@ -884,7 +891,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2024-03-25 13:30:06 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:45:50 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:45:05 UTC; unix" } }, "cellranger": { @@ -912,7 +919,7 @@ "Repository": "RSPM", "Date/Publication": "2016-07-27 03:17:48", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2023-08-11 13:58:08 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:48:58 UTC; unix" } }, "checkhelper": { @@ -940,7 +947,7 @@ "RoxygenNote": "7.3.0", "Author": "Sebastien Rochette [aut, cre] (),\n Vincent Guyader [aut] (),\n Arthur Bréant [aut] (),\n Murielle Delmotte [aut] (),\n ThinkR [cph]", "Maintainer": "Sebastien Rochette ", - "Built": "R 4.3.3; ; 2025-01-09 16:16:06 UTC; unix", + "Built": "R 4.3.3; ; 2025-01-16 14:33:31 UTC; unix", "RemoteType": "github", "RemoteUsername": "thinkr-open", "RemoteRepo": "checkhelper", @@ -982,7 +989,7 @@ "Maintainer": "Michel Lang ", "Repository": "RSPM", "Date/Publication": "2023-12-04 10:20:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:35 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:44 UTC; unix" } }, "chromote": { @@ -1011,7 +1018,7 @@ "Maintainer": "Winston Chang ", "Repository": "RSPM", "Date/Publication": "2024-02-12 16:20:06 UTC", - "Built": "R 4.3.0; ; 2024-02-13 11:16:31 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 06:09:37 UTC; unix" } }, "cli": { @@ -1039,7 +1046,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2023-12-11 07:40:13 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-01-09 01:08:15 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-26 01:44:55 UTC; unix" } }, "clipr": { @@ -1068,7 +1075,7 @@ "Maintainer": "Matthew Lincoln ", "Repository": "RSPM", "Date/Publication": "2022-02-22 00:58:45 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:44:52 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:09 UTC; unix" } }, "clisymbols": { @@ -1091,7 +1098,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2017-05-21 17:19:19 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:45:27 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:39 UTC; unix" } }, "codetools": { @@ -1113,7 +1120,7 @@ "Repository": "RSPM", "Date/Publication": "2024-03-31 20:10:06 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2024-06-26 20:45:04 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:08 UTC; unix" } }, "colorspace": { @@ -1142,7 +1149,7 @@ "Maintainer": "Achim Zeileis ", "Repository": "RSPM", "Date/Publication": "2023-01-23 11:40:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:43 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:09 UTC; unix" } }, "commonmark": { @@ -1168,7 +1175,7 @@ "Maintainer": "Jeroen Ooms ", "Repository": "RSPM", "Date/Publication": "2024-01-30 12:40:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:43 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:09 UTC; unix" } }, "config": { @@ -1197,7 +1204,7 @@ "Maintainer": "Andrie de Vries ", "Repository": "RSPM", "Date/Publication": "2023-08-30 16:50:36 UTC", - "Built": "R 4.3.0; ; 2023-08-31 11:21:14 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:24:01 UTC; unix" } }, "conflicted": { @@ -1225,7 +1232,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2023-02-01 08:20:06 UTC", - "Built": "R 4.3.0; ; 2023-04-21 21:46:42 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:49:12 UTC; unix" } }, "covr": { @@ -1252,7 +1259,7 @@ "Maintainer": "Jim Hester ", "Repository": "RSPM", "Date/Publication": "2023-11-09 08:10:06 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-11-10 11:18:49 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-27 06:12:24 UTC; unix" } }, "cpp11": { @@ -1281,7 +1288,7 @@ "Maintainer": "Davis Vaughan ", "Repository": "RSPM", "Date/Publication": "2023-12-02 13:20:02 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:44:42 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:07 UTC; unix" } }, "crancache": { @@ -1303,7 +1310,7 @@ "Imports": "callr,\ncranlike (>= 1.0.2),\ncurl,\ndesc (>= 1.1.0),\ndigest,\nparsedate,\nrappdirs,\nrematch2,\ntools,\nutils,\nwithr", "Suggests": "covr,\npingr,\ntestthat,\nzip", "Encoding": "UTF-8", - "Built": "R 4.3.3; ; 2025-01-09 16:16:14 UTC; unix", + "Built": "R 4.3.3; ; 2025-01-16 14:33:43 UTC; unix", "RemoteType": "github", "RemoteHost": "api.github.com", "RemoteUsername": "r-lib", @@ -1339,7 +1346,7 @@ "Packaged": "2018-11-26 09:54:46 UTC; gaborcsardi", "Repository": "RSPM", "Date/Publication": "2018-11-26 10:10:03 UTC", - "Built": "R 4.3.0; ; 2023-04-27 01:21:58 UTC; unix" + "Built": "R 4.3.3; ; 2025-01-16 14:33:40 UTC; unix" } }, "cranlogs": { @@ -1364,7 +1371,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2019-04-29 19:30:07 UTC", - "Built": "R 4.3.0; ; 2023-04-21 23:12:09 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 06:23:40 UTC; unix" } }, "crayon": { @@ -1390,7 +1397,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2022-09-29 16:20:24 UTC", - "Built": "R 4.3.0; ; 2023-04-21 21:45:59 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:47:34 UTC; unix" } }, "credentials": { @@ -1419,7 +1426,7 @@ "Maintainer": "Jeroen Ooms ", "Repository": "RSPM", "Date/Publication": "2023-09-06 21:32:31 UTC", - "Built": "R 4.3.0; ; 2023-09-07 11:34:11 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 06:09:14 UTC; unix" } }, "crosstalk": { @@ -1445,7 +1452,7 @@ "Maintainer": "Carson Sievert ", "Repository": "RSPM", "Date/Publication": "2023-11-23 08:50:07 UTC", - "Built": "R 4.3.0; ; 2023-11-24 11:47:37 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:48:41 UTC; unix" } }, "crul": { @@ -1475,7 +1482,7 @@ "Maintainer": "Scott Chamberlain ", "Repository": "RSPM", "Date/Publication": "2023-05-17 07:30:02 UTC", - "Built": "R 4.3.0; ; 2023-05-18 11:50:55 UTC; unix" + "Built": "R 4.3.3; ; 2025-01-16 14:33:48 UTC; unix" } }, "curl": { @@ -1504,7 +1511,7 @@ "Maintainer": "Jeroen Ooms ", "Repository": "RSPM", "Date/Publication": "2024-03-01 23:22:46 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:35 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:27 UTC; unix" } }, "data.table": { @@ -1531,7 +1538,7 @@ "Repository": "RSPM", "Date/Publication": "2024-03-30 23:50:02 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:59 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:30 UTC; unix" } }, "dbplyr": { @@ -1564,7 +1571,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2024-03-19 17:00:05 UTC", - "Built": "R 4.3.0; ; 2024-03-20 04:08:39 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:52:14 UTC; unix" } }, "debugme": { @@ -1589,7 +1596,7 @@ "Packaged": "2017-10-22 09:14:23 UTC; gaborcsardi", "Repository": "RSPM", "Date/Publication": "2017-10-22 14:18:09 UTC", - "Built": "R 4.3.0; ; 2023-04-22 06:26:24 UTC; unix" + "Built": "R 4.3.3; ; 2025-01-16 14:33:38 UTC; unix" } }, "desc": { @@ -1619,7 +1626,7 @@ "Author": "Gábor Csárdi [aut, cre],\n Kirill Müller [aut],\n Jim Hester [aut],\n Maëlle Salmon [ctb] (),\n Posit Software, PBC [cph, fnd]", "Repository": "RSPM", "Date/Publication": "2023-12-10 11:40:08 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:45:09 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:58 UTC; unix" } }, "devtools": { @@ -1649,7 +1656,7 @@ "Maintainer": "Jennifer Bryan ", "Repository": "RSPM", "Date/Publication": "2022-10-11 17:12:36 UTC", - "Built": "R 4.3.0; ; 2023-04-22 01:47:07 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 06:46:04 UTC; unix" } }, "diffobj": { @@ -1678,7 +1685,7 @@ "Maintainer": "Brodie Gaslam ", "Repository": "RSPM", "Date/Publication": "2021-10-05 07:10:17 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:52 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:36 UTC; unix" } }, "digest": { @@ -1704,7 +1711,7 @@ "Repository": "RSPM", "Date/Publication": "2024-03-11 14:10:06 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-03-12 11:12:18 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-26 01:48:07 UTC; unix" } }, "downlit": { @@ -1732,7 +1739,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2023-06-29 22:40:08 UTC", - "Built": "R 4.3.0; ; 2023-06-30 11:29:05 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:47:56 UTC; unix" } }, "dplyr": { @@ -1763,7 +1770,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2023-11-17 16:50:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:46:52 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:46:05 UTC; unix" } }, "dtplyr": { @@ -1792,7 +1799,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2023-03-22 13:10:05 UTC", - "Built": "R 4.3.0; ; 2023-04-21 21:56:04 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:49:33 UTC; unix" } }, "ellipsis": { @@ -1818,7 +1825,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2021-04-29 12:40:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:46:20 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-26 01:47:39 UTC; unix" } }, "evaluate": { @@ -1846,7 +1853,7 @@ "Maintainer": "Yihui Xie ", "Repository": "RSPM", "Date/Publication": "2023-11-01 14:10:02 UTC", - "Built": "R 4.3.0; ; 2023-11-03 18:33:13 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:48:16 UTC; unix" } }, "fansi": { @@ -1874,7 +1881,7 @@ "Maintainer": "Brodie Gaslam ", "Repository": "RSPM", "Date/Publication": "2023-12-08 03:30:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:34 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:05 UTC; unix" } }, "farver": { @@ -1901,7 +1908,7 @@ "Author": "Thomas Lin Pedersen [cre, aut]\n (),\n Berendea Nicolae [aut] (Author of the ColorSpace C++ library),\n Romain François [aut] ()", "Repository": "RSPM", "Date/Publication": "2022-07-06 13:50:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:44:54 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-26 01:45:56 UTC; unix" } }, "fastmap": { @@ -1925,7 +1932,7 @@ "Maintainer": "Winston Chang ", "Repository": "RSPM", "Date/Publication": "2023-02-24 16:30:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:46:07 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-26 01:44:49 UTC; unix" } }, "flextable": { @@ -1952,7 +1959,7 @@ "Maintainer": "David Gohel ", "Repository": "RSPM", "Date/Publication": "2024-03-06 14:00:02 UTC", - "Built": "R 4.3.0; ; 2024-03-07 11:34:03 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 06:44:08 UTC; unix" } }, "fontBitstreamVera": { @@ -1976,7 +1983,7 @@ "License_is_FOSS": "yes", "Repository": "RSPM", "Date/Publication": "2017-02-01 00:53:34", - "Built": "R 4.3.0; ; 2024-06-26 20:44:35 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:06 UTC; unix" } }, "fontLiberation": { @@ -2000,7 +2007,7 @@ "Repository": "RSPM", "Date/Publication": "2016-10-15 11:24:18", "License_is_FOSS": "yes", - "Built": "R 4.3.0; ; 2024-06-26 20:44:31 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:05 UTC; unix" } }, "fontawesome": { @@ -2029,7 +2036,7 @@ "Maintainer": "Richard Iannone ", "Repository": "RSPM", "Date/Publication": "2023-08-19 04:52:40 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:45:27 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:51 UTC; unix" } }, "fontquiver": { @@ -2055,7 +2062,7 @@ "Maintainer": "Lionel Henry ", "Repository": "RSPM", "Date/Publication": "2017-02-01 00:52:56", - "Built": "R 4.3.0; ; 2024-06-26 20:44:48 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:38 UTC; unix" } }, "forcats": { @@ -2085,7 +2092,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2023-01-29 22:20:02 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:46:49 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:46:02 UTC; unix" } }, "formattable": { @@ -2115,7 +2122,7 @@ "Maintainer": "Kun Ren ", "Repository": "RSPM", "Date/Publication": "2021-01-07 20:20:10 UTC", - "Built": "R 4.3.0; ; 2023-04-21 23:47:25 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:59:04 UTC; unix" } }, "fs": { @@ -2148,7 +2155,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2023-07-20 10:30:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-09-12 03:14:52 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-26 01:46:16 UTC; unix" } }, "gargle": { @@ -2178,7 +2185,7 @@ "Maintainer": "Jennifer Bryan ", "Repository": "RSPM", "Date/Publication": "2023-07-20 18:50:08 UTC", - "Built": "R 4.3.0; ; 2023-07-21 11:14:11 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:50:00 UTC; unix" } }, "gdtools": { @@ -2206,7 +2213,7 @@ "Maintainer": "David Gohel ", "Repository": "RSPM", "Date/Publication": "2024-03-05 05:30:36 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:51:59 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:50:15 UTC; unix" } }, "generics": { @@ -2234,7 +2241,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2022-07-05 19:40:02 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:44:26 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:39 UTC; unix" } }, "gert": { @@ -2263,7 +2270,7 @@ "Maintainer": "Jeroen Ooms ", "Repository": "RSPM", "Date/Publication": "2023-12-04 13:10:05 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-12-05 15:37:08 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-27 06:19:55 UTC; unix" } }, "gfonts": { @@ -2291,7 +2298,7 @@ "Maintainer": "Victor Perrier ", "Repository": "RSPM", "Date/Publication": "2023-01-08 18:50:02 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:50:55 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:49:13 UTC; unix" } }, "ggplot2": { @@ -2323,7 +2330,7 @@ "Maintainer": "Thomas Lin Pedersen ", "Repository": "RSPM", "Date/Publication": "2024-02-23 09:30:02 UTC", - "Built": "R 4.3.0; ; 2024-02-26 11:37:44 UTC; unix" + "Built": "R 4.3.3; ; 2025-01-16 14:32:21 UTC; unix" } }, "gh": { @@ -2353,7 +2360,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2024-03-28 16:40:07 UTC", - "Built": "R 4.3.0; ; 2024-03-29 04:17:23 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 06:00:13 UTC; unix" } }, "gitcreds": { @@ -2382,7 +2389,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2022-09-08 10:42:55 UTC", - "Built": "R 4.3.0; ; 2024-01-16 22:21:11 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:45:46 UTC; unix" } }, "globals": { @@ -2409,7 +2416,7 @@ "Repository": "RSPM", "Date/Publication": "2024-03-08 00:00:03 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2024-06-26 20:45:21 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:32 UTC; unix" } }, "glue": { @@ -2439,7 +2446,7 @@ "Maintainer": "Jennifer Bryan ", "Repository": "RSPM", "Date/Publication": "2024-01-09 23:13:08 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:27 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:43:02 UTC; unix" } }, "gmailr": { @@ -2468,7 +2475,7 @@ "Maintainer": "Jennifer Bryan ", "Repository": "RSPM", "Date/Publication": "2023-06-30 05:40:02 UTC", - "Built": "R 4.3.0; ; 2023-07-03 12:12:59 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:58:25 UTC; unix" } }, "golem": { @@ -2497,7 +2504,7 @@ "Maintainer": "Colin Fay ", "Repository": "RSPM", "Date/Publication": "2023-06-05 15:50:03 UTC", - "Built": "R 4.3.0; ; 2023-06-06 11:32:16 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 06:06:40 UTC; unix" } }, "googledrive": { @@ -2527,7 +2534,7 @@ "Maintainer": "Jennifer Bryan ", "Repository": "RSPM", "Date/Publication": "2023-06-11 19:30:08 UTC", - "Built": "R 4.3.0; ; 2023-06-12 11:48:00 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:50:45 UTC; unix" } }, "googlesheets4": { @@ -2557,7 +2564,7 @@ "Maintainer": "Jennifer Bryan ", "Repository": "RSPM", "Date/Publication": "2023-06-11 04:00:02 UTC", - "Built": "R 4.3.0; ; 2023-06-12 11:48:42 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:54:09 UTC; unix" } }, "gtable": { @@ -2586,7 +2593,7 @@ "Maintainer": "Thomas Lin Pedersen ", "Repository": "RSPM", "Date/Publication": "2023-08-21 11:20:02 UTC", - "Built": "R 4.3.0; ; 2023-08-22 11:58:57 UTC; unix" + "Built": "R 4.3.3; ; 2025-01-16 14:32:15 UTC; unix" } }, "haven": { @@ -2617,7 +2624,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2023-11-30 15:10:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-12-05 04:20:50 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:49:09 UTC; unix" } }, "here": { @@ -2646,7 +2653,7 @@ "Maintainer": "Kirill Müller ", "Repository": "RSPM", "Date/Publication": "2020-12-13 07:30:02 UTC", - "Built": "R 4.3.0; ; 2023-04-21 23:11:59 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:43:39 UTC; unix" } }, "highr": { @@ -2674,7 +2681,7 @@ "Maintainer": "Yihui Xie ", "Repository": "RSPM", "Date/Publication": "2022-12-22 07:00:02 UTC", - "Built": "R 4.3.0; ; 2023-04-21 21:46:33 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:48:45 UTC; unix" } }, "hms": { @@ -2704,7 +2711,7 @@ "Maintainer": "Kirill Müller ", "Repository": "RSPM", "Date/Publication": "2023-03-21 18:10:02 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:46:16 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:45:30 UTC; unix" } }, "htmltools": { @@ -2735,7 +2742,7 @@ "Maintainer": "Carson Sievert ", "Repository": "RSPM", "Date/Publication": "2024-04-04 05:03:00 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:16 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:38 UTC; unix" } }, "htmlwidgets": { @@ -2763,7 +2770,7 @@ "Maintainer": "Carson Sievert ", "Repository": "RSPM", "Date/Publication": "2023-12-06 06:00:06 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:49:51 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:49:02 UTC; unix" } }, "httpcode": { @@ -2788,7 +2795,7 @@ "Maintainer": "Scott Chamberlain ", "Repository": "RSPM", "Date/Publication": "2020-04-10 06:20:02 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:44:29 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:07 UTC; unix" } }, "httpuv": { @@ -2818,7 +2825,7 @@ "Maintainer": "Winston Chang ", "Repository": "RSPM", "Date/Publication": "2024-03-26 05:50:06 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-11-28 04:14:37 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:46:13 UTC; unix" } }, "httr": { @@ -2846,7 +2853,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2023-08-15 09:00:02 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:45:56 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:46:05 UTC; unix" } }, "httr2": { @@ -2875,7 +2882,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2024-04-01 19:30:02 UTC", - "Built": "R 4.3.0; ; 2024-04-02 04:14:26 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:48:20 UTC; unix" } }, "hunspell": { @@ -2905,7 +2912,7 @@ "Maintainer": "Jeroen Ooms ", "Repository": "RSPM", "Date/Publication": "2023-10-06 07:10:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-10-09 11:49:37 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-27 05:35:28 UTC; unix" } }, "ids": { @@ -2931,7 +2938,7 @@ "Repository": "RSPM", "Date/Publication": "2017-05-31 08:49:59 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2023-04-21 21:46:53 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:49:59 UTC; unix" } }, "ini": { @@ -2957,7 +2964,7 @@ "Repository": "RSPM", "Date/Publication": "2018-05-20 03:26:39 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2024-01-16 22:22:09 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:24:53 UTC; unix" } }, "isoband": { @@ -2986,7 +2993,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2022-12-20 10:00:13 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:29 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:07 UTC; unix" } }, "jquerylib": { @@ -3010,7 +3017,7 @@ "Maintainer": "Carson Sievert ", "Repository": "RSPM", "Date/Publication": "2021-04-26 17:10:02 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:45:27 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:45:01 UTC; unix" } }, "jsonlite": { @@ -3036,7 +3043,7 @@ "Author": "Jeroen Ooms [aut, cre] (),\n Duncan Temple Lang [ctb],\n Lloyd Hilaiel [cph] (author of bundled libyajl)", "Repository": "RSPM", "Date/Publication": "2023-12-04 15:20:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:28 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:09 UTC; unix" } }, "kableExtra": { @@ -3066,7 +3073,7 @@ "Maintainer": "Hao Zhu ", "Repository": "RSPM", "Date/Publication": "2024-01-24 14:20:02 UTC", - "Built": "R 4.3.0; ; 2024-01-25 11:26:31 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:52:29 UTC; unix" } }, "knitr": { @@ -3096,7 +3103,7 @@ "Maintainer": "Yihui Xie ", "Repository": "RSPM", "Date/Publication": "2024-04-06 18:13:00 UTC", - "Built": "R 4.3.0; ; 2024-04-07 04:06:27 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:49:19 UTC; unix" } }, "labeling": { @@ -3119,7 +3126,7 @@ "Repository": "RSPM", "Date/Publication": "2023-08-29 22:20:02 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2024-06-26 20:45:27 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:43:21 UTC; unix" } }, "later": { @@ -3147,7 +3154,7 @@ "Maintainer": "Winston Chang ", "Repository": "RSPM", "Date/Publication": "2023-12-06 09:10:05 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-12-07 11:15:13 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:17 UTC; unix" } }, "lattice": { @@ -3177,7 +3184,7 @@ "Repository": "RSPM", "Date/Publication": "2024-03-20 06:10:02 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:04 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:08 UTC; unix" } }, "lazyeval": { @@ -3202,7 +3209,7 @@ "Repository": "RSPM", "Date/Publication": "2019-03-15 17:50:07 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 22:19:30 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-26 01:46:42 UTC; unix" } }, "learnr": { @@ -3233,7 +3240,7 @@ "Maintainer": "Garrick Aden-Buie ", "Repository": "RSPM", "Date/Publication": "2023-09-28 05:00:02 UTC", - "Built": "R 4.3.0; ; 2023-09-29 11:12:58 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:52:47 UTC; unix" } }, "lifecycle": { @@ -3262,7 +3269,7 @@ "Maintainer": "Lionel Henry ", "Repository": "RSPM", "Date/Publication": "2023-11-07 10:10:10 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:45:36 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:39 UTC; unix" } }, "loggit": { @@ -3289,7 +3296,7 @@ "Maintainer": "Ryan Price ", "Repository": "RSPM", "Date/Publication": "2021-02-28 05:30:02 UTC", - "Built": "R 4.3.0; ; 2023-04-27 02:41:22 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:18:00 UTC; unix" } }, "lubridate": { @@ -3323,7 +3330,7 @@ "Author": "Vitalie Spinu [aut, cre],\n Garrett Grolemund [aut],\n Hadley Wickham [aut],\n Davis Vaughan [ctb],\n Ian Lyttle [ctb],\n Imanuel Costigan [ctb],\n Jason Law [ctb],\n Doug Mitarotonda [ctb],\n Joseph Larmarange [ctb],\n Jonathan Boiser [ctb],\n Chel Hee Lee [ctb]", "Repository": "RSPM", "Date/Publication": "2023-09-27 09:20:06 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:17 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:15 UTC; unix" } }, "magrittr": { @@ -3352,7 +3359,7 @@ "Maintainer": "Lionel Henry ", "Repository": "RSPM", "Date/Publication": "2022-03-30 07:30:09 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:43 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:09 UTC; unix" } }, "markdown": { @@ -3380,7 +3387,7 @@ "Maintainer": "Yihui Xie ", "Repository": "RSPM", "Date/Publication": "2023-12-06 00:20:02 UTC", - "Built": "R 4.3.0; ; 2023-12-07 11:15:11 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:47:14 UTC; unix" } }, "memoise": { @@ -3405,7 +3412,7 @@ "Maintainer": "Winston Chang ", "Repository": "RSPM", "Date/Publication": "2021-11-26 16:11:10 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:45:24 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:52 UTC; unix" } }, "mgcv": { @@ -3429,7 +3436,7 @@ "Packaged": "2023-12-20 10:39:06 UTC; sw283", "Repository": "CRAN", "Date/Publication": "2023-12-21 00:30:02 UTC", - "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2024-11-07 07:04:41 UTC; unix" + "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2024-11-07 07:06:31 UTC; unix" } }, "mime": { @@ -3454,7 +3461,7 @@ "Maintainer": "Yihui Xie ", "Repository": "RSPM", "Date/Publication": "2021-09-28 05:00:05 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:36 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:20 UTC; unix" } }, "miniUI": { @@ -3478,7 +3485,7 @@ "Repository": "RSPM", "Date/Publication": "2018-05-18 18:37:18 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2023-04-21 22:21:36 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:54:19 UTC; unix" } }, "modelr": { @@ -3507,7 +3514,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2023-03-22 13:00:07 UTC", - "Built": "R 4.3.0; ; 2023-04-21 21:56:21 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:55:10 UTC; unix" } }, "munsell": { @@ -3532,7 +3539,7 @@ "Packaged": "2024-04-01 20:42:09 UTC; charlottewickham", "Repository": "RSPM", "Date/Publication": "2024-04-01 23:40:10 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:44:59 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:37 UTC; unix" } }, "nlme": { @@ -3562,7 +3569,7 @@ "Maintainer": "R Core Team ", "Repository": "CRAN", "Date/Publication": "2023-11-27 15:26:12 UTC", - "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2024-11-07 07:03:17 UTC; unix" + "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2024-11-07 07:05:13 UTC; unix" } }, "officer": { @@ -3588,7 +3595,7 @@ "Maintainer": "David Gohel ", "Repository": "RSPM", "Date/Publication": "2024-02-24 16:10:06 UTC", - "Built": "R 4.3.0; ; 2024-02-26 11:37:59 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:48:10 UTC; unix" } }, "openssl": { @@ -3616,7 +3623,7 @@ "Maintainer": "Jeroen Ooms ", "Repository": "RSPM", "Date/Publication": "2023-09-25 19:10:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-09-26 11:26:46 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-05-23 22:52:44 UTC; unix" } }, "parsedate": { @@ -3639,7 +3646,7 @@ "Packaged": "2022-10-27 10:25:40 UTC; gaborcsardi", "Repository": "RSPM", "Date/Publication": "2022-10-27 10:52:37 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-22 05:43:18 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-27 05:23:13 UTC; unix" } }, "pillar": { @@ -3672,7 +3679,7 @@ "Maintainer": "Kirill Müller ", "Repository": "RSPM", "Date/Publication": "2023-03-22 08:10:02 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:46:17 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:45:32 UTC; unix" } }, "pingr": { @@ -3700,7 +3707,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2023-12-10 14:10:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-12-11 11:23:32 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-27 05:26:01 UTC; unix" } }, "pkgbuild": { @@ -3728,7 +3735,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2024-03-17 14:40:02 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:46:03 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:45:18 UTC; unix" } }, "pkgconfig": { @@ -3752,7 +3759,7 @@ "Packaged": "2019-09-22 08:42:40 UTC; gaborcsardi", "Repository": "RSPM", "Date/Publication": "2019-09-22 09:20:02 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:44:38 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:12 UTC; unix" } }, "pkgdown": { @@ -3783,7 +3790,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2022-12-14 11:40:06 UTC", - "Built": "R 4.3.0; ; 2023-04-22 01:45:16 UTC; unix" + "Built": "R 4.3.3; ; 2025-01-16 14:32:51 UTC; unix" } }, "pkgload": { @@ -3813,7 +3820,7 @@ "Maintainer": "Lionel Henry ", "Repository": "RSPM", "Date/Publication": "2024-01-16 12:20:04 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:46:23 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:45:37 UTC; unix" } }, "plogr": { @@ -3839,7 +3846,7 @@ "Maintainer": "Kirill Müller ", "Repository": "RSPM", "Date/Publication": "2018-03-25 15:25:27 UTC", - "Built": "R 4.3.0; ; 2023-04-21 23:45:01 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:25:08 UTC; unix" } }, "plotly": { @@ -3867,7 +3874,7 @@ "Maintainer": "Carson Sievert ", "Repository": "RSPM", "Date/Publication": "2024-01-13 22:40:02 UTC", - "Built": "R 4.3.0; ; 2024-01-15 15:45:30 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 06:04:00 UTC; unix" } }, "png": { @@ -3889,7 +3896,7 @@ "Repository": "RSPM", "Date/Publication": "2022-11-29 11:12:53 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 23:21:04 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-27 05:47:11 UTC; unix" } }, "praise": { @@ -3913,7 +3920,7 @@ "Repository": "RSPM", "Date/Publication": "2015-08-11 08:22:28", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2024-06-26 20:44:29 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:09 UTC; unix" } }, "prettyunits": { @@ -3938,7 +3945,7 @@ "Maintainer": "Gabor Csardi ", "Repository": "RSPM", "Date/Publication": "2023-09-24 21:10:02 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:44:26 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:31 UTC; unix" } }, "processx": { @@ -3966,7 +3973,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2024-03-16 14:50:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:38 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:44 UTC; unix" } }, "profvis": { @@ -3992,7 +3999,7 @@ "Maintainer": "Winston Chang ", "Repository": "RSPM", "Date/Publication": "2023-05-02 18:00:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-05-09 11:15:06 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-27 05:52:43 UTC; unix" } }, "progress": { @@ -4020,7 +4027,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2023-12-06 10:30:02 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:46:31 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:45:43 UTC; unix" } }, "promises": { @@ -4050,7 +4057,7 @@ "Maintainer": "Joe Cheng ", "Repository": "RSPM", "Date/Publication": "2024-04-05 15:00:06 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:47:00 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:47 UTC; unix" } }, "ps": { @@ -4079,7 +4086,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2024-01-18 06:40:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:26 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:11 UTC; unix" } }, "purrr": { @@ -4110,7 +4117,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2023-08-10 08:20:07 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:46:17 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-26 01:48:26 UTC; unix" } }, "ragg": { @@ -4140,7 +4147,7 @@ "Author": "Thomas Lin Pedersen [cre, aut]\n (),\n Maxim Shemanarev [aut, cph] (Author of AGG),\n Tony Juricic [ctb, cph] (Contributor to AGG),\n Milan Marusinec [ctb, cph] (Contributor to AGG),\n Spencer Garrett [ctb] (Contributor to AGG),\n Posit, PBC [cph, fnd]", "Repository": "RSPM", "Date/Publication": "2024-03-13 21:00:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-03-14 15:14:55 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-26 01:50:31 UTC; unix" } }, "rappdirs": { @@ -4168,7 +4175,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2021-01-31 05:40:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:29 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:05 UTC; unix" } }, "rcmdcheck": { @@ -4194,7 +4201,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2021-09-27 15:10:02 UTC", - "Built": "R 4.3.0; ; 2023-04-22 00:28:57 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:45:21 UTC; unix" } }, "readr": { @@ -4226,7 +4233,7 @@ "Maintainer": "Jennifer Bryan ", "Repository": "RSPM", "Date/Publication": "2024-01-10 23:20:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-12-05 04:19:24 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:47:52 UTC; unix" } }, "readxl": { @@ -4257,7 +4264,7 @@ "Maintainer": "Jennifer Bryan ", "Repository": "RSPM", "Date/Publication": "2023-07-06 22:00:09 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-12-05 04:17:28 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-26 01:50:37 UTC; unix" } }, "rematch": { @@ -4280,7 +4287,7 @@ "Packaged": "2023-08-30 12:10:51 UTC; gaborcsardi", "Repository": "RSPM", "Date/Publication": "2023-08-30 16:50:02 UTC", - "Built": "R 4.3.0; ; 2023-08-31 11:21:16 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:45:19 UTC; unix" } }, "rematch2": { @@ -4306,7 +4313,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2020-05-01 06:50:02 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:46:49 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:46:02 UTC; unix" } }, "remotes": { @@ -4336,7 +4343,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2024-03-17 13:20:02 UTC", - "Built": "R 4.3.0; ; 2024-03-18 15:33:51 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:26:43 UTC; unix" } }, "renv": { @@ -4367,7 +4374,7 @@ "Maintainer": "Kevin Ushey ", "Repository": "RSPM", "Date/Publication": "2024-02-29 01:10:07 UTC", - "Built": "R 4.3.3; ; 2025-01-10 17:24:24 UTC; unix" + "Built": "R 4.3.3; ; 2025-01-16 15:02:57 UTC; unix" } }, "reprex": { @@ -4400,7 +4407,7 @@ "Maintainer": "Jennifer Bryan ", "Repository": "RSPM", "Date/Publication": "2024-01-11 08:30:04 UTC", - "Built": "R 4.3.0; ; 2024-01-12 11:30:13 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:54:57 UTC; unix" } }, "revdepcheck": { @@ -4425,7 +4432,7 @@ "RoxygenNote": "7.2.3", "Author": "Gábor Csárdi [cre, aut, cph],\n Hadley Wickham [aut],\n RConsortium [cph],\n RStudio [cph, fnd]", "Maintainer": "Gábor Csárdi ", - "Built": "R 4.3.3; ; 2025-01-09 16:16:46 UTC; unix", + "Built": "R 4.3.3; ; 2025-01-16 14:34:20 UTC; unix", "RemoteType": "github", "RemoteUsername": "r-lib", "RemoteRepo": "revdepcheck", @@ -4465,7 +4472,7 @@ "Maintainer": "Kevin Ushey ", "Repository": "RSPM", "Date/Publication": "2021-11-26 16:11:02 UTC", - "Built": "R 4.3.0; ; 2023-04-22 02:43:41 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:21:51 UTC; unix" } }, "rhub": { @@ -4491,7 +4498,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2022-08-31 13:00:11 UTC", - "Built": "R 4.3.0; ; 2023-04-25 17:18:16 UTC; unix" + "Built": "R 4.3.3; ; 2025-01-16 14:34:24 UTC; unix" } }, "rintrojs": { @@ -4519,7 +4526,7 @@ "Repository": "RSPM", "Date/Publication": "2024-01-11 21:30:02 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2024-01-12 11:30:11 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 06:21:15 UTC; unix" } }, "riskmetric": { @@ -4543,7 +4550,7 @@ "Config/testthat/edition": "3", "Author": "R Validation Hub [aut],\n Doug Kelkhoff [aut],\n Marly Gotti [aut],\n Eli Miller [cre, aut],\n Kevin K [aut],\n Yilong Zhang [aut],\n Eric Milliman [aut],\n Juliane Manitz [aut],\n Mark Padgham [ctb],\n PSI special interest group Application and Implementation of\n Methodologies in Statistics [cph]", "Maintainer": "Eli Miller ", - "Built": "R 4.3.3; ; 2025-01-09 16:16:52 UTC; unix", + "Built": "R 4.3.3; ; 2025-01-16 14:34:28 UTC; unix", "RemoteType": "github", "RemoteUsername": "pharmaR", "RemoteRepo": "riskmetric", @@ -4576,7 +4583,7 @@ "Packaged": "2022-01-08 19:22:39 UTC; root", "NeedsCompilation": "yes", "Encoding": "UTF-8", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 23:45:36 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-27 05:18:05 UTC; unix" } }, "rlang": { @@ -4607,7 +4614,7 @@ "Maintainer": "Lionel Henry ", "Repository": "RSPM", "Date/Publication": "2024-01-10 12:00:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-01-11 12:53:47 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-26 01:46:00 UTC; unix" } }, "rmarkdown": { @@ -4637,7 +4644,7 @@ "Author": "JJ Allaire [aut],\n Yihui Xie [aut, cre] (),\n Christophe Dervieux [aut] (),\n Jonathan McPherson [aut],\n Javier Luraschi [aut],\n Kevin Ushey [aut],\n Aron Atkins [aut],\n Hadley Wickham [aut],\n Joe Cheng [aut],\n Winston Chang [aut],\n Richard Iannone [aut] (),\n Andrew Dunning [ctb] (),\n Atsushi Yasumoto [ctb, cph] (,\n Number sections Lua filter),\n Barret Schloerke [ctb],\n Carson Sievert [ctb] (),\n Devon Ryan [ctb] (),\n Frederik Aust [ctb] (),\n Jeff Allen [ctb],\n JooYoung Seo [ctb] (),\n Malcolm Barrett [ctb],\n Rob Hyndman [ctb],\n Romain Lesur [ctb],\n Roy Storey [ctb],\n Ruben Arslan [ctb],\n Sergio Oller [ctb],\n Posit Software, PBC [cph, fnd],\n jQuery UI contributors [ctb, cph] (jQuery UI library; authors listed in\n inst/rmd/h/jqueryui/AUTHORS.txt),\n Mark Otto [ctb] (Bootstrap library),\n Jacob Thornton [ctb] (Bootstrap library),\n Bootstrap contributors [ctb] (Bootstrap library),\n Twitter, Inc [cph] (Bootstrap library),\n Alexander Farkas [ctb, cph] (html5shiv library),\n Scott Jehl [ctb, cph] (Respond.js library),\n Ivan Sagalaev [ctb, cph] (highlight.js library),\n Greg Franko [ctb, cph] (tocify library),\n John MacFarlane [ctb, cph] (Pandoc templates),\n Google, Inc. [ctb, cph] (ioslides library),\n Dave Raggett [ctb] (slidy library),\n W3C [cph] (slidy library),\n Dave Gandy [ctb, cph] (Font-Awesome),\n Ben Sperry [ctb] (Ionicons),\n Drifty [cph] (Ionicons),\n Aidan Lister [ctb, cph] (jQuery StickyTabs),\n Benct Philip Jonsson [ctb, cph] (pagebreak Lua filter),\n Albert Krewinkel [ctb, cph] (pagebreak Lua filter)", "Repository": "RSPM", "Date/Publication": "2024-03-05 17:40:02 UTC", - "Built": "R 4.3.0; ; 2024-03-06 12:26:33 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:53:32 UTC; unix" } }, "roxygen2": { @@ -4670,7 +4677,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2024-01-22 21:10:03 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-01-23 11:13:22 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-27 05:48:32 UTC; unix" } }, "rprojroot": { @@ -4697,7 +4704,7 @@ "Maintainer": "Kirill Müller ", "Repository": "RSPM", "Date/Publication": "2023-11-05 10:20:02 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:44:57 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:08 UTC; unix" } }, "rstudioapi": { @@ -4722,7 +4729,7 @@ "Author": "Kevin Ushey [aut, cre],\n JJ Allaire [aut],\n Hadley Wickham [aut],\n Gary Ritchie [aut],\n RStudio [cph]", "Repository": "RSPM", "Date/Publication": "2024-03-24 11:30:02 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:44:34 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:08 UTC; unix" } }, "rversions": { @@ -4747,7 +4754,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2022-08-31 10:30:02 UTC", - "Built": "R 4.3.0; ; 2023-04-22 00:27:53 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:47:43 UTC; unix" } }, "rvest": { @@ -4778,7 +4785,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2024-02-12 20:10:02 UTC", - "Built": "R 4.3.0; ; 2024-02-13 11:16:42 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:53:20 UTC; unix" } }, "sass": { @@ -4807,7 +4814,7 @@ "Maintainer": "Carson Sievert ", "Repository": "RSPM", "Date/Publication": "2024-03-15 22:30:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:46:11 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:14 UTC; unix" } }, "scales": { @@ -4836,7 +4843,7 @@ "Maintainer": "Thomas Lin Pedersen ", "Repository": "RSPM", "Date/Publication": "2023-11-28 09:10:06 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:45:50 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:59 UTC; unix" } }, "scrypt": { @@ -4862,7 +4869,7 @@ "Repository": "RSPM", "Date/Publication": "2023-01-29 15:40:02 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-11-03 07:04:23 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-27 05:19:55 UTC; unix" } }, "selectr": { @@ -4889,7 +4896,7 @@ "Repository": "RSPM", "Date/Publication": "2019-11-20 07:30:03 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2023-04-21 21:53:58 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:51:25 UTC; unix" } }, "sessioninfo": { @@ -4918,7 +4925,7 @@ "Author": "Gábor Csárdi [cre],\n Hadley Wickham [aut],\n Winston Chang [aut],\n Robert Flight [aut],\n Kirill Müller [aut],\n Jim Hester [aut],\n R Core team [ctb]", "Repository": "RSPM", "Date/Publication": "2021-12-06 11:50:02 UTC", - "Built": "R 4.3.0; ; 2023-04-22 00:27:35 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:29:57 UTC; unix" } }, "shiny": { @@ -4949,7 +4956,7 @@ "Maintainer": "Winston Chang ", "Repository": "RSPM", "Date/Publication": "2024-04-02 17:22:03 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:49:51 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:48:16 UTC; unix" } }, "shinyAce": { @@ -4977,7 +4984,7 @@ "Maintainer": "Vincent Nijs ", "Repository": "RSPM", "Date/Publication": "2022-05-06 06:50:08 UTC", - "Built": "R 4.3.0; ; 2023-04-22 00:38:38 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:58:43 UTC; unix" } }, "shinyTree": { @@ -5004,7 +5011,7 @@ "Author": "Trestle Technology, LLC [aut],\n Jeff Allen [aut],\n Institut de Radioprotection et de Sûreté Nucléaire [cph],\n Ivan Bozhanov [ctb, cph] (jsTree),\n The Dojo Foundation [ctb, cph] (require.js),\n jQuery Foundation, Inc. [ctb, cph],\n Mike Schaffer [ctb],\n Timm Danker [ctb],\n Michael Bell [cre],\n Sebastian Gatscha [ctb],\n Thorn Thaler [ctb]", "Repository": "RSPM", "Date/Publication": "2023-08-07 18:30:02 UTC", - "Built": "R 4.3.0; ; 2023-08-08 19:13:13 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:54:41 UTC; unix" } }, "shinyWidgets": { @@ -5031,7 +5038,7 @@ "Maintainer": "Victor Perrier ", "Repository": "RSPM", "Date/Publication": "2024-04-04 17:40:02 UTC", - "Built": "R 4.3.0; ; 2024-04-05 04:37:03 UTC; unix" + "Built": "R 4.3.3; ; 2025-01-16 14:34:59 UTC; unix" } }, "shinyjs": { @@ -5058,7 +5065,7 @@ "Maintainer": "Dean Attali ", "Repository": "RSPM", "Date/Publication": "2021-12-23 10:10:02 UTC", - "Built": "R 4.3.0; ; 2023-04-21 22:20:41 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:54:49 UTC; unix" } }, "shinymanager": { @@ -5083,7 +5090,7 @@ "Maintainer": "Benoit Thieurmel ", "Repository": "RSPM", "Date/Publication": "2022-09-27 07:00:02 UTC", - "Built": "R 4.3.0; ; 2023-04-25 06:00:56 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 06:37:36 UTC; unix" } }, "shinytest2": { @@ -5116,7 +5123,7 @@ "Maintainer": "Barret Schloerke ", "Repository": "RSPM", "Date/Publication": "2023-08-26 13:50:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-08-28 11:40:29 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-27 06:18:19 UTC; unix" } }, "sortable": { @@ -5145,7 +5152,7 @@ "Maintainer": "Andrie de Vries ", "Repository": "RSPM", "Date/Publication": "2023-03-26 17:20:09 UTC", - "Built": "R 4.3.0; ; 2023-04-22 06:24:18 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 06:13:10 UTC; unix" } }, "sourcetools": { @@ -5169,7 +5176,7 @@ "Packaged": "2023-01-31 18:03:04 UTC; kevin", "Repository": "RSPM", "Date/Publication": "2023-02-01 10:10:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:36 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:07 UTC; unix" } }, "spelling": { @@ -5195,7 +5202,7 @@ "Maintainer": "Jeroen Ooms ", "Repository": "RSPM", "Date/Publication": "2024-03-05 05:40:02 UTC", - "Built": "R 4.3.0; ; 2024-03-06 12:26:34 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:47:53 UTC; unix" } }, "stringi": { @@ -5224,7 +5231,7 @@ "License_is_FOSS": "yes", "Repository": "RSPM", "Date/Publication": "2023-12-11 22:50:03 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-12-12 11:28:56 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-26 01:48:10 UTC; unix" } }, "stringr": { @@ -5254,7 +5261,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2023-11-14 23:10:02 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:46:21 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:46:02 UTC; unix" } }, "svglite": { @@ -5285,7 +5292,7 @@ "Maintainer": "Thomas Lin Pedersen ", "Repository": "RSPM", "Date/Publication": "2023-12-08 16:20:13 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-12-05 04:18:22 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-27 05:28:11 UTC; unix" } }, "sys": { @@ -5311,7 +5318,7 @@ "Maintainer": "Jeroen Ooms ", "Repository": "RSPM", "Date/Publication": "2023-05-23 07:50:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:09 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:43:02 UTC; unix" } }, "systemfonts": { @@ -5341,7 +5348,7 @@ "Maintainer": "Thomas Lin Pedersen ", "Repository": "RSPM", "Date/Publication": "2024-03-07 09:10:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-03-08 03:45:17 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-26 01:48:12 UTC; unix" } }, "testthat": { @@ -5372,7 +5379,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2023-12-02 11:50:05 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-12-04 11:51:39 UTC; unix" + "Built": "R 4.3.3; x86_64-pc-linux-gnu; 2025-01-16 14:33:01 UTC; unix" } }, "textshaping": { @@ -5401,7 +5408,7 @@ "Maintainer": "Thomas Lin Pedersen ", "Repository": "RSPM", "Date/Publication": "2023-10-09 14:00:06 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-10-10 11:07:20 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-26 01:49:39 UTC; unix" } }, "tibble": { @@ -5435,7 +5442,7 @@ "Maintainer": "Kirill Müller ", "Repository": "RSPM", "Date/Publication": "2023-03-20 06:30:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:46:33 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:48 UTC; unix" } }, "tidyr": { @@ -5466,7 +5473,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2024-01-24 14:50:09 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-12-05 04:17:45 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:46:36 UTC; unix" } }, "tidyselect": { @@ -5496,7 +5503,7 @@ "Maintainer": "Lionel Henry ", "Repository": "RSPM", "Date/Publication": "2024-03-11 14:10:02 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:46:16 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:45:32 UTC; unix" } }, "tidyverse": { @@ -5525,7 +5532,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2023-02-22 09:20:06 UTC", - "Built": "R 4.3.0; ; 2023-04-21 22:01:22 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 02:03:45 UTC; unix" } }, "timechange": { @@ -5552,7 +5559,7 @@ "Maintainer": "Vitalie Spinu ", "Repository": "RSPM", "Date/Publication": "2024-01-18 09:20:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-12-05 04:17:18 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:39 UTC; unix" } }, "tinytex": { @@ -5578,7 +5585,7 @@ "Maintainer": "Yihui Xie ", "Repository": "RSPM", "Date/Publication": "2024-03-16 05:20:02 UTC", - "Built": "R 4.3.0; ; 2024-03-18 14:02:45 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-26 01:48:45 UTC; unix" } }, "triebeard": { @@ -5606,7 +5613,7 @@ "Packaged": "2023-03-04 21:40:31 UTC; ironholds", "Repository": "RSPM", "Date/Publication": "2023-03-04 23:30:07 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-11-03 07:03:38 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:01 UTC; unix" } }, "tzdb": { @@ -5635,7 +5642,7 @@ "Maintainer": "Davis Vaughan ", "Repository": "RSPM", "Date/Publication": "2023-05-12 23:00:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-12-05 04:17:17 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:43 UTC; unix" } }, "urlchecker": { @@ -5661,7 +5668,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2021-11-30 13:40:02 UTC", - "Built": "R 4.3.0; ; 2023-04-22 00:27:46 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:47:44 UTC; unix" } }, "urltools": { @@ -5691,7 +5698,7 @@ "Packaged": "2019-04-14 22:25:08 UTC; ironholds", "Repository": "RSPM", "Date/Publication": "2019-04-14 23:02:47 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-11-03 07:15:44 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:56 UTC; unix" } }, "usethis": { @@ -5722,7 +5729,7 @@ "Maintainer": "Jennifer Bryan ", "Repository": "RSPM", "Date/Publication": "2024-02-19 16:00:02 UTC", - "Built": "R 4.3.0; ; 2024-02-20 11:19:46 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 06:40:00 UTC; unix" } }, "utf8": { @@ -5749,7 +5756,7 @@ "Maintainer": "Kirill Müller ", "Repository": "RSPM", "Date/Publication": "2023-10-22 21:50:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:35 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:10 UTC; unix" } }, "uuid": { @@ -5771,7 +5778,7 @@ "Repository": "RSPM", "Date/Publication": "2024-01-14 15:20:05 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:28 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:19 UTC; unix" } }, "vctrs": { @@ -5801,7 +5808,7 @@ "Maintainer": "Davis Vaughan ", "Repository": "RSPM", "Date/Publication": "2023-12-01 23:50:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:47 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:51 UTC; unix" } }, "viridisLite": { @@ -5828,7 +5835,7 @@ "Author": "Simon Garnier [aut, cre],\n Noam Ross [ctb, cph],\n Bob Rudis [ctb, cph],\n Marco Sciaini [ctb, cph],\n Antônio Pedro Camargo [ctb, cph],\n Cédric Scherer [ctb, cph]", "Repository": "RSPM", "Date/Publication": "2023-05-02 23:50:02 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:44:58 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:12 UTC; unix" } }, "vroom": { @@ -5861,7 +5868,7 @@ "Maintainer": "Jennifer Bryan ", "Repository": "RSPM", "Date/Publication": "2023-12-05 23:50:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-12-05 04:17:53 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:46:09 UTC; unix" } }, "waldo": { @@ -5889,7 +5896,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2023-11-02 13:10:02 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:47:07 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:46:19 UTC; unix" } }, "websocket": { @@ -5917,7 +5924,7 @@ "Maintainer": "Winston Chang ", "Repository": "RSPM", "Date/Publication": "2021-08-18 20:30:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-05-06 07:08:02 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-27 05:58:03 UTC; unix" } }, "whisker": { @@ -5941,7 +5948,7 @@ "Repository": "RSPM", "Date/Publication": "2022-12-05 15:33:50 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2023-07-10 02:59:29 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 05:27:02 UTC; unix" } }, "whoami": { @@ -5966,7 +5973,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2019-03-19 12:00:03 UTC", - "Built": "R 4.3.0; ; 2023-04-22 08:15:15 UTC; unix" + "Built": "R 4.3.0; ; 2024-04-27 06:20:51 UTC; unix" } }, "withr": { @@ -5996,7 +6003,7 @@ "Maintainer": "Lionel Henry ", "Repository": "RSPM", "Date/Publication": "2024-01-16 14:20:02 UTC", - "Built": "R 4.3.0; ; 2024-06-26 20:43:27 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:08 UTC; unix" } }, "xfun": { @@ -6023,7 +6030,7 @@ "Maintainer": "Yihui Xie ", "Repository": "RSPM", "Date/Publication": "2024-03-25 17:00:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-03-26 04:09:14 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-04-26 01:47:03 UTC; unix" } }, "xml2": { @@ -6054,7 +6061,7 @@ "Maintainer": "Hadley Wickham ", "Repository": "RSPM", "Date/Publication": "2023-12-04 16:30:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:22 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:43 UTC; unix" } }, "xopen": { @@ -6081,7 +6088,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2018-09-17 13:10:03 UTC", - "Built": "R 4.3.0; ; 2023-04-22 00:28:07 UTC; unix" + "Built": "R 4.3.3; ; 2025-01-16 14:32:56 UTC; unix" } }, "xtable": { @@ -6107,7 +6114,7 @@ "Author": "David B. Dahl [aut],\n David Scott [aut, cre],\n Charles Roosen [aut],\n Arni Magnusson [aut],\n Jonathan Swinton [aut],\n Ajay Shah [ctb],\n Arne Henningsen [ctb],\n Benno Puetz [ctb],\n Bernhard Pfaff [ctb],\n Claudio Agostinelli [ctb],\n Claudius Loehnert [ctb],\n David Mitchell [ctb],\n David Whiting [ctb],\n Fernando da Rosa [ctb],\n Guido Gay [ctb],\n Guido Schulz [ctb],\n Ian Fellows [ctb],\n Jeff Laake [ctb],\n John Walker [ctb],\n Jun Yan [ctb],\n Liviu Andronic [ctb],\n Markus Loecher [ctb],\n Martin Gubri [ctb],\n Matthieu Stigler [ctb],\n Robert Castelo [ctb],\n Seth Falcon [ctb],\n Stefan Edwards [ctb],\n Sven Garbade [ctb],\n Uwe Ligges [ctb]", "Date/Publication": "2019-04-21 12:20:03 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; ; 2024-06-26 20:45:38 UTC; unix" + "Built": "R 4.3.0; ; 2024-06-26 20:44:06 UTC; unix" } }, "yaml": { @@ -6131,7 +6138,7 @@ "Repository": "RSPM", "Date/Publication": "2023-12-11 18:50:02 UTC", "Encoding": "UTF-8", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:58 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:44:06 UTC; unix" } }, "zip": { @@ -6157,7 +6164,7 @@ "Maintainer": "Gábor Csárdi ", "Repository": "RSPM", "Date/Publication": "2024-01-27 10:00:02 UTC", - "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:27 UTC; unix" + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2024-06-26 20:45:09 UTC; unix" } } }, @@ -6166,7 +6173,7 @@ "checksum": "ad6dc982082a6e0619cfee61b44632ba" }, ".github/workflows/pkgdown.yaml": { - "checksum": "5672e25aad19ca20ba7c2d23a8362245" + "checksum": "08390118b75a2b16731ddc636ab4788d" }, ".github/workflows/R-CMD-check.yaml": { "checksum": "4c240fa388edea9f6b99577780395101" @@ -6220,7 +6227,7 @@ "checksum": "99c5575cb81828e20a7fe1d205551316" }, "DESCRIPTION": { - "checksum": "2f9e828b7d8a25e828cbeee499dbbaa7" + "checksum": "af40bab3e40cbc539ff9bce986ca58f3" }, "inst/app/www/css/community_metrics.css": { "checksum": "f08eb25c2ee48ac22ed63b0d18994a04" @@ -6463,7 +6470,7 @@ "checksum": "97d1232340e04c53088bc8f814133dcd" }, "NEWS.md": { - "checksum": "a34423a7ebfa4501e7a34e6c97036851" + "checksum": "9c3198ce32b76cd0d81f9dae86c9a092" }, "R/app_config.R": { "checksum": "c2b61f270b86b6833f0ee39c44a1a440" @@ -6502,7 +6509,7 @@ "checksum": "91d23477f73284b74e4f452911214986" }, "R/mod_decision_automation_utils.R": { - "checksum": "c8b8f4676b824effbafddcd136de7998" + "checksum": "505a1d327144bb1153fad488c5c1d7ab" }, "R/mod_decision_automation.R": { "checksum": "e22e1f4c044bc9f11c46a5fcdba33063"