Skip to content

Commit

Permalink
fix: Update software versions (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
csgillespie authored Feb 22, 2024
1 parent 522aa07 commit 0842c1e
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 10 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: audit.base
Title: Base package for Posit Checks
Version: 0.6.11
Version: 0.6.12
Authors@R:
person("Jumping", "Rivers", , "[email protected]", role = c("aut", "cre"))
Description: Base package for sharing classes between posit audit
Expand Down Expand Up @@ -31,4 +31,4 @@ Remotes:
Config/testthat/edition: 3
Encoding: UTF-8
LazyData: true
RoxygenNote: 7.2.3
RoxygenNote: 7.3.1
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# audit.base 0.6.12 _2024-02-22_
- fix: Update software version numbers

# audit.base 0.6.11 _2024-01-24_
- fix: Return distinct server headers

Expand Down
4 changes: 2 additions & 2 deletions R/create_software_tibble.R
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ create_software_tibble = function() {
version = c(r, py, quarto))
# Use package_version to get better sorting
software_tibble %>%
dplyr::mutate(tmp_version = package_version(version)) %>%
dplyr::arrange(software, dplyr::desc(tmp_version)) %>%
dplyr::mutate(tmp_version = package_version(.data$version)) %>%
dplyr::arrange(.data$software, dplyr::desc(.data$tmp_version)) %>%
dplyr::select(-"tmp_version")
}

Expand Down
18 changes: 18 additions & 0 deletions inst/extdata/versions/connect.csv
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
#https://docs.posit.co/connect/news/
version,date,cve
2024.01.0,2024-01-25,CVE-2023-48795
2024.01.0,2024-01-25,CVE-2023-45683
2023.12.0,2023-12-18,CVE-2023-45283
2023.12.0,2023-12-18,CVE-2023-45284
2023.12.0,2023-12-18,CVE-2023-39326
2023.12.0,2023-12-18,CVE-2023-45285
2023.10.0,2023-10-31,CVE-2023-39323
2023.10.0,2023-10-31,CVE-2023-39325
2023.10.0,2023-10-31,CVE-2023-44487
2023.09.0,2023-09-23,CVE-2023-29409
2023.09.0,2023-09-23,CVE-2023-39318
2023.09.0,2023-09-23,CVE-2023-39319
2023.09.0,2023-09-23,CVE-2023-39320
2023.09.0,2023-09-23,CVE-2023-39321
2023.09.0,2023-09-23,CVE-2023-39322
2023.09.0,2023-09-23,CVE-2023-26117
2023.09.0,2023-09-23,CVE-2023-26116
2023.09.0,2023-09-23,CVE-2023-26118
2023.07.0,2023-07-27,CVE-2023-29406
2023.06.0,2023-06-26,CVE-2023-29401
2023.06.0,2023-06-26,CVE-2023-29402
Expand Down
1 change: 1 addition & 0 deletions inst/extdata/versions/drivers.csv
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# https://docs.posit.co/pro-drivers/documentation/
version,date,cve
2023.12.1,2023-11-03,
2023.05.0,2023-05-1,
2022.11.0,2022-11-1,
2021.10.0,2021-10-1,
Expand Down
8 changes: 4 additions & 4 deletions inst/extdata/versions/software.csv
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
software,version
python,3.12.0
python,3.11.6
python,3.12.2
python,3.11.8
python,3.10.13
python,3.9.18
python,3.8.18
python,3.7.17
quarto,1.3.450
quarto,1.4.550
quarto,1.2.475
quarto,1.1.189
quarto,1.0.38
r,4.3.1
r,4.3.2
r,4.2.3
r,4.1.3
r,4.0.5
Expand Down
7 changes: 6 additions & 1 deletion inst/extdata/versions/workbench.csv
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# https://docs.posit.co/ide/news/
version,date,cve
2023.06.1,2022-07-07,
2023.12.1,2024-01-29,
2023.12.0,2023-12-15,
2023.09.1,2023-10-17,
2023.09.0,2023-09-25,
2023.06.2,2023-08-24,
2023.06.1,2023-07-07,
2023.06.0,2023-06-08,
2023.03.2,2023-06-12,
2023.03.1,2023-05-12,
Expand Down
1 change: 0 additions & 1 deletion uatBase.Rproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,5 @@ AutoAppendNewline: Yes
StripTrailingWhitespace: Yes

BuildType: Package
PackageUseDevtools: Yes
PackageInstallArgs: --no-multiarch --with-keep.source
PackageRoxygenize: rd,collate,namespace,vignette

0 comments on commit 0842c1e

Please sign in to comment.