vroom v1.5.6
-
vroom(col_select=)
now works ifcol_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 (tidyverse/readr#1321) -
vroom()
no longer issues a spurious warning when the parsing needs to be restarted due to the presence of embedded newlines (tidyverse/readr#1313) -
Fix performance issue when materializing subsetted vectors (#378)
-
vroom_format()
now uses the same internal multi-threaded code asvroom_write()
, improving its performance in most cases (#377) -
vroom_fwf()
no longer omits the last line if it does not end with a newline (tidyverse/readr#1293) -
Empty files or files with only a header line and no data no longer cause a crash if read with multiple files (tidyverse/readr#1297)
-
Files with a header but no contents, or a empty file if
col_names = FALSE
no longer cause a hang whenprogress = TRUE
(tidyverse/readr#1297) -
Commented lines with comments at the end of lines no longer hang R (tidyverse/readr#1309)
-
Comment lines containing unpaired quotes are no longer treated as unterminated quotations (tidyverse/readr#1307)
-
Values with only a
Inf
orNaN
prefix but additional data afterwards, like
Inform
or no longer inappropriately guessed as doubles (tidyverse/readr#1319) -
Time types now support
%h
format to denote hour durations greater than 24, like readr (tidyverse/readr#1312) -
Fix performance issue when materializing subsetted vectors (#378)