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
Copy file name to clipboardexpand all lines: docs/source/changelog.rst
+22
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,8 @@
1
1
Changelog
2
2
=========
3
3
4
+
.. _changelog-0.5.0:
5
+
4
6
0.5.0 / 2018-06-15
5
7
------------------
6
8
@@ -27,12 +29,16 @@ Internal changes
27
29
- Refactored auth to an internal auth module. (:issue:`176`)
28
30
- Add unit tests for ``get_credentials()``. (:issue:`184`)
29
31
32
+
.. _changelog-0.4.1:
33
+
30
34
0.4.1 / 2018-04-05
31
35
------------------
32
36
33
37
- Only show ``verbose`` deprecation warning if Pandas version does not
34
38
populate it. (:issue:`157`)
35
39
40
+
.. _changelog-0.4.0:
41
+
36
42
0.4.0 / 2018-04-03
37
43
------------------
38
44
@@ -50,6 +56,8 @@ Internal changes
50
56
Messages use the logging module instead of printing progress directly to
51
57
standard output. (:issue:`12`)
52
58
59
+
.. _changelog-0.3.1:
60
+
53
61
0.3.1 / 2018-02-13
54
62
------------------
55
63
@@ -58,20 +66,26 @@ Internal changes
58
66
- Fix an issue where a dataframe containing both integer and floating point columns could not be uploaded with ``to_gbq`` (:issue:`116`)
59
67
- ``to_gbq`` now uses ``to_csv`` to avoid manually looping over rows in a dataframe (should result in faster table uploads) (:issue:`96`)
60
68
69
+
.. _changelog-0.3.0:
70
+
61
71
0.3.0 / 2018-01-03
62
72
------------------
63
73
64
74
- Use the `google-cloud-bigquery <https://googlecloudplatform.github.io/google-cloud-python/latest/bigquery/usage.html>`__ library for API calls. The ``google-cloud-bigquery`` package is a new dependency, and dependencies on ``google-api-python-client`` and ``httplib2`` are removed. See the `installation guide <https://pandas-gbq.readthedocs.io/en/latest/install.html#dependencies>`__ for more details. (:issue:`93`)
65
75
- Structs and arrays are now named properly (:issue:`23`) and BigQuery functions like ``array_agg`` no longer run into errors during type conversion (:issue:`22`).
66
76
- :func:`to_gbq` now uses a load job instead of the streaming API. Remove ``StreamingInsertError`` class, as it is no longer used by :func:`to_gbq`. (:issue:`7`, :issue:`75`)
67
77
78
+
.. _changelog-0.2.1:
79
+
68
80
0.2.1 / 2017-11-27
69
81
------------------
70
82
71
83
- :func:`read_gbq` now raises ``QueryTimeout`` if the request exceeds the ``query.timeoutMs`` value specified in the BigQuery configuration. (:issue:`76`)
72
84
- Environment variable ``PANDAS_GBQ_CREDENTIALS_FILE`` can now be used to override the default location where the BigQuery user account credentials are stored. (:issue:`86`)
73
85
- BigQuery user account credentials are now stored in an application-specific hidden user folder on the operating system. (:issue:`41`)
74
86
87
+
.. _changelog-0.2.0:
88
+
75
89
0.2.0 / 2017-07-24
76
90
------------------
77
91
@@ -81,21 +95,29 @@ Internal changes
81
95
- :func:`read_gbq` now has a ``auth_local_webserver`` boolean argument for controlling whether to use web server or console flow when getting user credentials. Replaces `--noauth_local_webserver` command line argument. (:issue:`35`)
82
96
- :func:`read_gbq` now displays the BigQuery Job ID and standard price in verbose output. (:issue:`70` and :issue:`71`)
83
97
98
+
.. _changelog-0.1.6:
99
+
84
100
0.1.6 / 2017-05-03
85
101
------------------
86
102
87
103
- All gbq errors will simply be subclasses of ``ValueError`` and no longer inherit from the deprecated ``PandasError``.
88
104
105
+
.. _changelog-0.1.4:
106
+
89
107
0.1.4 / 2017-03-17
90
108
------------------
91
109
92
110
- ``InvalidIndexColumn`` will be raised instead of ``InvalidColumnOrder`` in :func:`read_gbq` when the index column specified does not exist in the BigQuery schema. (:issue:`6`)
93
111
112
+
.. _changelog-0.1.3:
113
+
94
114
0.1.3 / 2017-03-04
95
115
------------------
96
116
97
117
- Bug with appending to a BigQuery table where fields have modes (NULLABLE,REQUIRED,REPEATED) specified. These modes were compared versus the remote schema and writing a table via :func:`to_gbq` would previously raise. (:issue:`13`)
0 commit comments