Skip to content

v0.20.0

Choose a tag to compare

@imathews imathews released this 04 Mar 15:37
· 11 commits to main since this release
d426861

This release introduces a number of significant updates, including new ways to work with files, better integrations with SAS and Stata, and new methods for parallel data processing – alongside a series of significant performance improvements when streaming large tables and files

What's new

Deprecations

  • file.stream() has been renamed to file.open(). Use of the stream method will print a deprecation warning, and will be fully removed in a future version.
  • table.download_files() has been superseded by table.to_directory().download(). Use of the old method will print a deprecation warning, and will be removed in a future version.
  • Previously, a file id was used in the file(<id>) constructor. This behavior has been deprecated, in favor of passing the file name / path directly. Using the file id will print a deprecation warning, and will be fully removed in a future version.

Breaking changes

  • redivis.file() is not longer available. Please use `redivis.table("table_ref").file("path/to/file") instead
  • table.list_rows(), which has been deprecated for a number of major versions, has now been removed and will raise an error. Use table.to_arrow_table().to_pylist() instead.