Hedley
Hedley
[Showcase Mode](https://shiny.rstudio.com/articles/debugging.html) appears only to trace code in the top-level `ui` and `server` components of a Shiny app, and not in the app's R/ directory (where you would find `global.R`...
Addresses https://github.com/rstudio/bslib/issues/360. Something like this?
Extending the bslib themes with some custom CSS seems like a common use case which I thought would be documented early. It took me quite a long time to find...
Closes https://github.com/daattali/colourpicker/issues/53. Uses latest jQuery 3.6.1 maintenance release from https://github.com/jquery/jquery/releases. The only testing I did was to call `colourWidget("red", palette = "limited", allowedCols = c("yellow", "red", "#123ABC"))` (the example from...
The version of jQuery bundled in this package, 1.11.3, has several XSS vulnerabilities, e.g., [CVE-2020-11023](https://nvd.nist.gov/vuln/detail/CVE-2020-11023). Would you accept a PR updating it to 3.x, perhaps using [jquerylib](https://github.com/rstudio/jquerylib)? I'm not sure...
There is an unpatched potential XSS vulnerability in bootstrap-switch source, see for reference https://github.com/bttstrp/bootstrap-switch/pull/730. The upstream appears not to be actively maintained (https://github.com/Bttstrp/bootstrap-switch/issues/717), so may not be sustainable to continue...
The included version of [underscore.js](https://github.com/jeroen/V8/blob/master/inst/js/underscore.js), 1.7.0, is vulnerable to an arbitrary code injection attack [CVE-2021-23358](https://nvd.nist.gov/vuln/detail/CVE-2021-23358). This is [fixed](https://github.com/jashkenas/underscore/pull/2917) is underscore.js 1.12.1. I suggest we update to the latest underscore release,...
Related to https://github.com/rstudio/shiny/issues/3627. - `shiny::renderDataTable` has been deprecated since shiny 0.11.1, but the deprecation warning was only shown in dev mode. - This PR turns on that deprecation message by...
- Download jQuery 3.6.0 from source (please run `tools/update-jquery.R` yourself to verify that the source is correct). This method of updating dependencies is based on what Shiny currently does (e.g.,...