diff --git a/DESCRIPTION b/DESCRIPTION index b7a6c87..0a795e0 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -4,7 +4,7 @@ Description: Simplified document database access and manipulation, providing a common API across supported 'NoSQL' databases 'Elasticsearch', 'CouchDB', 'MongoDB' as well as 'SQLite/JSON1', 'PostgreSQL', and 'DuckDB'. -Version: 0.10.3 +Version: 0.10.4 Authors@R: c( person(given = "Ralf", family = "Herold", diff --git a/NEWS.md b/NEWS.md index d1239fc..aef2311 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,8 @@ +# nodbi 0.10.4 + +## Bug fix +* re-adding field formatting for `docdb_query(src, key, query, listfields = TRUE, limit = )` + # nodbi 0.10.3 ## Bug fix diff --git a/README.Rmd b/README.Rmd index f95045a..be90ac9 100644 --- a/README.Rmd +++ b/README.Rmd @@ -333,13 +333,14 @@ result[rev(order(result$elapsed)), ] Every database backend is subjected to identical tests, see [core-nodbi.R](https://github.com/ropensci/nodbi/blob/master/tests/testthat/core-nodbi.R). ```{r testing_and_coverage} -# 2024-03-03 +# 2024-03-04 tmp <- testthat::test_local() +# [...] # -# ══ Results ═══════════════════════════════════════════════════════════════════════════════════════════════ -# Duration: 258.9 s +# ══ Results ═════════════════════════════════════════════════════════════════════════════════════════════ +# Duration: 344.5 s # -# ── Skipped tests (7) ───────────────────────────────────────────────────────────────────────────────────── +# ── Skipped tests (7) ─────────────────────────────────────────────────────────────────────────────────── # • Testing for auto disconnect and shutdown not relevant (3): test-couchdb.R:26:3, test-elastic.R:21:3, # test-mongodb.R:24:3 # • Testing for parallel writes not possible or implemented (4): test-couchdb.R:26:3, test-duckdb.R:22:3, @@ -347,16 +348,16 @@ tmp <- testthat::test_local() # # [ FAIL 0 | WARN 0 | SKIP 7 | PASS 1018 ] -# 2024-03-03 +# 2024-03-04 covr::package_coverage(path = ".", type = "tests") -# nodbi Coverage: 95.57% +# nodbi Coverage: 95.58% # R/src_duckdb.R: 76.92% # R/src_mongo.R: 91.30% # R/update.R: 92.95% # R/zzz.R: 94.77% # R/src_postgres.R: 95.65% # R/create.R: 96.09% -# R/query.R: 96.43% +# R/query.R: 96.44% # R/delete.R: 97.96% # R/get.R: 98.77% # R/exists.R: 100.00% diff --git a/README.md b/README.md index fde6348..a63d7ef 100644 --- a/README.md +++ b/README.md @@ -365,13 +365,14 @@ Every database backend is subjected to identical tests, see [core-nodbi.R](https://github.com/ropensci/nodbi/blob/master/tests/testthat/core-nodbi.R). ``` r -# 2024-03-03 +# 2024-03-04 tmp <- testthat::test_local() +# [...] # -# ══ Results ═══════════════════════════════════════════════════════════════════════════════════════════════ -# Duration: 258.9 s +# ══ Results ═════════════════════════════════════════════════════════════════════════════════════════════ +# Duration: 344.5 s # -# ── Skipped tests (7) ───────────────────────────────────────────────────────────────────────────────────── +# ── Skipped tests (7) ─────────────────────────────────────────────────────────────────────────────────── # • Testing for auto disconnect and shutdown not relevant (3): test-couchdb.R:26:3, test-elastic.R:21:3, # test-mongodb.R:24:3 # • Testing for parallel writes not possible or implemented (4): test-couchdb.R:26:3, test-duckdb.R:22:3, @@ -379,16 +380,16 @@ tmp <- testthat::test_local() # # [ FAIL 0 | WARN 0 | SKIP 7 | PASS 1018 ] -# 2024-03-03 +# 2024-03-04 covr::package_coverage(path = ".", type = "tests") -# nodbi Coverage: 95.57% +# nodbi Coverage: 95.58% # R/src_duckdb.R: 76.92% # R/src_mongo.R: 91.30% # R/update.R: 92.95% # R/zzz.R: 94.77% # R/src_postgres.R: 95.65% # R/create.R: 96.09% -# R/query.R: 96.43% +# R/query.R: 96.44% # R/delete.R: 97.96% # R/get.R: 98.77% # R/exists.R: 100.00% diff --git a/codemeta.json b/codemeta.json index b4f99b8..8a6dde5 100644 --- a/codemeta.json +++ b/codemeta.json @@ -8,7 +8,7 @@ "codeRepository": "https://github.com/ropensci/nodbi", "issueTracker": "https://github.com/ropensci/nodbi/issues", "license": "https://spdx.org/licenses/MIT", - "version": "0.10.3", + "version": "0.10.4", "programmingLanguage": { "@type": "ComputerLanguage", "name": "R", @@ -315,7 +315,7 @@ "applicationCategory": "Databases", "isPartOf": "https://ropensci.org", "keywords": ["database", "MongoDB", "Elasticsearch", "CouchDB", "SQLite", "PostgreSQL", "DuckDB", "NoSQL", "JSON", "documents", "rstats", "nosql", "couchdb", "mongodb", "elasticsearch", "r", "r-package", "sqlite", "postgresql"], - "fileSize": "659.763KB", + "fileSize": "659.911KB", "releaseNotes": "https://github.com/ropensci/nodbi/blob/master/NEWS.md", "readme": "https://github.com/ropensci/nodbi/blob/master/README.md", "contIntegration": ["https://github.com/ropensci/nodbi/actions?query=workflow%3AR-CMD-check", "https://app.codecov.io/gh/rfhb/nodbi"], diff --git a/cran-comments.md b/cran-comments.md index 1d236a6..125abb9 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -4,9 +4,7 @@ * macOS builder: r-release-macosx-arm64|4.3.0|macosx|macOS 13.3.1 (22E261)|Mac mini|Apple M1||en_US.UTF-8|macOS 11.3|clang-1403.0.22.14.1|GNU Fortran (GCC) 12.2.0 (ok) -* Win-builder: R version 4.3.3 (2024-02-29 ucrt) using platform: x86_64-w64-mingw32 (64-bit); R version 4.2.3 (2023-03-15 ucrt) using platform: x86_64-w64-mingw32 (64-bit); R Under development (unstable) (2024-03-02 r86034 ucrt) using platform: x86_64-w64-mingw32 (ok) - -* rhub builder: Windows Server 2022, R-devel, 64 bit; Ubuntu Linux 20.04.1 LTS, R-release, GCC; Fedora Linux, R-devel, clang, gfortran (ok) +* Win-builder: R Under development (unstable) (2024-03-03 r86036 ucrt) using platform: x86_64-w64-mingw32; R version 4.2.3 (2023-03-15 ucrt) using platform: x86_64-w64-mingw32 (64-bit); R version 4.3.3 (2024-02-29 ucrt) using platform: x86_64-w64-mingw32 (64-bit) (ok) ## R CMD check results @@ -16,7 +14,7 @@ ## Submission reason -* fixes to `limit` in `docdb_query(src, key, query, listfields = TRUE, limit = )` +* re-adding field formatting for `docdb_query(src, key, query, listfields = TRUE, limit = )` ## revdepcheck results