Skip to content

Commit

Permalink
(textproc/R-vroom) Updated 1.5.7 to 1.6.3
Browse files Browse the repository at this point in the history
# vroom 1.6.3

# vroom 1.6.2

* No user-facing changes.

# vroom 1.6.1

* `str()` now works in a colorized context in the presence of a column
  of class `integer64`, i.e. parsed with `col_big_integer()` (@bart1,
  #477).

* The embedded implementation of the Grisu algorithm for printing
  floating point numbers now uses `snprintf()` instead of `sprintf()`
  and likewise for vroom's own code (@jeroen, #480).

# vroom 1.6.0

* `vroom(col_select=)` now handles column selection by numeric
  position when `id` column is provided (#455).

* `vroom(id = "path", col_select = a:c)` is treated like `vroom(id =
  "path", col_select = c(path, a:c))`. If an `id` column is provided,
  it is automatically included in the output (#416).

* `vroom_write(append = TRUE)` does not modify an existing file when
  appending an empty data frame. In particular, it does not overwrite
  (delete) the existing contents of that file
  (tidyverse/readr#1408, #451).

* `vroom::problems()` now defaults to `.Last.value` for its primary
  input, similar to how `readr::problems()` works (#443).

* The warning that indicates the existence of parsing problems has
  been improved, which should make it easier for the user to follow-up
  (tidyverse/readr#1322).

* `vroom()` reads more reliably from filepaths containing non-ascii
  characters, in a non-UTF-8 locale (#394, #438).

* `vroom_format()` and `vroom_write()` only quote values that contain
  a delimiter, quote, or newline. Specifically values that are equal
  to the `na` string (or that start with it) are no longer quoted
  (#426).

* Fixed segfault when reading in multiple files and the first file has
  only a header row of column names, but subsequent files have at
  least one row (#430).

* Fixed segfault when `vroom_format()` is given an empty data frame
  (#425)

* Fixed a segfault that could occur when the final field of the final
  line is missing and the file also does not end in a newline (#429).

* Fixed recursive garbage collection error that could occur during
  `vroom_write()` when `output_column()` generates an ALTREP vector
  (#389).

* `vroom_progress()` uses `rlang::is_interactive()` instead of
  `base::interactive()`.

* `col_factor(levels = NULL)` honors the `na` strings of `vroom()` and
  its own `include_na` argument, as described in the docs, and now
  reproduces the behaviour of readr's first edition parser (#396).
  • Loading branch information
mef committed Jun 17, 2023
1 parent 46c0701 commit 3035485
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions textproc/R-vroom/Makefile
@@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.2 2022/05/01 14:22:58 mef Exp $
# $NetBSD: Makefile,v 1.3 2023/06/17 14:00:31 mef Exp $

R_PKGNAME= vroom
R_PKGVER= 1.5.7
R_PKGVER= 1.6.3
CATEGORIES= textproc

MAINTAINER= pkgsrc-users@NetBSD.org
Expand All @@ -23,7 +23,7 @@ DEPENDS+= R-progress-[0-9]*:../../sysutils/R-progress
DEPENDS+= R-tzdb-[0-9]*:../../time/R-tzdb

#EST_DEPENDS+= R-archive-[0-9]*:
#EST_DEPENDS+= R-bench-[0-9]*:
TEST_DEPENDS+= R-bench-[0-9]*:../../benchmarks/R-bench
TEST_DEPENDS+= R-covr-[0-9]*:../../devel/R-covr
TEST_DEPENDS+= R-curl-[0-9]*:../../www/R-curl
TEST_DEPENDS+= R-dplyr-[0-9]*:../../math/R-dplyr
Expand Down
8 changes: 4 additions & 4 deletions textproc/R-vroom/distinfo
@@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.4 2022/05/01 14:22:58 mef Exp $
$NetBSD: distinfo,v 1.5 2023/06/17 14:00:31 mef Exp $

BLAKE2s (R/vroom_1.5.7.tar.gz) = 39f8b9b61a917b76dd8a2b99b4c811583b3c0c565da2545a6207b269cba2ef67
SHA512 (R/vroom_1.5.7.tar.gz) = 0d9ae680cb515d2f2dd5ad9f572070e00c0d3d7952959165c2cf655981e89fc57c8ea8284c0b89192e8096ffa747d2151520fe0b6f066165573fa60c4cc1cf43
Size (R/vroom_1.5.7.tar.gz) = 727956 bytes
BLAKE2s (R/vroom_1.6.3.tar.gz) = 606890646350c9704d56d28ff63ebd9499c598c4099c93b50677d78f56259550
SHA512 (R/vroom_1.6.3.tar.gz) = ae3c8579695e4e3b7b540ab938b53200b72612b194b0691f5716acecd4dca6208b8132521d47ee97a4552130c9cc146fcf8a2f952ab8da91c94454dab26f68f4
Size (R/vroom_1.6.3.tar.gz) = 718863 bytes

0 comments on commit 3035485

Please sign in to comment.