Comparing v3.29.0...v3.30.0 · googleapis/python-bigquery
This repository was archived by the owner on Mar 6, 2026. It is now read-only.
- 13 commits
- 30 files changed
- 10 contributors
Commits on Jan 21, 2025
-
feat: support resource_tags for table (#2093)
* feat: support resource_tags for table * fix: system test for resource tags * fix: typo * fix: unit test * Update tests/unit/test_client.py * Update google/cloud/bigquery/table.py * Update google/cloud/bigquery/table.py * Update google/cloud/bigquery/table.py * fix: append random string suffix to resource tags to prevent test conflicts * Update google/cloud/bigquery/table.py --------- Co-authored-by: Lingqing Gan <lingqing.gan@gmail.com>
Commits on Jan 27, 2025
-
chore(python): fix docs publish build (#2113)
Source-Link: googleapis/synthtool@bd9ede2 Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:04c35dc5f49f0f503a306397d6d043685f8d2bb822ab515818c4208d7fb2db3a Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Lingqing Gan <lingqing.gan@gmail.com>
Commits on Jan 31, 2025
-
feat: add roundingmode enum, wiring, and tests (#2121)
* feat: adds roundingmode and entity types * Adds rounding_mode to schema file and tests * tweaks RoundingMode docstring and roundingmode logic * Updates tests to apply better coverage for rounding_mode * Modifies docstring * Removes client-side validation, simplifies some code * Updates foreign_type_definition processing
Commits on Feb 14, 2025
-
docs: update magics.rst (#2125)
* Update magics.rst use bigquery-magics package for the %%bigquery magic * Update magics.rst add back space * update reference and link for bigquery magics --------- Co-authored-by: Lingqing Gan <lingqing.gan@gmail.com>
Commits on Feb 21, 2025
-
Feat: Adds foreign_type_info attribute to table class and adds unit t…
…ests. (#2126) * adds foreign_type_info attribute to table * feat: Adds foreign_type_info attribute and tests * updates docstrings for foreign_type_info * Updates property handling, especially as regards set/get_sub_prop * Removes extraneous comments and debug expressions * Refactors build_resource_from_properties w get/set_sub_prop * updates to foreign_type_info, tests and wiring * Adds logic to detect non-Sequence schema.fields value * updates assorted tests and logic
Commits on Feb 26, 2025
-
fix: retry 404 errors in
Client.query(...)(#2135)* fix: retry 404 errors in `Client.query(...)` * retry on 404 * only retry notfound on jobs.insert * try to improve code coverage * disambiguate job not found from dataset/table not found * remove use of private attributes * fix unit tests * fix cover for retry.py