Skip to content

Releases: redivis/redivis-python

v0.20.10

Choose a tag to compare

@imathews imathews released this 17 Jun 23:49
1170e4c

What's Changed

Full Changelog: v0.20.9...v0.20.10

v0.20.9

Choose a tag to compare

@imathews imathews released this 22 May 23:14
eb7a041

What's Changed

Full Changelog: v0.20.8...v0.20.9

v0.20.8

Choose a tag to compare

@imathews imathews released this 08 May 22:02
  • fix(SAS): handle variable-length strings and strings with newlines

Full Changelog: v0.20.7...v0.20.8

v0.20.7

Choose a tag to compare

@imathews imathews released this 16 Apr 00:51
  • remove undocumented update_schema arg in upload.insert_rows()

Full Changelog: v0.20.6...v0.20.7

v0.20.6

Choose a tag to compare

@imathews imathews released this 10 Apr 23:49
  • feat: add support for updating transform SQL via transform.update(query="")

Full Changelog: v0.20.5...v0.20.6

v0.20.5

Choose a tag to compare

@imathews imathews released this 17 Mar 18:49
6ab51cc

What's Changed

Full Changelog: v0.20.4...v0.20.5

v0.20.4

Choose a tag to compare

@imathews imathews released this 11 Mar 16:40
f4f0c53

What's Changed

Significant performance improvements when downloading multiple files (particularly multiple small files)

PR - refactor: new parallel_download method using async by @imathews in #66

Full Changelog: v0.20.3...v0.20.4

v0.20.3

Choose a tag to compare

@imathews imathews released this 06 Mar 18:24
324477a

What's Changed

Full Changelog: v0.20.2...v0.20.3

v0.20.1

Choose a tag to compare

@imathews imathews released this 04 Mar 19:59
2a33b90

What's Changed

  • fix: error messaging in notebooks by @imathews in #64
  • feat: add support for CSV files in notebook.create_output_table()

Full Changelog: v0.20.0...v0.20.1

v0.20.0

Choose a tag to compare

@imathews imathews released this 04 Mar 15:37
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.