Permalink
base repository: googleapis/python-bigquery
Failed to load repositories. Confirm that selected base ref is valid, then try again.
base: v2.32.0
Choose a base ref
...
head repository: googleapis/python-bigquery
Failed to load repositories. Confirm that selected head ref is valid, then try again.
compare: v2.33.0
Choose a head ref
  • 13 commits
  • 23 files changed
  • 9 contributors

Commits on Jan 14, 2022

  1. chore(deps): update all dependencies (#1101)

    * chore(deps): update all dependencies
    
    * test: limit deps versions by python
    
    * remove pyproj, as it is only a transitive dependency
    
    Co-authored-by: Tim Swast <[email protected]>
    Co-authored-by: Anthonios Partheniou <[email protected]>
    3 people authoredJan 14, 2022
    Configuration menu
    Copy the full SHA
    144cbf4View commit details
    Browse the repository at this point in the history
  2. chore(python): update release.sh to use keystore (#1111)

    Source-Link: googleapis/synthtool@69fda12
    Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:ae600f36b6bc972b368367b6f83a1d91ec2c82a4a116b383d67d547c56fe6de3
    
    Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply..com>
    Co-authored-by: Tim Swast <[email protected]>
    3 people authoredJan 14, 2022
    Configuration menu
    Copy the full SHA
    51aced2View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2022

  1. test: make GC check resilient to broken weakrefs (#1099)

    * fix: Make gc check resilient to broken weakrefs
    
    In some python deployments (I believe macOS is one), weakref objects aren't guaranteed to exist across gc collections. The proposed check pattern is also used in tensorflow [0] which ran into similar issues a few years ago.
    
    [0]: https://.com/tensorflow/tensorflow/blob/master/tensorflow/python/framework/errors_test.py#L33
    
    * fix: add pragma for coverage
    
    * Fix whitespace
    @msuozzo
    msuozzo authoredJan 18, 2022
    Configuration menu
    Copy the full SHA
    f54d81fView commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2022

  1. chore(python): Noxfile recognizes that tests can live in a folder (#1115

    )
    
    Source-Link: googleapis/synthtool@4760d8d
    Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:f0e4b51deef56bed74d3e2359c583fc104a8d6367da3984fc5c66938db738828
    
    Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply..com>
    @gcf-owl-bot
    gcf-owl-bot[bot] and gcf-owl-bot[bot] authoredJan 19, 2022
    Configuration menu
    Copy the full SHA
    fa8aea0View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2022

  1. chore(python): exclude templated GH action workflows (#1116)

    * ci(python): run lint / unit tests / docs as GH actions
    
    Source-Link: googleapis/synthtool@57be0cd
    Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:ed1f9983d5a935a89fe8085e8bb97d94e41015252c5b6c9771257cf8624367e6
    
    * exclude templated GH action workflows
    
    Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply..com>
    Co-authored-by: Anthonios Partheniou <[email protected]>
    3 people authoredJan 22, 2022
    Configuration menu
    Copy the full SHA
    970c2a4View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2022

  1. Configuration menu
    Copy the full SHA
    aee4e61View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2022

  1. chore: use gapic-generator-python 0.62.1 (#1127)

    committer: parthea
    PiperOrigin-RevId: 425964861
    
    Source-Link: googleapis/googleapis@84b1a5a
    
    Source-Link: googleapis/googleapis-gen@4fb761b
    Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNGZiNzYxYmJkODUwNmFjMTU2ZjQ5YmFjNWYxODMwNmFhOGViM2FhOCJ9
    
    * 🦉 Updates from OwlBot
    
    See https://.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
    
    Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply..com>
    @gcf-owl-bot
    gcf-owl-bot[bot] and gcf-owl-bot[bot] authoredFeb 4, 2022
    Configuration menu
    Copy the full SHA
    8712b6fView commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2022

  1. docs: show common job properties in get_job and cancel_job samples (

    #1137)
    
    * docs: show common job properties in `get_job` and `cancel_job` samples
    
    * flake8
    @tswast
    tswast authoredFeb 14, 2022
    Configuration menu
    Copy the full SHA
    8edc10dView commit details
    Browse the repository at this point in the history
  2. docs: reference BigQuery REST API defaults in LoadJobConfig descrip… (

    #1132)
    
    …tion
    
    Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
    - [ ] Make sure to open an issue as a [bug/issue](https://.com/googleapis/python-bigquery/issues/new/choose) before writing your code!  That way we can discuss the change, evaluate designs, and agree on the general idea
    - [ ] Ensure the tests and linter pass
    - [ ] Code coverage does not decrease (if any source code was changed)
    - [ ] Appropriate docs were updated (if necessary)
    
    Fixes internal issue 213442215 🦕
    @tswast
    tswast authoredFeb 14, 2022
    Configuration menu
    Copy the full SHA
    18d9580View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2022

  1. Configuration menu
    Copy the full SHA
    1c7dbddView commit details
    Browse the repository at this point in the history
  2. fix: return 403 when VPC-SC violation happens (#1131)

    This is fixing the issue where VPC-SC violation is not returning 403. Error message map does not recognize VPCSC policy violation error and will default to return an internal server error.
    
    Co-authored-by: Tim Swast <[email protected]>
    Erroration2022 and tswast authoredFeb 16, 2022
    Configuration menu
    Copy the full SHA
    View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7dd30afView commit details
    Browse the repository at this point in the history

Commits on Feb 17, 2022

  1. chore(main): release 2.33.0 (#1138)

    Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply..com>
    @release-please
    release-please[bot] authoredFeb 17, 2022
    Configuration menu
    Copy the full SHA
    View commit details
    Browse the repository at this point in the history
Loading