Skip to content

Commit dfe359c

Browse files
committed
shiny v1.7.5.1
1 parent 0b97ee1 commit dfe359c

File tree

13 files changed

+23
-16
lines changed

13 files changed

+23
-16
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: shiny
22
Type: Package
33
Title: Web Application Framework for R
4-
Version: 1.7.5
4+
Version: 1.7.5.1
55
Authors@R: c(
66
person("Winston", "Chang", role = c("aut", "cre"), email = "[email protected]", comment = c(ORCID = "0000-0002-1576-2126")),
77
person("Joe", "Cheng", role = "aut", email = "[email protected]"),

NEWS.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# shiny 1.7.5.1
2+
3+
## Bug fixes
4+
5+
* On r-devel (R > 4.3.1), `isTruthy(NULL)` now returns `FALSE` (as it does with older versions of R). (#3906)
6+
17
# shiny 1.7.5
28

39
## Possibly breaking changes

R/utils.R

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1240,14 +1240,12 @@ dotloop <- function(fun_, ...) {
12401240
#' @param x An expression whose truthiness value we want to determine
12411241
#' @export
12421242
isTruthy <- function(x) {
1243+
if (is.null(x))
1244+
return(FALSE)
12431245
if (inherits(x, 'try-error'))
12441246
return(FALSE)
1245-
12461247
if (!is.atomic(x))
12471248
return(TRUE)
1248-
1249-
if (is.null(x))
1250-
return(FALSE)
12511249
if (length(x) == 0)
12521250
return(FALSE)
12531251
if (all(is.na(x)))

inst/www/shared/shiny-autoreload.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

inst/www/shared/shiny-showcase.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

inst/www/shared/shiny-showcase.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

inst/www/shared/shiny-testmode.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

inst/www/shared/shiny.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! shiny 1.7.5 | (c) 2012-2023 RStudio, PBC. | License: GPL-3 | file LICENSE */
1+
/*! shiny 1.7.5.1 | (c) 2012-2023 RStudio, PBC. | License: GPL-3 | file LICENSE */
22
"use strict";
33
(function() {
44
var __create = Object.create;
@@ -19196,7 +19196,7 @@
1919619196
var windowShiny2;
1919719197
function setShiny(windowShiny_) {
1919819198
windowShiny2 = windowShiny_;
19199-
windowShiny2.version = "1.7.5";
19199+
windowShiny2.version = "1.7.5.1";
1920019200
var _initInputBindings = initInputBindings(), inputBindings = _initInputBindings.inputBindings, fileInputBinding2 = _initInputBindings.fileInputBinding;
1920119201
var _initOutputBindings = initOutputBindings(), outputBindings = _initOutputBindings.outputBindings;
1920219202
setFileInputBinding(fileInputBinding2);

inst/www/shared/shiny.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

inst/www/shared/shiny.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)