Skip to content

Commit

Permalink
v1.6.12 (#384)
Browse files Browse the repository at this point in the history
  • Loading branch information
gadenbuie committed Oct 25, 2023
1 parent 99bfe9b commit 0e2892c
Show file tree
Hide file tree
Showing 7 changed files with 313 additions and 95 deletions.
84 changes: 48 additions & 36 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,66 +1,78 @@
Package: httpuv
Type: Package
Encoding: UTF-8
Package: httpuv
Title: HTTP and WebSocket Server Library
Version: 1.6.11.9000
Version: 1.6.12
Authors@R: c(
person("Joe", "Cheng", role = c("aut"), email = "joe@rstudio.com"),
person("Winston", "Chang", role = c("aut", "cre"), email = "winston@rstudio.com"),
person("Posit, PBC", role = "cph", "fnd"),
person("Joe", "Cheng", , "joe@posit.co", role = "aut"),
person("Winston", "Chang", , "winston@posit.co", role = c("aut", "cre")),
person("Posit, PBC", "fnd", role = "cph"),
person("Hector", "Corrada Bravo", role = "ctb"),
person("Jeroen", "Ooms", role = "ctb"),
person("Andrzej", "Krzemienski", role = "cph", comment = "optional.hpp"),
person("Andrzej", "Krzemienski", role = "cph",
comment = "optional.hpp"),
person("libuv project contributors", role = "cph",
comment = "libuv library, see src/libuv/AUTHORS file"),
person("Joyent, Inc. and other Node contributors", role = "cph",
comment = "libuv library, see src/libuv/AUTHORS file; and http-parser library, see src/http-parser/AUTHORS file"),
person("Niels", "Provos", role = "cph", comment = "libuv subcomponent: tree.h"),
person("Niels", "Provos", role = "cph",
comment = "libuv subcomponent: tree.h"),
person("Internet Systems Consortium, Inc.", role = "cph",
comment = "libuv subcomponent: inet_pton and inet_ntop, contained in src/libuv/src/inet.c"),
comment = "libuv subcomponent: inet_pton and inet_ntop, contained in src/libuv/src/inet.c"),
person("Alexander", "Chemeris", role = "cph",
comment = "libuv subcomponent: stdint-msvc2008.h (from msinttypes)"),
person("Google, Inc.", role = "cph", comment = "libuv subcomponent: pthread-fixes.c"),
comment = "libuv subcomponent: stdint-msvc2008.h (from msinttypes)"),
person("Google, Inc.", role = "cph",
comment = "libuv subcomponent: pthread-fixes.c"),
person("Sony Mobile Communcations AB", role = "cph",
comment = "libuv subcomponent: pthread-fixes.c"),
comment = "libuv subcomponent: pthread-fixes.c"),
person("Berkeley Software Design Inc.", role = "cph",
comment = "libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c"),
comment = "libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c"),
person("Kenneth", "MacKay", role = "cph",
comment = "libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c"),
comment = "libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c"),
person("Emergya (Cloud4all, FP7/2007-2013, grant agreement no 289016)", role = "cph",
comment = "libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c"),
person("Steve", "Reid", role = "aut", comment = "SHA-1 implementation"),
person("James", "Brown", role = "aut", comment = "SHA-1 implementation"),
person("Bob", "Trower", role = "aut", comment = "base64 implementation"),
person("Alexander", "Peslyak", role = "aut", comment = "MD5 implementation"),
person("Trantor Standard Systems", role = "cph", comment = "base64 implementation"),
person("Igor", "Sysoev", role = "cph", comment = "http-parser")
)
comment = "libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c"),
person("Steve", "Reid", role = "aut",
comment = "SHA-1 implementation"),
person("James", "Brown", role = "aut",
comment = "SHA-1 implementation"),
person("Bob", "Trower", role = "aut",
comment = "base64 implementation"),
person("Alexander", "Peslyak", role = "aut",
comment = "MD5 implementation"),
person("Trantor Standard Systems", role = "cph",
comment = "base64 implementation"),
person("Igor", "Sysoev", role = "cph",
comment = "http-parser")
)
Description: Provides low-level socket and protocol support for handling
HTTP and WebSocket requests directly from within R. It is primarily
intended as a building block for other packages, rather than making it
particularly easy to create complete web applications using httpuv alone.
httpuv is built on top of the libuv and http-parser C libraries, both of
which were developed by Joyent, Inc. (See LICENSE file for libuv and
http-parser license information.)
particularly easy to create complete web applications using httpuv
alone. httpuv is built on top of the libuv and http-parser C
libraries, both of which were developed by Joyent, Inc. (See LICENSE
file for libuv and http-parser license information.)
License: GPL (>= 2) | file LICENSE
URL: https://github.com/rstudio/httpuv
BugReports: https://github.com/rstudio/httpuv/issues
Depends:
R (>= 2.15.1)
Imports:
Rcpp (>= 1.0.7),
utils,
R6,
later (>= 0.8.0),
promises,
later (>= 0.8.0)
LinkingTo: Rcpp, later
URL: https://github.com/rstudio/httpuv
SystemRequirements: GNU make, zlib
RoxygenNote: 7.2.3
Roxygen: list(markdown = TRUE)
R6,
Rcpp (>= 1.0.7),
utils
Suggests:
testthat,
callr,
curl,
testthat,
websocket
LinkingTo:
later,
Rcpp
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3
SystemRequirements: GNU make, zlib
Collate:
'RcppExports.R'
'httpuv.R'
Expand Down
6 changes: 3 additions & 3 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# httpuv 1.6.11.9000

