Path to this page:
Subject: CVS commit: pkgsrc/textproc/R-vroom
From: Makoto Fujiwara
Date: 2022-05-01 16:22:59
Message id: 20220501142259.320ADFB1A@cvs.NetBSD.org
Log Message:
(textproc/R-vroom) Updated 1.5.4 to 1.5.7
# vroom 1.5.7
* Jenny Bryan is now the official maintainer.
* Fix uninitialized bool detected by CRAN's UBSAN check
(https://github.com/r-lib/vroom/pull/386)
* Fix buffer overflow when trying to parse an integer field that is
over 64 characters long
(https://github.com/tidyverse/readr/issues/1326)
* Fix subset indexing when indexes span a file boundary multiple times
(#383)
# vroom 1.5.6
* `vroom(col_select=)` now works if `col_names = FALSE` as intended (#381)
* `vroom(n_max=)` now correctly handles cases when reading from a
connection and the file does _not_ end with a newline
(https://github.com/tidyverse/readr/issues/1321)
* `vroom()` no longer issues a spurious warning when the parsing needs
* to be restarted due to the presence of embedded newlines
* (https://github.com/tidyverse/readr/issues/1313) Fix performance
* issue when materializing subsetted vectors (#378)
* `vroom_format()` now uses the same internal multi-threaded code as
`vroom_write()`, improving its performance in most cases (#377)
* `vroom_fwf()` no longer omits the last line if it does _not_ end
with a newline (https://github.com/tidyverse/readr/issues/1293)
* Empty files or files with only a header line and no data no longer
cause a crash if read with multiple files
(https://github.com/tidyverse/readr/issues/1297)
* Files with a header but no contents, or a empty file if `col_names =
FALSE` no longer cause a hang when `progress = TRUE`
(https://github.com/tidyverse/readr/issues/1297)
* Commented lines with comments at the end of lines no longer hang R
(https://github.com/tidyverse/readr/issues/1309)
* Comment lines containing unpaired quotes are no longer treated as
unterminated quotations
(https://github.com/tidyverse/readr/issues/1307)
* Values with only a `Inf` or `NaN` prefix but additional data
afterwards, like `Inform` or no longer inappropriately guessed as
doubles (https://github.com/tidyverse/readr/issues/1319)
* Time types now support `%h` format to denote hour durations greater
than 24, like readr (https://github.com/tidyverse/readr/issues/1312)
* Fix performance issue when materializing subsetted vectors (#378)
# vroom 1.5.5
* `vroom()` now supports files with only carriage return newlines
(`\r`). (#360, https://github.com/tidyverse/readr/issues/1236)
* `vroom()` now parses single digit datetimes more consistently as
readr has done (https://github.com/tidyverse/readr/issues/1276)
* `vroom()` now parses `Inf` values as doubles
(https://github.com/tidyverse/readr/issues/1283)
* `vroom()` now parses `NaN` values as doubles
(https://github.com/tidyverse/readr/issues/1277)
* `VROOM_CONNECTION_SIZE` is now parsed as a double, which supports
scientific notation (#364)
* `vroom()` now works around specifying a `\n` as the delimiter (#365,
https://github.com/tidyverse/dplyr/issues/5977)
* `vroom()` no longer crashes if given a `col_name` and `col_type`
both less than the number of columns
(https://github.com/tidyverse/readr/issues/1271)
* `vroom()` no longer hangs if given an empty value for
`locale(grouping_mark=)`
(https://github.com/tidyverse/readr/issues/1241)
* Fix performance regression when guessing with large numbers of rows
(https://github.com/tidyverse/readr/issues/1267)
Files: