Skip to content

Commit 95e3adc

Browse files
authored
Merge pull request #1399 from rgaiacs/1396-update-rstudio
Upgrade RStudio to 2024.12
2 parents 0550173 + fa016ea commit 95e3adc

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

repo2docker/buildpacks/_r_base.py

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,24 @@ def rstudio_base_scripts(r_version):
1515
shiny_proxy_version = "1.3"
1616
shiny_sha256sum = "0fa40054f038de464a26f3f8c40180a072228454762b7a12ed50568b3256c236"
1717

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)
2225
# 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"
2427
rstudio_openssl3_sha256sum = (
25-
"a5aa2202786f9017a6de368a410488ea2e4fc6c739f78998977af214df0d6288"
28+
"1493188cdabcc1047db27d1bd0e46947e39562cbd831158c7812f88d80e742b3"
2629
)
2730

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"
2932
rstudio_openssl1_sha256sum = (
30-
"bb88e37328c304881e60d6205d7dac145525a5c2aaaf9da26f1cb625b7d47e6e"
33+
"052540a8df135d9ce7569ddc2fc9637671103934179691bc3e43298336fc3a8e"
3134
)
32-
rsession_proxy_version = "2.2.0"
35+
rsession_proxy_version = "2.3.0"
3336

3437
return [
3538
(

0 commit comments

Comments
 (0)