diff --git a/404.html b/404.html index d23196f37..cefcce838 100644 --- a/404.html +++ b/404.html @@ -39,7 +39,7 @@ shiny - 1.7.4.1 + 1.7.4.9002 diff --git a/CONTRIBUTING.html b/CONTRIBUTING.html index 37a62b706..e60341e60 100644 --- a/CONTRIBUTING.html +++ b/CONTRIBUTING.html @@ -17,7 +17,7 @@ shiny - 1.7.4.1 + 1.7.4.9002 diff --git a/LICENSE-text.html b/LICENSE-text.html index 2e0ecc8dc..02803b40f 100644 --- a/LICENSE-text.html +++ b/LICENSE-text.html @@ -17,7 +17,7 @@ shiny - 1.7.4.1 + 1.7.4.9002 diff --git a/TODO-promises.html b/TODO-promises.html index 9ff0817e3..3d636fa8e 100644 --- a/TODO-promises.html +++ b/TODO-promises.html @@ -17,7 +17,7 @@ shiny - 1.7.4.1 + 1.7.4.9002 diff --git a/apple-touch-icon-120x120.png b/apple-touch-icon-120x120.png index 8d9b32629..0f38218bf 100644 Binary files a/apple-touch-icon-120x120.png and b/apple-touch-icon-120x120.png differ diff --git a/apple-touch-icon-152x152.png b/apple-touch-icon-152x152.png index fc58c3131..75d53e0f0 100644 Binary files a/apple-touch-icon-152x152.png and b/apple-touch-icon-152x152.png differ diff --git a/apple-touch-icon-180x180.png b/apple-touch-icon-180x180.png index 07dade617..877264174 100644 Binary files a/apple-touch-icon-180x180.png and b/apple-touch-icon-180x180.png differ diff --git a/apple-touch-icon-60x60.png b/apple-touch-icon-60x60.png index b9a032b74..1b541f95d 100644 Binary files a/apple-touch-icon-60x60.png and b/apple-touch-icon-60x60.png differ diff --git a/apple-touch-icon-76x76.png b/apple-touch-icon-76x76.png index 85ee65db3..e9f55a732 100644 Binary files a/apple-touch-icon-76x76.png and b/apple-touch-icon-76x76.png differ diff --git a/apple-touch-icon.png b/apple-touch-icon.png index a6b43c528..143931c9c 100644 Binary files a/apple-touch-icon.png and b/apple-touch-icon.png differ diff --git a/authors.html b/authors.html index 594350566..7dbe4765f 100644 --- a/authors.html +++ b/authors.html @@ -17,7 +17,7 @@ shiny - 1.7.4.1 + 1.7.4.9002 @@ -199,13 +199,13 @@

Chang W, Cheng J, Allaire J, Sievert C, Schloerke B, Xie Y, Allen J, McPherson J, Dipert A, Borges B (2023). shiny: Web Application Framework for R. -R package version 1.7.4.1, https://shiny.posit.co/. +R package version 1.7.4.9002, 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 Yihui Xie and Jeff Allen and Jonathan McPherson and Alan Dipert and Barbara Borges},
   year = {2023},
-  note = {R package version 1.7.4.1},
+  note = {R package version 1.7.4.9002},
   url = {https://shiny.posit.co/},
 }
diff --git a/favicon-16x16.png b/favicon-16x16.png index 9ac224160..aa6adc06b 100644 Binary files a/favicon-16x16.png and b/favicon-16x16.png differ diff --git a/favicon-32x32.png b/favicon-32x32.png index 466be9c8b..6cd8f9b78 100644 Binary files a/favicon-32x32.png and b/favicon-32x32.png differ diff --git a/index.html b/index.html index ed997caa7..853348da3 100644 --- a/index.html +++ b/index.html @@ -43,7 +43,7 @@ shiny - 1.7.4.1 + 1.7.4.9002 @@ -122,6 +122,11 @@

For help with learning fundamental Shiny programming concepts, check out the Mastering Shiny book and the Shiny Tutorial. The former is currently more up-to-date with modern Shiny features, whereas the latter takes a deeper, more visual, dive into fundamental concepts.

+

Join the conversation +

