From 53c1d98f55b0bfd339ef28adedb01cba07f05780 Mon Sep 17 00:00:00 2001 From: Scott Chamberlain Date: Fri, 19 Jul 2024 14:38:20 -0700 Subject: [PATCH] update new, cran comments and codemeta.json --- NEWS.md | 18 ++++++++++++++++++ codemeta.json | 2 +- cran-comments.md | 8 ++++---- 3 files changed, 23 insertions(+), 5 deletions(-) diff --git a/NEWS.md b/NEWS.md index 72ce7c44..3d3e6c8c 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,21 @@ +vcr 1.6.0 +========= + +### NEW FEATURES + +* `vcr` now supports `httr2` in addition to `httr` and `crul`. (#237) (#268) +* `vcr` now supports async http requests with `crul` (w/ `crul` v1.5 or greater). no change was required in `vcr` for this to happen. a PR was merged in `crul` to hook into `vcr`. there's no support for async in `httr` as that package does not do any async and no support in `httr2` because `req_perform_parallel` does not have a mocking hook as does `req_perform` (#246) + +### BUG FIXES + +* Ports in URLs (e.g., 8000) were being accidentally stripped. Fixed now (#264) (#266) + +### MINOR IMPROVEMENTS + +* Add link to DESCRIPTION file for packge documentation. thanks @olivroy (#265) +* Use `_PACKAGE` syntax for package level doc (#263) + + vcr 1.2.2 ========= diff --git a/codemeta.json b/codemeta.json index 4be728bf..141af392 100644 --- a/codemeta.json +++ b/codemeta.json @@ -314,5 +314,5 @@ "applicationCategory": "Web", "isPartOf": "https://ropensci.org", "keywords": ["http", "https", "API", "web-services", "curl", "mock", "mocking", "http-mocking", "testing", "testing-tools", "tdd"], - "fileSize": "921.187KB" + "fileSize": "922.494KB" } diff --git a/cran-comments.md b/cran-comments.md index 31b05169..67674b15 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -1,7 +1,7 @@ ## Test environments -* local macOS, R 4.3.1 -* ubuntu 22.04 (on GitHub Actions), R 4.3.1 +* local macOS, R 4.4.1 +* ubuntu 22.04 (on GitHub Actions), R 4.4.1 * win-builder (devel and release) ## R CMD check results @@ -10,11 +10,11 @@ ## Revdep check results -We checked all reverse dependencies, comparing R CMD check results across CRAN and dev verions of this package. We saw zero new problems. +We checked all 53 reverse dependencies, comparing R CMD check results across CRAN and dev verions of this package. We saw zero new problems. -------- -This version fixes broken tests that were causing CRAN check errors. +This version adds support for httr2. Thanks very much, Scott Chamberlain