Comparing v3.31.0...v3.32.0 · googleapis/python-bigquery
This repository was archived by the owner on Mar 6, 2026. It is now read-only.
- 17 commits
- 30 files changed
- 11 contributors
Commits on Apr 1, 2025
-
fix: empty record dtypes (#2147)
* fix: empty record dtypes * update pandas minimum version * fix coverage * fix test_pandas --------- Co-authored-by: Lingqing Gan <lingqing.gan@gmail.com>
Commits on Apr 3, 2025
Commits on Apr 10, 2025
Commits on Apr 11, 2025
-
test: adds pytest-xdist to speed up processing of CI/CD checks (#2153)
* experimentation using pytest-xdist * adds pytest-xdist to nox system session for experimentation * adds pytest-xdist install AND -n=auto argument * updates sample noxfiles * updates pytest version in requirements-test.txt files * Update samples/notebooks/requirements-test.txt * Update samples/notebooks/requirements-test.txt
Commits on Apr 24, 2025
-
fix:
query()now warns whenjob_idis set and the default `job_re……try` is ignored (#2167) * fix: `query()` now warns when `job_id` is set and the default `job_retry` is ignored * Update google/cloud/bigquery/client.py * allow None for job_retry in code path that calls jobs.query from client.query * allow None for job_retry in code path that calls jobs.query from client.query * Update tests/unit/test_job_retry.py
Commits on Apr 25, 2025
-
feat: support BigLakeConfiguration (managed Iceberg tables) (#2162)
* feat: support BigLakeConfiguration (managed Iceberg tables) This PR adds the BigLakeConfiguration class to tables, and the necessary property mappings from Table. It also adds some utility enums (BigLakeFileFormat, BigLakeTableFormat) to more easily communicate available values for configuraiton.
Commits on Apr 29, 2025
-
feat: Update the AccessEntry class with a new condition attribute and…
… unit tests (#2163) * feat: adds condition class and assoc. unit tests * Updates AccessEntry with condition setter/getter * Adds condition attr to AccessEntry and unit tests * adds tests for Condition dunder methods to ensure coverage * moves the entity_type logic out of _from_api_repr to entity_type setter * Updates logic in entity_type getter * updates several AccessEntry related tests * Updates AccessEntry condition setter test to use a dict * udpates entity_id handling * Updates _entity_type access * tweaks type hinting * Update tests/unit/test_dataset.py * Update tests/unit/test_dataset.py * Updates DatasetReference in test and __eq__ check * remove debug print statement