Skip to content

Version 0.10.0

Compare
Choose a tag to compare
@tswast tswast released this 05 Apr 13:37
f633fa9

Documentation

Dependency updates

  • Update the minimum version of google-cloud-bigquery to 1.9.0. ( #247 )
  • Update the minimum version of pandas to 0.19.0. ( #262 )

Internal changes

  • Update the authentication credentials. Note: You may need to set reauth=True in order to update your credentials to the most recent version. This is required to use new functionality such as the BigQuery Storage API. ( #267 )
  • Use to_dataframe() from google-cloud-bigquery in the read_gbq() function. ( #247 )

Enhancements

  • Fix a bug where pandas-gbq could not upload an empty DataFrame. ( #237 )
  • Allow table_schema in to_gbq to contain only a subset of columns, with the rest being populated using the DataFrame dtypes ( #218 ) (contributed by @JohnPaton)
  • Read project_id in to_gbq from provided credentials if available (contributed by @daureg)
  • read_gbq uses the timezone-aware DatetimeTZDtype(unit='ns', tz='UTC') dtype for BigQuery TIMESTAMP columns. ( #269 )
  • Add use_bqstorage_api to read_gbq. The BigQuery Storage API can be used to download large query results (>125 MB) more quickly. If the BQ Storage API can't be used, the BigQuery API is used instead. ( #133, #270 )