+

If you want to chat about Shiny, meet other developers, or help us decide what to work on next, join us on Discord.

+
+

Getting Help

To ask a question about Shiny, please use the RStudio Community website.

diff --git a/news/index.html b/news/index.html index da35d7bfa..e1f85a229 100644 --- a/news/index.html +++ b/news/index.html @@ -17,7 +17,7 @@ shiny - 1.7.4.1 + 1.7.4.9002
@@ -47,6 +47,28 @@ Source: NEWS.md +
+ +
+

Full changelog

+
+

Breaking changes

+
+
+

New features and improvements

+
  • Closed #789: Dynamic UI is now rendered asynchronously, thanks in part to the newly exported Shiny.renderDependenciesAsync(), Shiny.renderHtmlAsync(), and Shiny.renderContentAsync(). Importantly, this means <script> tags are now loaded asynchronously (the old way used XMLHttpRequest, which is synchronous). In addition, Shiny now manages a queue of async tasks (exposed via Shiny.shinyapp.taskQueue) so that order of execution is preserved. (#3666)

  • +
  • For reactiveValues() objects, whenever the $names() or $values() methods are called, the keys are now returned in the order that they were inserted. (#3774)

  • +
  • Map objects are now initialized at load time instead of build time. This avoids potential problems that could arise from storing fastmap objects into the built Shiny package. (#3775)

  • +
  • Allow for shiny:::toJSON() to respect if digits= has class "AsIs" which represents if use_signif= is TRUE or FALSE. This is useful for testing to keep the digits smaller. For example, setting options(shiny.json.digits = 4) will save 4 digits after the decimal, rather than the default of I(16) which will save 16 significant digits. (#3819)

  • +
+
+

Bug fixes

+
  • Fixed #3771: Sometimes the error ion.rangeSlider.min.js: i.stopPropagation is not a function would appear in the JavaScript console. (#3772)

  • +
  • Fixed #3833: When width is provided to textAreaInput(), we now correctly set the width of the <textarea> element. (#3838)

  • +
  • Fixes #3840: updateSliderInput() now warns when attempting to set invalid min, max, or value values. Sending an invalid update message to an input no longer causes other update messages to fail. (#3843)

  • +
+
+
diff --git a/pkgdown.yml b/pkgdown.yml index 073fcdf17..b4783bf31 100644 --- a/pkgdown.yml +++ b/pkgdown.yml @@ -2,5 +2,5 @@ pandoc: 3.1.2 pkgdown: 2.0.7 pkgdown_sha: ~ articles: {} -last_built: 2023-07-07T13:39Z +last_built: 2023-07-07T13:43Z diff --git a/reference/MockShinySession.html b/reference/MockShinySession.html index 8c147bf7e..de4129cac 100644 --- a/reference/MockShinySession.html +++ b/reference/MockShinySession.html @@ -28,7 +28,7 @@ of testServer()."> shiny - 1.7.4.1 + 1.7.4.9002
diff --git a/reference/NS.html b/reference/NS.html index 4ca1126a4..e94374611 100644 --- a/reference/NS.html +++ b/reference/NS.html @@ -19,7 +19,7 @@ modules. See https://shiny.rstudio.com/articles/modules.html."> shiny - 1.7.4.1 + 1.7.4.9002
diff --git a/reference/Progress.html b/reference/Progress.html index edf603d40..32ed4928b 100644 --- a/reference/Progress.html +++ b/reference/Progress.html @@ -18,7 +18,7 @@ Reporting progress (object-oriented API)"> shiny - 1.7.4.1 + 1.7.4.9002 diff --git a/reference/absolutePanel.html b/reference/absolutePanel.html index 99792fd16..04197582d 100644 --- a/reference/absolutePanel.html +++ b/reference/absolutePanel.html @@ -17,7 +17,7 @@ shiny - 1.7.4.1 + 1.7.4.9002 diff --git a/reference/actionButton.html b/reference/actionButton.html index 3fa66ece9..9a4885026 100644 --- a/reference/actionButton.html +++ b/reference/actionButton.html @@ -18,7 +18,7 @@ each time it is pressed.">Insert and remove UI objects — insertUI • shiny