Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: rhino
Title: A Framework for Enterprise Shiny Applications
Version: 1.10.1.9005
Version: 1.11.0
Authors@R:
c(
person("Kamil", "Żyła", role = c("aut", "cre"), email = "opensource+kamil@appsilon.com"),
Expand Down
4 changes: 2 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# rhino (development version)
# rhino 1.11.0

1. Added destructure operator `%<-%`.
2. `test_r` accepts additional arguments passed to `testthat::test_dir`.
Expand Down Expand Up @@ -49,7 +49,7 @@ See _[How-to: Rhino 1.7 Migration Guide](https://appsilon.github.io/rhino/articl
when using a `legacy_entrypoint` ([#395](https://github.com/Appsilon/rhino/issues/395)).
* Force evaluation of arguments in higher-order functions
to avoid unexpected behavior due to lazy evaluation (internal).
3. Add support for [`shiny.autoreload`](https://shiny.posit.co/r/reference/shiny/latest/shinyoptions).
3. Add support for [`shiny.autoreload`](https://shiny.posit.co/r/reference/shiny/latest/shinyoptions.html).

# [rhino 1.6.0](https://github.com/Appsilon/rhino/releases/tag/v1.6.0)

Expand Down
3 changes: 2 additions & 1 deletion R/destructure.R
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,12 @@
#'
#' # Can be used with pipe operations
#' # Note: The piped expression must be wrapped in brackets
#' \dontrun{
#' c(value) %<-% (
#' 123 |>
#' list(value = _)
#' )
#'
#' }
#' @export
`%<-%` <- function(lhs, rhs) {
# LHS validation
Expand Down
3 changes: 2 additions & 1 deletion man/grapes-set-grapes.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vignettes/faq.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ You can run a Rhino application exactly the same as a regular Shiny app:

Call `options(shiny.autoreload = TRUE)` in your R session.
Shiny will monitor the app directory and reload all connected sessions if any changes are detected.
More details can be found in [Shiny reference](https://shiny.posit.co/r/reference/shiny/latest/shinyoptions).
More details can be found in [Shiny reference](https://shiny.posit.co/r/reference/shiny/latest/shinyoptions.html).

Note: you have to use `shiny::runApp()` for the autoreload to work - using `rhino::app()` _won't_ work.
For context see [issue #3964 in Shiny](https://github.com/rstudio/shiny/issues/3964).
Expand Down
Loading