Skip to content

Commit 72f89aa

Browse files
authored
v1.2.1 release candidate (#146)
1 parent d754a21 commit 72f89aa

File tree

8 files changed

+111
-48
lines changed

8 files changed

+111
-48
lines changed

DESCRIPTION

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Package: crosstalk
22
Type: Package
33
Title: Inter-Widget Interactivity for HTML Widgets
4-
Version: 1.2.0.9000
4+
Version: 1.2.1
55
Authors@R: c(
6-
person("Joe", "Cheng", role = "aut", email = "joe@rstudio.com"),
6+
person("Joe", "Cheng", role = "aut", email = "joe@posit.co"),
77
person("Carson", "Sievert", role = c("aut", "cre"),
8-
email = "carson@rstudio.com", comment = c(ORCID = "0000-0002-4958-2844")),
9-
person(family = "RStudio", role = "cph"),
8+
email = "carson@posit.co", comment = c(ORCID = "0000-0002-4958-2844")),
9+
person("Posit Software, PBC", role = c("cph", "fnd")),
1010
person(family = "jQuery Foundation", role = "cph",
1111
comment = "jQuery library and jQuery UI library"),
1212
person(family = "jQuery contributors", role = c("ctb", "cph"),
@@ -45,7 +45,7 @@ Suggests:
4545
testthat (>= 2.1.0),
4646
sass,
4747
bslib
48-
URL: https://rstudio.github.io/crosstalk/
48+
URL: https://rstudio.github.io/crosstalk/, https://github.com/rstudio/crosstalk
4949
BugReports: https://github.com/rstudio/crosstalk/issues
50-
RoxygenNote: 7.1.2
50+
RoxygenNote: 7.2.3
5151
Encoding: UTF-8

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## crosstalk 1.2.0.9000
1+
## crosstalk 1.2.1
22

33
### Bug fixes
44

R/crosstalk.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ crosstalkLibs <- function() {
3333
#' ClientValue object
3434
#'
3535
#' @description
36-
#' An object that can be used in a \href{https://shiny.rstudio.com/}{Shiny} server
36+
#' An object that can be used in a \href{https://shiny.posit.co/}{Shiny} server
3737
#' function to get or set a crosstalk variable that exists on the client. The
3838
#' client copy of the variable is the canonical copy, so there is no direct
3939
#' "set" method that immediately changes the value; instead, there is a

man/ClientValue.Rd

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

man/SharedData.Rd

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

revdep/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
11
# Revdeps
22

3+
## New problems (1)
4+
5+
|package |version |error |warning |note |
6+
|:--------------|:-------|:------|:-------|:----|
7+
|[clinDataReview](problems.md#clindatareview)|1.4.0 |__+1__ | |1 |
8+

revdep/cran.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
## revdepcheck results
22

3-
We checked 21 reverse dependencies, comparing R CMD check results across CRAN and dev versions of this package.
3+
We checked 26 reverse dependencies, comparing R CMD check results across CRAN and dev versions of this package.
44

5-
* We saw 0 new problems
5+
* We saw 1 new problems
66
* We failed to check 0 packages
77

8+
Issues with CRAN packages are summarised below.
9+
10+
### New problems
11+
(This reports the first line of each new failure)
12+
13+
* clinDataReview
14+
checking tests ... ERROR
15+

revdep/problems.md

Lines changed: 50 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,50 @@
1-
*Wow, no problems at all. :)*
1+
# clinDataReview
2+
3+
<details>
4+
5+
* Version: 1.4.0
6+
* GitHub: https://github.com/openanalytics/clinDataReview
7+
* Source code: https://github.com/cran/clinDataReview
8+
* Date/Publication: 2023-02-24 14:30:02 UTC
9+
* Number of recursive dependencies: 131
10+
11+
Run `revdepcheck::cloud_details(, "clinDataReview")` for more info
12+
13+
</details>
14+
15+
## Newly broken
16+
17+
* checking tests ... ERROR
18+
```
19+
Running ‘testthat.R’
20+
Running the tests in ‘tests/testthat.R’ failed.
21+
Complete output:
22+
> library(testthat)
23+
> library(clinDataReview)
24+
>
25+
> test_check("clinDataReview")
26+
adding: report.html (deflated 63%)
27+
adding: report_dependencies127959c2c4e3/ (stored 0%)
28+
adding: report_dependencies127959c2c4e3/file127942118d58.html (deflated 8%)
29+
...
30+
── Error ('test_timeProfileIntervalPlot.R:179:3'): A selection variable is correctly included in the time interval plot ──
31+
Error: Argument 'txt' must be a JSON string, URL or file.
32+
Backtrace:
33+
34+
1. └─jsonlite::fromJSON(...) at test_timeProfileIntervalPlot.R:179:3
35+
2. └─jsonlite:::stop("Argument 'txt' must be a JSON string, URL or file.")
36+
37+
[ FAIL 4 | WARN 2 | SKIP 29 | PASS 479 ]
38+
Error: Test failures
39+
Execution halted
40+
```
41+
42+
## In both
43+
44+
* checking installed package size ... NOTE
45+
```
46+
installed size is 5.9Mb
47+
sub-directories of 1Mb or more:
48+
doc 4.3Mb
49+
```
50+

0 commit comments

Comments
 (0)