Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions bigquery/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,35 @@

[1]: https://pypi.org/project/google-cloud-bigquery/#history

## 1.19.0

08-28-2019 09:35 PDT

### Implementation Changes
- Deprecate `client.dataset()` part 1 ([#9032](https://github.com/googleapis/google-cloud-python/pull/9032))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd very much like a different message for this. It's not actually a deprecation yet. We just updated some samples to remove references to client.dataset().

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's move this to the "docs" section and say "Updated code samples to use strings for table and dataset IDs."

- Raise with extra or missing columns in `load_table_from_dataframe` schema. ([#9096](https://github.com/googleapis/google-cloud-python/pull/9096))
- Allow subset of schema to be passed into `load_table_from_dataframe`. ([#9064](https://github.com/googleapis/google-cloud-python/pull/9064))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Allow subset of schema...

This is definitely a new feature.

- Determine the schema in `load_table_from_dataframe` based on dtypes. ([#9049](https://github.com/googleapis/google-cloud-python/pull/9049))
- Raise helpful error when loading table from dataframe with STRUCT columns ([#9053](https://github.com/googleapis/google-cloud-python/pull/9053))
- Fix schema recognition of struct field types ([#9001](https://github.com/googleapis/google-cloud-python/pull/9001))
- Fix deserializing None QueryParameters ([#9029](https://github.com/googleapis/google-cloud-python/pull/9029))

### New Features
- Add `client_options` to constructor. ([#8999](https://github.com/googleapis/google-cloud-python/pull/8999))
- Add `--dry_run` option to `%%bigquery` magic. ([#9067](https://github.com/googleapis/google-cloud-python/pull/9067))
- Add `load_table_from_json` method to BQ client ([#9076](https://github.com/googleapis/google-cloud-python/pull/9076))
- Add support for unsetting LoadJobConfig schema ([#9077](https://github.com/googleapis/google-cloud-python/pull/9077))
- Add enum with SQL type names allowed to be used in SchemaField ([#9040](https://github.com/googleapis/google-cloud-python/pull/9040))
- Add support to Dataset for project ids with org prefix. ([#8877](https://github.com/googleapis/google-cloud-python/pull/8877))

### Documentation
- Remove compatability badges from READMEs. ([#9035](https://github.com/googleapis/google-cloud-python/pull/9035))
- Fix Pandas DataFrame load example under Python 2.7 ([#9022](https://github.com/googleapis/google-cloud-python/pull/9022))

### Internal / Testing Changes
- Fix BigQuery client unit test assertions ([#9112](https://github.com/googleapis/google-cloud-python/pull/9112))
- Replace avro with arrow schemas in test_table.py ([#9056](https://github.com/googleapis/google-cloud-python/pull/9056))

## 1.18.0

08-08-2019 12:28 PDT
Expand Down
2 changes: 1 addition & 1 deletion bigquery/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

name = "google-cloud-bigquery"
description = "Google BigQuery API client library"
version = "1.18.0"
version = "1.19.0"
# Should be one of:
# 'Development Status :: 3 - Alpha'
# 'Development Status :: 4 - Beta'
Expand Down