You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BUG: Adapt to breaking change in google-cloud-bigquery 0.32.0.dev1 (#152)
* BUG: Update pandas-gbq to latest version of google-cloud-bigquery
There was a breaking change in 0.32.0.dev1 which changed the way
configuration for the query job gets loaded. Also, it added the
'description' field to the schema resource, so this change updates the
schema comparison logic to account for that.
Detect google-cloud-bigquery version for backwards compatibility
* DOC: Add verbose deprecation to changelog.
* TST: MASTER in CI also builds with g-c-bigquery at MASTER.
Copy file name to clipboardExpand all lines: docs/source/changelog.rst
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,12 @@
1
1
Changelog
2
2
=========
3
3
4
-
0.3.2 / [TBD]
4
+
0.4.0 / [TBD]
5
5
------------------
6
6
- Fix bug with querying for an array of floats (:issue:`123`)
7
+
- Fix bug with integer columns on Windows. Explicitly use 64bit integers when converting from BQ types. (:issue:`119`)
8
+
- Fix bug caused by breaking change the way ``google-cloud-python`` version 0.32.0+ handles additional configuration argument to ``read_gbq``. (:issue:`152`)
9
+
- **Deprecates** the ``verbose`` parameter. Messages use the logging module instead of printing progress directly to standard output. (:issue:`12`)
0 commit comments