* Remove a workaround to support `shiny` older than version 1.0.6 (#378)
# httpuv 1.6.12

* New `runStaticServer()` provides a convenient interface for serving a directory of static files. (#380)

* Remove a workaround to support `shiny` older than version 1.0.6 (#378)

# httpuv 1.6.11

* Fix race condition introduced in 1.6.10. (#363)
Expand Down
56 changes: 3 additions & 53 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,60 +1,10 @@
## Comments
## R CMD check results

#### 2022-09-08

Releasing a patch to `{httpuv}` which has documentation by the latest version of `{roxygen2}`.

This patch also includes a small update to the configure script of libuv.

Best,
Winston

#### 2022-08-19

....
R 4.2.0 switched to use HTML5 for documentation pages. Now validation
using HTML Tidy finds problems in the HTML generated from your Rd
files.

To fix, in most cases it suffices to re-generate the Rd files using the
current CRAN version of roxygen2.
....

Best,
-k


## Test environments

* local macOS, R 4.1.3
* GitHub Actions
* macOS
* 4.2
* windows
* 4.2
* ubuntu18
* devel, 4.2, 4.1, 4.0, 3.6, 3.5
* devtools::
* check_win_devel()

#### R CMD check results

There are 2 NOTEs, all of which are expected:

* checking installed package size ... NOTE
installed size is 10.7Mb
sub-directories of 1Mb or more:
libs 10.3Mb


* checking for GNU extensions in Makefiles ... NOTE
GNU make is a SystemRequirements.

0 errors | 0 warnings | 2 notes
There is 1 NOTE regarding the update of the maintainer's email address.

## revdepcheck results

We checked 71 reverse dependencies (64 from CRAN + 7 from Bioconductor), comparing R CMD check results across CRAN and dev versions of this package.
We checked 63 reverse dependencies (56 from CRAN + 7 from Bioconductor), comparing R CMD check results across CRAN and dev versions of this package.

* We saw 0 new problems
* We failed to check 0 packages
12 changes: 12 additions & 0 deletions revdep/README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,14 @@
# Revdeps

## Failed to check (7)

|package |version |error |warning |note |
|:-------------|:-------|:-----|:-------|:----|
|biobtreeR |? | | | |
|BrowserViz |? | | | |
|epivizrServer |? | | | |
|igvR |? | | | |
|phantasus |? | | | |
|RCyjs |? | | | |
|Ularcirc |? | | | |

2 changes: 1 addition & 1 deletion revdep/cran.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## revdepcheck results

We checked 62 reverse dependencies, comparing R CMD check results across CRAN and dev versions of this package.
We checked 63 reverse dependencies (56 from CRAN + 7 from Bioconductor), comparing R CMD check results across CRAN and dev versions of this package.

* We saw 0 new problems
* We failed to check 0 packages
Expand Down
Loading

0 comments on commit 0e2892c

Please sign in to comment.