Skip to content

Commit cbd08c5

Browse files
authored
Merge branch 'main' into add-pangea-classes
2 parents 2a5774e + e29b987 commit cbd08c5

File tree

10 files changed

+53
-24
lines changed

10 files changed

+53
-24
lines changed

.github/.OwlBot.lock.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
# limitations under the License.
1414
docker:
1515
image: gcr.io/cloud-devrel-public-resources/owlbot-python:latest
16-
digest: sha256:94bb690db96e6242b2567a4860a94d48fa48696d092e51b0884a1a2c0a79a407
17-
# created: 2024-07-31T14:52:44.926548819Z
16+
digest: sha256:e8dcfd7cbfd8beac3a3ff8d3f3185287ea0625d859168cc80faccfc9a7a00455
17+
# created: 2024-09-16T21:04:09.091105552Z

.kokoro/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ python3 -m releasetool publish-reporter-script > /tmp/publisher-script; source /
2323
export PYTHONUNBUFFERED=1
2424

2525
# Move into the package, build the distribution and upload.
26-
TWINE_PASSWORD=$(cat "${KOKORO_KEYSTORE_DIR}/73713_google-cloud-pypi-token-keystore-1")
26+
TWINE_PASSWORD=$(cat "${KOKORO_KEYSTORE_DIR}/73713_google-cloud-pypi-token-keystore-2")
2727
cd github/python-bigquery
2828
python3 setup.py sdist bdist_wheel
2929
twine upload --username __token__ --password "${TWINE_PASSWORD}" dist/*

.kokoro/release/common.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ before_action {
2828
fetch_keystore {
2929
keystore_resource {
3030
keystore_config_id: 73713
31-
keyname: "google-cloud-pypi-token-keystore-1"
31+
keyname: "google-cloud-pypi-token-keystore-2"
3232
}
3333
}
3434
}

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,34 @@
55
[1]: https://pypi.org/project/google-cloud-bigquery/#history
66

77

8+
## [3.26.0](https://github.com/googleapis/python-bigquery/compare/v3.25.0...v3.26.0) (2024-09-25)
9+
10+
11+
### Features
12+
13+
* Include LegacyPandasError in init imports ([#2014](https://github.com/googleapis/python-bigquery/issues/2014)) ([3ab5e95](https://github.com/googleapis/python-bigquery/commit/3ab5e95984ad521027a4e1efd9f16767403e668d))
14+
* Use `bigquery-magics` package for the `%%bigquery` magic ([#1965](https://github.com/googleapis/python-bigquery/issues/1965)) ([60128a5](https://github.com/googleapis/python-bigquery/commit/60128a522375823422f238312521a2ce356d9177))
15+
16+
17+
### Bug Fixes
18+
19+
* Add docfx to the presubmit configuration and delete docs-presubmit ([#1995](https://github.com/googleapis/python-bigquery/issues/1995)) ([bd83cfd](https://github.com/googleapis/python-bigquery/commit/bd83cfd2eb25cec58d59af8048f5188d748b083d))
20+
* Add warning when encountering unknown field types ([#1989](https://github.com/googleapis/python-bigquery/issues/1989)) ([8f5a41d](https://github.com/googleapis/python-bigquery/commit/8f5a41d283a965ca161019588d3a3b2947b04b5b))
21+
* Allow protobuf 5.x; require protobuf >=3.20.2; proto-plus >=1.22.3 ([#1976](https://github.com/googleapis/python-bigquery/issues/1976)) ([57bf873](https://github.com/googleapis/python-bigquery/commit/57bf873474382cc2cb34243b704bc928fa1b64c6))
22+
* Do not set job timeout extra property if None ([#1987](https://github.com/googleapis/python-bigquery/issues/1987)) ([edcb79c](https://github.com/googleapis/python-bigquery/commit/edcb79ca69dba30d8102abebb9d53bc76e4882ee))
23+
* Set pyarrow field nullable to False for a BigQuery field in REPEATED mode ([#1999](https://github.com/googleapis/python-bigquery/issues/1999)) ([5352870](https://github.com/googleapis/python-bigquery/commit/5352870283ca7d4652aefc73f12645bcf6e1363c))
24+
25+
26+
### Dependencies
27+
28+
* Bump min version of google-api-core and google-cloud-core to 2.x ([#1972](https://github.com/googleapis/python-bigquery/issues/1972)) ([a958732](https://github.com/googleapis/python-bigquery/commit/a958732aed7d9bd51ffde3dc0e6cae9ad7455b54))
29+
30+
31+
### Documentation
32+
33+
* Add short mode query sample & test ([#1978](https://github.com/googleapis/python-bigquery/issues/1978)) ([ba61a8a](https://github.com/googleapis/python-bigquery/commit/ba61a8ab0da541ba1940211875d7ea2e9e17dfa8))
34+
* Improve QueryJobConfig.destination docstring ([#2016](https://github.com/googleapis/python-bigquery/issues/2016)) ([1b4cca0](https://github.com/googleapis/python-bigquery/commit/1b4cca0a3cc788a4570705572d5f04172f6b4b24))
35+
836
## [3.25.0](https://github.com/googleapis/python-bigquery/compare/v3.24.0...v3.25.0) (2024-06-17)
937

1038

google/cloud/bigquery/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "3.25.0"
15+
__version__ = "3.26.0"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
google-cloud-bigquery==3.25.0
1+
google-cloud-bigquery==3.26.0
22
google-auth-oauthlib==1.2.1

samples/geography/requirements.txt

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,42 +8,43 @@ click-plugins==1.1.1
88
cligj==0.7.2
99
dataclasses==0.8; python_version < '3.7'
1010
db-dtypes==1.3.0
11-
Fiona==1.9.6
11+
Fiona===1.9.6; python_version == '3.7'
12+
Fiona==1.10.1; python_version >= '3.8'
1213
geojson==3.1.0
1314
geopandas===0.10.2; python_version == '3.7'
1415
geopandas===0.13.2; python_version == '3.8'
1516
geopandas==1.0.1; python_version >= '3.9'
16-
google-api-core==2.19.2
17-
google-auth==2.34.0
18-
google-cloud-bigquery==3.25.0
17+
google-api-core==2.20.0
18+
google-auth==2.35.0
19+
google-cloud-bigquery==3.26.0
1920
google-cloud-bigquery-storage==2.26.0
2021
google-cloud-core==2.4.1
21-
google-crc32c==1.5.0; python_version < '3.9'
22+
google-crc32c===1.5.0; python_version < '3.9'
2223
google-crc32c==1.6.0; python_version >= '3.9'
2324
google-resumable-media==2.7.2
2425
googleapis-common-protos==1.65.0
2526
grpcio===1.62.2; python_version == '3.7'
2627
grpcio==1.66.1; python_version >= '3.8'
27-
idna==3.8
28+
idna==3.10
2829
munch==4.0.0
2930
mypy-extensions==1.0.0
3031
packaging===24.0; python_version == '3.7'
3132
packaging==24.1; python_version >= '3.8'
3233
pandas===1.3.5; python_version == '3.7'
3334
pandas===2.0.3; python_version == '3.8'
34-
pandas==2.2.2; python_version >= '3.9'
35+
pandas==2.2.3; python_version >= '3.9'
3536
proto-plus==1.24.0
3637
pyarrow==12.0.1; python_version == '3.7'
3738
pyarrow==17.0.0; python_version >= '3.8'
3839
pyasn1===0.5.1; python_version == '3.7'
39-
pyasn1==0.6.0; python_version >= '3.8'
40+
pyasn1==0.6.1; python_version >= '3.8'
4041
pyasn1-modules===0.3.0; python_version == '3.7'
41-
pyasn1-modules==0.4.0; python_version >= '3.8'
42+
pyasn1-modules==0.4.1; python_version >= '3.8'
4243
pycparser===2.21; python_version == '3.7'
4344
pycparser==2.22; python_version >= '3.8'
4445
pyparsing==3.1.4
4546
python-dateutil==2.9.0.post0
46-
pytz==2024.1
47+
pytz==2024.2
4748
PyYAML===6.0.1; python_version == '3.7'
4849
PyYAML==6.0.2; python_version >= '3.8'
4950
requests==2.31.0; python_version == '3.7'
@@ -55,4 +56,4 @@ typing-extensions===4.7.1; python_version == '3.7'
5556
typing-extensions==4.12.2; python_version >= '3.8'
5657
typing-inspect==0.9.0
5758
urllib3===1.26.18; python_version == '3.7'
58-
urllib3==2.2.2; python_version >= '3.8'
59+
urllib3==2.2.3; python_version >= '3.8'

samples/magics/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
bigquery_magics==0.2.0
1+
bigquery_magics==0.4.0
22
db-dtypes==1.3.0
3-
google.cloud.bigquery==3.25.0
3+
google.cloud.bigquery==3.26.0
44
google-cloud-bigquery-storage==2.26.0
55
ipython===7.31.1; python_version == '3.7'
66
ipython===8.0.1; python_version == '3.8'
77
ipython===8.18.1; python_version >= '3.9'
88
pandas===1.3.5; python_version == '3.7'
99
pandas===2.0.3; python_version == '3.8'
10-
pandas==2.2.2; python_version >= '3.9'
10+
pandas==2.2.3; python_version >= '3.9'

samples/notebooks/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
bigquery-magics==0.2.0
1+
bigquery-magics==0.4.0
22
db-dtypes==1.3.0
3-
google-cloud-bigquery==3.25.0
3+
google-cloud-bigquery==3.26.0
44
google-cloud-bigquery-storage==2.26.0
55
ipython===7.31.1; python_version == '3.7'
66
ipython===8.0.1; python_version == '3.8'
@@ -10,4 +10,4 @@ matplotlib===3.7.4; python_version == '3.8'
1010
matplotlib==3.9.2; python_version >= '3.9'
1111
pandas===1.3.5; python_version == '3.7'
1212
pandas===2.0.3; python_version == '3.8'
13-
pandas==2.2.2; python_version >= '3.9'
13+
pandas==2.2.3; python_version >= '3.9'

samples/snippets/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# samples/snippets should be runnable with no "extras"
2-
google-cloud-bigquery==3.25.0
2+
google-cloud-bigquery==3.26.0

0 commit comments

Comments
 (0)