@@ -15,21 +15,24 @@ def rstudio_base_scripts(r_version):
15
15
shiny_proxy_version = "1.3"
16
16
shiny_sha256sum = "0fa40054f038de464a26f3f8c40180a072228454762b7a12ed50568b3256c236"
17
17
18
- # RStudio server has different builds based on wether OpenSSL 3 or 1.1 is available in the base
19
- # image. 3 is present Jammy+, 1.1 until then. Instead of hardcoding URLs based on distro, we actually
20
- # check for the dependency itself directly in the code below. You can find these URLs in
21
- # https://posit.co/download/rstudio-server/, toggling between Ubuntu 22 (for openssl3) vs earlier versions (openssl 1.1)
18
+ # RStudio server has different builds based on wether OpenSSL 3 or 1.1 is available.
19
+ # OpenSSL 3 is present from Ubuntu 22.04 LTS (Jammy).
20
+ # OpenSSL 1.1 is present until Ubuntu 21.10.
21
+ # Instead of hardcoding URLs based on distro,
22
+ # we actually check for the dependency itself directly in the code below.
23
+ # You can find these URLs in https://posit.co/download/rstudio-server/,
24
+ # toggling between Ubuntu 22 (for openssl3) vs earlier versions (openssl 1.1)
22
25
# you may forget about openssl, but openssl never forgets you.
23
- rstudio_openssl3_url = "https://download2.rstudio.org/server/jammy/amd64/rstudio-server-2022 .12.0-353 -amd64.deb"
26
+ rstudio_openssl3_url = "https://download2.rstudio.org/server/jammy/amd64/rstudio-server-2024 .12.0-467 -amd64.deb"
24
27
rstudio_openssl3_sha256sum = (
25
- "a5aa2202786f9017a6de368a410488ea2e4fc6c739f78998977af214df0d6288 "
28
+ "1493188cdabcc1047db27d1bd0e46947e39562cbd831158c7812f88d80e742b3 "
26
29
)
27
30
28
- rstudio_openssl1_url = "https://download2.rstudio.org/server/bionic /amd64/rstudio-server-2022 .12.0-353 -amd64.deb"
31
+ rstudio_openssl1_url = "https://download2.rstudio.org/server/focal /amd64/rstudio-server-2024 .12.0-467 -amd64.deb"
29
32
rstudio_openssl1_sha256sum = (
30
- "bb88e37328c304881e60d6205d7dac145525a5c2aaaf9da26f1cb625b7d47e6e "
33
+ "052540a8df135d9ce7569ddc2fc9637671103934179691bc3e43298336fc3a8e "
31
34
)
32
- rsession_proxy_version = "2.2 .0"
35
+ rsession_proxy_version = "2.3 .0"
33
36
34
37
return [
35
38
(
0 commit comments