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
The behavior of xml_url appears to have changed pretty drastically in v1.3.0.
Previously, passing base_url via read_html resulted in it setting the url returned by xml_url
These are deeply simplified examples but highlight the change in behavior. I can work around the change from "NA" to "<CHARSXP: NA>", but the loss of the xml_url is a big loss which will require a bit of re-architecting.
This breaks edgarWebR (currently off CRAN due to vignettes making remote API calls)
Thanks, it was a bug introduced when converting the code not to use Rcpp, should now be fixed. We will be doing another xml2 release in the near future. If you notice any additional regressions please let us know!
The behavior of
xml_url
appears to have changed pretty drastically in v1.3.0.Previously, passing
base_url
viaread_html
resulted in it setting the url returned byxml_url
These are deeply simplified examples but highlight the change in behavior. I can work around the change from "NA" to "<CHARSXP: NA>", but the loss of the xml_url is a big loss which will require a bit of re-architecting.
This breaks edgarWebR (currently off CRAN due to vignettes making remote API calls)
Using string input
Example 1
On v1.2.5 the output was "http://test.com"
On v1.3.1 the output is "UTF-8"
Example 2
On v1.2.5 the output was "NA"
Ov v1.3.0 the output is "UTF-8"
Using httr response
Example 3
On v1.2.5 the output was "https://www.sec.gov/cgi-bin/cik_lookup?company=cloudera"
Ov v1.3.0 the output is "<CHARSXP: NA>"
Example 4
On v1.2.5 the output was "NA"
Ov v1.3.0 the output is "<CHARSXP: NA>"
The text was updated successfully, but these errors were encountered: