Skip to content

vroom v1.5.6

Compare
Choose a tag to compare
@jimhester jimhester released this 12 Nov 17:51
· 146 commits to main since this release
  • 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 (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 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 (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 when progress = 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 or NaN 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)