Skip to content

Release 2.2.1 #923

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jun 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: dbplyr
Title: A 'dplyr' Back End for Databases
Version: 2.2.0.9000
Version: 2.2.1
Authors@R: c(
person("Hadley", "Wickham", , "hadley@rstudio.com", role = c("aut", "cre")),
person("Maximilian", "Girlich", role = "aut"),
Expand Down
6 changes: 3 additions & 3 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# dbplyr (development version)
# dbplyr 2.2.1

* Querying Oracle databases works again. Unfortunately, the fix requires every
column to be explicitly selected again (@mgirlich, #908).

* `str_c()` is now translated to `||` in Oracle (@mgirlich, #921).

* `semi_join()` and `anti_join()` work again for Spark (@mgirlich, #915).

* `str_c()` is now translated to `||` in Oracle (@mgirlich, #921).

* `sd()`, `var()`, `cor()` and `cov()` now give clear error messages on
databases that don't support them.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ details). Printing it just retrieves the first few rows:
mtcars2 <- tbl(con, "mtcars")
mtcars2
#> # Source: table<mtcars> [?? x 11]
#> # Database: sqlite 3.38.2 [:memory:]
#> # Database: sqlite 3.38.5 [:memory:]
#> mpg cyl disp hp drat wt qsec vs am gear carb
#> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 21 6 160 110 3.9 2.62 16.5 0 1 4 4
Expand Down
43 changes: 32 additions & 11 deletions revdep/README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,35 @@
# Platform

|field |value |
|:--------|:-----------------------------------------------|
|version |R version 4.2.0 (2022-04-22) |
|os |macOS Monterey 12.4 |
|system |x86_64, darwin17.0 |
|ui |RStudio |
|language |(EN) |
|collate |en_US.UTF-8 |
|ctype |en_US.UTF-8 |
|tz |UTC |
|date |2022-06-23 |
|rstudio |2022.06.0-daily+512 Spotted Wakerobin (desktop) |
|pandoc |NA |

# Dependencies

|package |old |new |Δ |
|:-------|:-----|:-----|:--|
|dbplyr |2.2.0 |2.2.1 |* |

# Revdeps

## New problems (7)

|package |version |error |warning |note |
|:-------------------------------------------|:-------|:------|:-------|:--------|
|[dcmodifydb](problems.md#dcmodifydb) |0.2.0 |__+1__ | |1 |
|[dittodb](problems.md#dittodb) |0.1.3 | |__+1__ |1 |
|[dlookr](problems.md#dlookr) |0.5.6 | |__+1__ | |
|[dplyr.teradata](problems.md#dplyrteradata) |0.4.1 |__+1__ | |1 __+1__ |
|[RClickhouse](problems.md#rclickhouse) |0.6.3 | |__+1__ |1 |
|[sparklyr](problems.md#sparklyr) |1.7.6 | |__+1__ |1 |
|[VicmapR](problems.md#vicmapr) |0.1.8 |__+1__ | | |
## Failed to check (6)

|package |version |error |warning |note |
|:--------------------------------|:-------|:--------|:-------|:----|
|bigsnpr |1.9.11 |1 | | |
|duckdb |0.4.0 |1 | | |
|[msPurity](failures.md#mspurity) |1.22.0 |1 __+1__ | |4 |
|NoRCE |? | | | |
|SQLDataFrame |1.10.0 |1 |1 |1 |
|synaptome.db |0.99.8 |1 | | |

33 changes: 6 additions & 27 deletions revdep/cran.md
Original file line number Diff line number Diff line change
@@ -1,34 +1,13 @@
## revdepcheck results

We checked 73 reverse dependencies, comparing R CMD check results across CRAN and dev versions of this package.
We checked 83 reverse dependencies (74 from CRAN + 9 from Bioconductor), comparing R CMD check results across CRAN and dev versions of this package.

* We saw 7 new problems
* We failed to check 0 packages
* We saw 0 new problems
* We failed to check 2 packages

Issues with CRAN packages are summarised below.

### New problems
(This reports the first line of each new failure)

* dcmodifydb
checking tests ... ERROR

* dittodb
checking re-building of vignette outputs ... WARNING

* dlookr
checking re-building of vignette outputs ... WARNING

* dplyr.teradata
checking tests ... ERROR
checking R code for possible problems ... NOTE

* RClickhouse
checking dependencies in R code ... WARNING

* sparklyr
checking dependencies in R code ... WARNING

* VicmapR
checking tests ... ERROR
### Failed to check

* bigsnpr (NA)
* duckdb (NA)
Loading