Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e1d1f01
wip
VincentGuyader May 7, 2025
f102d4d
wip
VincentGuyader May 7, 2025
0b4891e
Merge branch 'master' into compact_dockerfile
VincentGuyader Jun 3, 2025
b87d6ca
fix docker build instruction
Jun 3, 2025
429bf35
Update R/add_dockerfiles_renv.R
VincentGuyader Jun 6, 2025
381a935
deal with source_folder deprecation
Jun 27, 2025
7885ffe
Merge branch 'master' into compact_dockerfile
VincentGuyader Jun 27, 2025
a1703b0
Update R/add_dockerfiles_renv.R
VincentGuyader Jun 27, 2025
e4027e1
Update R/add_dockerfiles_renv.R
VincentGuyader Jun 27, 2025
284c282
Update tests/testthat/test-add_dockerfiles_renv.R
VincentGuyader Jun 27, 2025
292d106
Update tests/testthat/test-add_dockerfiles_renv.R
VincentGuyader Jun 27, 2025
aa6492c
Update R/add_dockerfiles_renv.R
VincentGuyader Jun 27, 2025
11d81ae
Update R/add_dockerfiles_renv.R
VincentGuyader Jun 27, 2025
3d819b3
Update tests/testthat/test-add_dockerfiles_renv.R
VincentGuyader Jun 27, 2025
b57c4ee
Update tests/testthat/test-add_dockerfiles_renv.R
VincentGuyader Jun 27, 2025
06bdcfb
Update tests/testthat/test-add_dockerfiles_renv.R
VincentGuyader Jun 27, 2025
ae4e2e2
Update R/add_dockerfiles_renv.R
VincentGuyader Jun 27, 2025
f4c3c61
Update R/add_dockerfiles_renv.R
VincentGuyader Jun 27, 2025
ac6473d
Update R/add_dockerfiles_renv.R
VincentGuyader Jun 27, 2025
0a65753
Update tests/testthat/test-add_dockerfiles_renv.R
VincentGuyader Jun 27, 2025
a85c9da
Update R/add_dockerfiles_renv.R
VincentGuyader Jun 27, 2025
b6ed713
Update R/add_dockerfiles_renv.R
VincentGuyader Jun 27, 2025
2a535b5
Update R/add_dockerfiles_renv.R
VincentGuyader Jun 27, 2025
17d646d
Update DESCRIPTION
VincentGuyader Jun 27, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: golem
Title: A Framework for Robust Shiny Applications
Version: 0.5.1.9012
Version: 0.5.1.9013
Authors@R: c(
person("Colin", "Fay", , "contact@colinfay.me", role = c("cre", "aut"),
comment = c(ORCID = "0000-0001-7343-1846")),
Expand Down Expand Up @@ -42,7 +42,7 @@ Suggests:
crayon,
desc,
devtools,
dockerfiler (>= 0.2.0),
dockerfiler (>= 0.2.5),
fs,
httpuv,
knitr,
Expand Down
7 changes: 7 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

# golem 0.5.1 to 0.6.0



## New features / user-visible changes

- The `add_dockerfile_with_renv_*` function now generates a multi-stage Dockerfile by default (use `single_file = FALSE` to retain the previous behavior).
- The `add_dockerfile_with_renv_*` function now creates a Dockerfile that sets `golem.app.prod = TRUE` by default (use `set_golem.app.prod = FALSE` to retain the previous behavior).

## Breaking change

- The `get_current_config()` has been rework in two ways: (1) it nows either check the `GOLEM_CONFIG_PATH` env var or the default path (inst/golem-config.yml). `{golem}` no longer tries to guess non standard paths, and does a hard fail if the file doesn't exist, (2) the function no longer copy the `config` files from the skeleton if ever the files are not there (@ilyaZar, @LDSamson, #1178)
Expand Down
Loading