2024-01-31 22:16:04 by Makoto Fujiwara | Files touched by this commit (2) | |
Log message:
(textproc/R-xml2) Updated 1.3.2 to 1.3.6
# xml2 1.3.6
* Now compatible with libxml2 2.12.0 and later (@KNnut).
* Fixed format string issues detected in R-devel.
* Remove unused dependencies on glue, withr and lifecycle (@mgirlich).
* `print()` is faster for very long `xml_nodeset` inputs (#366, @michaelchirico).
* `xml_attr()`, `xml_attrs()`, `xml_double()`, `xml_integer()`, `xml_length()`,
`xml_name()`, `xml_path()`, `xml_text()`, and `xml_type()` no longer use
S3 dispatch but instead dispatch in C, leading to considerable performance
improvements in many cases (@mgirlich, #400).
* `xml_find_int()` analogous to `xml_find_num()` for returning integers
matched by an XPath (#365, @michaelchirico).
* `xml_serialize()` now includes the document type so that `xml_unserialize()`
works also for HTML documents (#407, @HenrikBengtsson).
# xml2 1.3.5
* Small speedup for `xml_find_all()` (@mgirlich, #393).
* Fixes for R CMD check problems.
# xml2 1.3.4
* Fixes for R CMD check problems.
* Windows: update to libxml2 2.10.3
# xml2 1.3.3
* Hadley Wickham is now (again) the maintainer.
* xml2 has been re-licensed as MIT (#317).
* `xml_find_all.xml_node()` fails more informatively the `xpath` parameter is \
the wrong type (@michaelchirico)
* `xml_find_all.xml_nodeset()` gains a `flatten` argument to control whether to \
return a single nodeset or a list of nodesets (#311, @jakejh)
* `write_xml()` and `write_html()` now return NULL invisibly, as they did prior \
to version 1.3.0 (#307)
* `XPtr` gets explicit copy constructor and assignment operator definitions, \
which were two missing components of the [Rule of \
three](https://en.wikipedia.org/wiki/Rule_of_three_(C%2B%2B_programming)) \
(@michaelchirico)
* Windows: update to libxml2 2.9.10 and libxslt 1.1.34 and add ucrt libs
|
2023-11-08 14:21:43 by Thomas Klausner | Files touched by this commit (2377) |
Log message:
*: recursive bump for icu 74.1
|
2023-04-19 10:12:01 by Adam Ciarcinski | Files touched by this commit (2359) | |
Log message:
revbump after textproc/icu update
|
2022-11-23 17:21:30 by Adam Ciarcinski | Files touched by this commit (1878) | |
Log message:
massive revision bump after textproc/icu update
|
2022-06-28 13:38:00 by Thomas Klausner | Files touched by this commit (3952) |
Log message:
*: recursive bump for perl 5.36
|
2022-04-18 21:12:27 by Adam Ciarcinski | Files touched by this commit (1798) | |
Log message:
revbump for textproc/icu update
|
2021-12-08 17:07:18 by Adam Ciarcinski | Files touched by this commit (3063) |
Log message:
revbump for icu and libffi
|
2021-10-26 13:23:42 by Nia Alarie | Files touched by this commit (1161) |
Log message:
textproc: Replace RMD160 checksums with BLAKE2s checksums
All checksums have been double-checked against existing RMD160 and
SHA512 hashes
Unfetchable distfiles (fetched conditionally?):
./textproc/convertlit/distinfo clit18src.zip
|
2021-10-07 17:02:49 by Nia Alarie | Files touched by this commit (1162) |
Log message:
textproc: Remove SHA1 hashes for distfiles
|
2021-06-05 14:55:25 by Makoto Fujiwara | Files touched by this commit (2) |
Log message:
(textproc/R-xml2) Updated 1.2.2 to 1.3.2
# xml2 1.3.2
* `read_html()` and `read_xml()` now error if passed strings of length
greater than one (#121)
* `read_xml.raw()` had an inadvertent regression in 1.3.0 and is now
again fixed (#300)
* Compilation fix on macOS 10.15.4 (@kevinushey, #296)
# xml2 1.3.1
* `read_html()` now again works with HTML files with non-ASCII encodings (#293).
# xml2 1.3.0
* Removes the Rcpp dependency
# xml2 1.2.5
* Fix compilation issue on macOS versions after High Sierra when not
using homebrew supplied libxml2
# xml2 1.2.4
* Fix potential dangling pointer with internal `asXmlChar()` function
(@michaelquinn32, #287).
* `as_xml_document()` now handles cases with text nodes trailing
normal nodes (#274).
* `xml_add_child()` can now create nodes with a `par` attribute. These
previously errored due to partial name matching of the `parent`
function in the internal `create_node()` function. (@jennybc, #285)
* `libxml2_version()` now returns a semantic version rather than
alphanumeric version, so "2.9.10" > "2.9.9" (#277)
|