Releases: ropensci/crul
Releases · ropensci/crul
crul v0.2.0
MINOR IMPROVEMENTS
- Created new manual files for various tasks to document
usage better (#19) - URL encode paths - should fix any bugs where spaces between words
caused errors previously (#17) - URL encode query parameters - should fix any bugs where spaces between words
caused errors previously (#11) - request headers now passed correctly to response object (#13)
- response headers now parsed to a list for easier access (#14)
- Now supporting multiple query parameters of the same name, wasn't
possible in last version (#15)
crul v0.1.6
NEW FEATURES
- Improved options for using curl options. Can manually add
to list of curl options or pass in via...
. And we
check that user doesn't pass in prohibited options
(curl
package takes care of checking that options
are valid) (#5) - Incorporated
fauxpas
package for dealing with HTTP
conditions. It's a Suggest, so only used if installed (#6) - Added support for streaming via
curl::curl_fetch_stream
.
stream
param defaults toNULL
(thus ignored), or pass in a
function to use streaming. Only one of memory, streaming or
disk allowed. (#9) - Added support for streaming via
curl::curl_fetch_disk
.
disk
param defaults toNULL
(thus ignored), or pass in a
path to write to disk instead of use memory. Only one of memory,
streaming or disk allowed. (#12)
MINOR IMPROVEMENTS
- Added missing
raise_for_status()
method on the
HttpResponse
class (#10)
BUG FIXES
- Was importing
httpcode
but wasn't using it in the package.
Now using the package inHttpResponse
crul v0.1.0
NEW FEATURES
- Released to CRAN.