You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: check_win: add webform argument as alternative to FTP upload (#2619)
* feat: check_win: add `webform` argument to POST to web form instead of passive FTP
* Use httr conditionally
* Style with air
* Use httr2
* Use `walk()`
* Use xml2
devtools has an indirect dependency on xml2 already:
pak::pkg_deps_explain("devtools", "xml2")
#> devtools -> pkgdown -> xml2
#> devtools -> roxygen2 -> xml2
#> devtools -> urlchecker -> xml2
* Add a test
* The whole rlang namespace is imported
* Add a NEWS bullet
---------
Co-authored-by: Jenny Bryan <jenny.f.bryan@gmail.com>
Copy file name to clipboardExpand all lines: NEWS.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@ Other improvements
18
18
*`build_site()` now just calls `pkgdown::build_site()`, meaning that you will get more (informative) output by default (#2578).
19
19
*`check_doc_fields()` is a new function that checks for missing `\value` and `\examples` fields in Rd files, which are commonly flagged by CRAN (#2525).
20
20
*`check_mac_devel()` is a new function to check a package using the macOS builder at https://mac.r-project.org/macbuilder/submit.html (@nfrerebeau, #2507)
21
+
*`check_win()` and friends gain a `webform` argument that uses a webform instead of passive FTP upload (@brownag, #2619).
21
22
*`dev_sitrep()` now works correctly inside Positron (#2618), uses pak instead of remotes to check for dependencies that are missing/behind/ahead (#2663), and uses cli for user-facing messages.
22
23
*`is_loading()` is now re-exported from pkgload (#2556).
23
24
*`load_all()` now errors if called recursively, i.e. if you accidentally include a `load_all()` call in one of your R source files (#2617).
0 commit comments