diff --git a/404.html b/404.html index aed3c4848..c6f6e3425 100644 --- a/404.html +++ b/404.html @@ -33,7 +33,7 @@ diff --git a/CONTRIBUTING.html b/CONTRIBUTING.html index 024e0db95..80cd88cc1 100644 --- a/CONTRIBUTING.html +++ b/CONTRIBUTING.html @@ -17,7 +17,7 @@ diff --git a/LICENSE-text.html b/LICENSE-text.html index c413e2e59..a818ecef9 100644 --- a/LICENSE-text.html +++ b/LICENSE-text.html @@ -17,7 +17,7 @@ diff --git a/README-npm.html b/README-npm.html index c1c287a58..8d222124e 100644 --- a/README-npm.html +++ b/README-npm.html @@ -17,7 +17,7 @@ diff --git a/TODO-promises.html b/TODO-promises.html index 5554886fc..3f12dbdff 100644 --- a/TODO-promises.html +++ b/TODO-promises.html @@ -17,7 +17,7 @@ diff --git a/authors.html b/authors.html index f24c86569..d7f07efe5 100644 --- a/authors.html +++ b/authors.html @@ -17,7 +17,7 @@ @@ -195,13 +195,13 @@
Chang W, Cheng J, Allaire J, Sievert C, Schloerke B, Aden-Buie G, Xie Y, Allen J, McPherson J, Dipert A, Borges B (2025). shiny: Web Application Framework for R. -R package version 1.11.1.9001, https://shiny.posit.co/. +R package version 1.12.0, https://shiny.posit.co/.
@Manual{,
title = {shiny: Web Application Framework for R},
author = {Winston Chang and Joe Cheng and JJ Allaire and Carson Sievert and Barret Schloerke and Garrick Aden-Buie and Yihui Xie and Jeff Allen and Jonathan McPherson and Alan Dipert and Barbara Borges},
year = {2025},
- note = {R package version 1.11.1.9001},
+ note = {R package version 1.12.0},
url = {https://shiny.posit.co/},
}
diff --git a/index.html b/index.html
index 2402b3bea..71b2b0850 100644
--- a/index.html
+++ b/index.html
@@ -34,7 +34,7 @@
diff --git a/news/index.html b/news/index.html
index 8349642e2..66fb2cc9c 100644
--- a/news/index.html
+++ b/news/index.html
@@ -17,7 +17,7 @@
@@ -48,9 +48,9 @@
Shiny now supports OpenTelemetry via {otel}. By default, if otel::is_tracing_enabled() returns TRUE, then shiny records all OpenTelemetry spans. See {otelsdk}’s Collecting Telemetry Data for more details on configuring OpenTelemetry. (#4269, #4300)
Supported values for options(shiny.otel.bind) (which defaults to Sys.getenv("SHINY_OTEL_BIND") if set) are:
All OpenTelemetry logs and spans will contain a session.id attribute containing the active session ID.
updateActionButton() and updateActionLink() now accept values other than shiny::icon() for the icon argument (e.g., fontawesome::fa(), bsicons::bs_icon(), etc). (#4249)Showcase mode now uses server-side markdown rendering with the commonmark package, providing support for GitHub Flavored Markdown features (tables, strikethrough, autolinks, task lists). While most existing README.md files should continue to work as expected, some minor rendering differences may occur due to the change in markdown processor. (#4202, #4201)
debounce(), reactiveFileReader(), reactivePoll(), reactiveValues(), and throttle() now attempt to retrieve the assigned name for the default label if the srcref is available. If a value cannot easily be produced, a default label is used instead. (#4269, #4300)
updateSelectizeInput() no longer creates multiple remove buttons when options = list(plugins="remove_button") is used. (#4275)
actionButton() and actionLink() now wraps label and icon in an additional HTML container element. This allows updateActionButton() and updateActionLink() to distinguish between the label and icon when making updates, and allows spacing between label and icon to be more easily customized via CSS.Upgrade FontAwesome from 4.7.0 to 5.3.1 and made icon tags browsable, which means they will display in a web browser or RStudio viewer by default (#2186). Note that if your application or library depends on FontAwesome directly using custom CSS, you may need to make some or all of the changes recommended in Upgrade from Version 4. Font Awesome icons can also now be used in static R Markdown documents.
Upgrade FontAwesome from 4.7.0 to 5.3.1 and made icon tags browsable, which means they will display in a web browser or RStudio viewer by default (#2186). Note that if your application or library depends on FontAwesome directly using custom CSS, you may need to make some or all of the changes recommended in Upgrade from Version 4. Font Awesome icons can also now be used in static R Markdown documents.
Address #174: Added datesdisabled and daysofweekdisabled as new parameters to dateInput(). This resolves #174 and exposes the underlying arguments of Bootstrap Datepicker. datesdisabled expects a character vector with values in yyyy/mm/dd format and daysofweekdisabled expects an integer vector with day interger ids (Sunday=0, Saturday=6). The default value for both is NULL, which leaves all days selectable. Thanks, @nathancday! (#2147)
Support for selecting variables of a data frame with the output values to be used within tidy evaluation. Added functions: varSelectInput, varSelectizeInput, updateVarSelectInput, updateVarSelectizeInput. (#2091)
Addressed #2042: dates outside of min/max date range are now a lighter shade of grey to highlight the allowed range. (#2087)