Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: googleapis/java-bigquery
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.136.0
Choose a base ref
...
head repository: googleapis/java-bigquery
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.137.0
Choose a head ref
  • 9 commits
  • 20 files changed
  • 4 contributors

Commits on Jul 8, 2021

  1. chore: release 1.136.1-SNAPSHOT (#1438)

    🤖 I have created a release \*beep\* \*boop\*
    ---
    ### Updating meta-information for bleeding-edge SNAPSHOT release.
    ---
    
    
    This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
    release-please[bot] authored Jul 8, 2021
    Configuration menu
    Copy the full SHA
    d658bce View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3d17e18 View commit details
    Browse the repository at this point in the history
  3. chore: regenerate README (#1440)

    This PR was generated using Autosynth. 🌈
    
    
    <details><summary>Log from Synthtool</summary>
    
    ```
    2021-07-08 20:53:20,676 synthtool [DEBUG] > Executing /root/.cache/synthtool/java-bigquery/.github/readme/synth.py.
    On branch autosynth-readme
    nothing to commit, working tree clean
    2021-07-08 20:53:22,072 synthtool [DEBUG] > Wrote metadata to .github/readme/synth.metadata/synth.metadata.
    
    ```
    </details>
    
    Full log will be available here:
    https://source.cloud.google.com/results/invocations/4926a2b2-9b00-4061-9c12-b8f03ce3b96b/targets
    
    - [ ] To automatically regenerate this PR, check this box. (May take up to 24 hours.)
    yoshi-automation authored Jul 8, 2021
    Configuration menu
    Copy the full SHA
    526c517 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2021

  1. chore: remove All rights reserved clause from java.header (#1441)

    After discussion with OSPO, it has been decided to remove "All rights reserved" clause from the java.header file to better reflect the [correct license header](https://g3doc.corp.google.com/company/teams/opensource/releasing/preparing.md?cl=head#Apache-header).
    
    Source-Author: Neenu Shaji <[email protected]>
    Source-Date: Thu Jul 8 18:00:44 2021 -0400
    Source-Repo: googleapis/synthtool
    Source-Sha: 09c59c20a4bf0daed1665af59035ff240fe356df
    Source-Link: googleapis/synthtool@09c59c2
    yoshi-automation authored Jul 9, 2021
    Configuration menu
    Copy the full SHA
    f8c8eab View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b7aef82 View commit details
    Browse the repository at this point in the history
  3. chore: regenerate README (#1442)

    This PR was generated using Autosynth. 🌈
    
    
    <details><summary>Log from Synthtool</summary>
    
    ```
    2021-07-09 11:13:38,134 synthtool [DEBUG] > Executing /root/.cache/synthtool/java-bigquery/.github/readme/synth.py.
    On branch autosynth-readme
    nothing to commit, working tree clean
    2021-07-09 11:13:39,510 synthtool [DEBUG] > Wrote metadata to .github/readme/synth.metadata/synth.metadata.
    
    ```
    </details>
    
    Full log will be available here:
    https://source.cloud.google.com/results/invocations/aac7f7e0-f599-4f64-b2ca-acc23b4c7490/targets
    
    - [ ] To automatically regenerate this PR, check this box. (May take up to 24 hours.)
    yoshi-automation authored Jul 9, 2021
    Configuration menu
    Copy the full SHA
    5bee589 View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2021

  1. feat: Implemented BigQueryRetryAlgorithm to retry on the basis of the…

    … configured re-triable error messages (#1426)
    
    * Updated BigQueryImpl
    
    * Initial Commit
    
    * Using BigQueryRetryAlgorithm as the retry algorithm
    
    * Created BigQueryRetryAlgorithm as a subclass of RetryAlgorithm
    
    * BigQueryErrorMessages property file
    
    * Implemented Builder Logic for BigQueryRetryConfig
    
    * Using BigQueryRetryConfig for getQueryResults
    
    * Updated shouldRetry with the logic to retry based on error messages
    
    * Implemented null checks on shouldRetryBasedOnBigQueryRetryConfig
    
    * Removed `Status` from shouldRetryBasedOnBigQueryRetryConfig implementation
    
    * Removed unused imports
    
    * created DEFAULT_RATE_LIMIT_EXCEEDED_RETRY_CONFIG for getQueryResults
    
    * Added testGetQueryResultsRetry test for testing getQueryResults Retry
    
    * Overriding createNextAttempt method so that it generates an attempt based on the error message
    
    * Linted BigQueryRetryHelper
    
    * Linted testGetQueryResultsRetry
    
    * Linted BigQueryRetryAlgorithm
    
    * Linted BigQueryErrorMessages
    
    * Linted BigQueryRetryConfig
    
    * Fixed Linting
    
    * Fixed Linting
    
    * Fixed Linting
    
    * Created translateAndThrow(BigQueryRetryHelper.BigQueryRetryHelperException ex) method to handle BigQueryRetryHelperException
    
    * Handling BigQueryRetryHelper.BigQueryRetryHelperException for getQueryResults
    
    * Implementing BigQueryRetryHelper.runWithRetries from TableResult.queryRPC method
    
    * Implementing testFastQueryRateLimitIdempotency Method to test Idempotency of the BigQueryRetryHelper.runWithRetries for TableResult.query(...)
    
    * Changed DEFAULT_RATE_LIMIT_EXCEEDED_RETRY_CONFIG to DEFAULT_RETRY_CONFIG
    
    * Implemented `BigQueryRetryHelper.runWithRetries` on `QueryResponse waitForQueryResults` method, which is used by `TableResult getQueryResults` method
    
    * Revert "Implemented `BigQueryRetryHelper.runWithRetries` on `QueryResponse waitForQueryResults` method, which is used by `TableResult getQueryResults` method"
    
    This reverts commit 84a3418.
    
    * Revert "Changed DEFAULT_RATE_LIMIT_EXCEEDED_RETRY_CONFIG to DEFAULT_RETRY_CONFIG"
    
    This reverts commit 22b1706.
    
    * Renamed DEFAULT_RATE_LIMIT_EXCEEDED_RETRY_CONFIG to DEFAULT_RETRY_CONFIG
    
    * Revert "Renamed DEFAULT_RATE_LIMIT_EXCEEDED_RETRY_CONFIG to DEFAULT_RETRY_CONFIG"
    
    This reverts commit 2d21e11.
    
    * Renamed DEFAULT_RATE_LIMIT_EXCEEDED_RETRY_CONFIG to DEFAULT_RETRY_CONFIG
    
    * Implemented BigQueryRetryHelper.runWithRetries on `QueryResponse waitForQueryResults` method, which is used by `TableResult getQueryResults` method
    prash-mi authored Jul 14, 2021
    Configuration menu
    Copy the full SHA
    44d9795 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    271b861 View commit details
    Browse the repository at this point in the history
  3. chore: release 1.137.0 (#1446)

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