google-cloud-bigquery 1.62.0 → 1.63.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0da8d71ecd5f616060ea54eacfc1464db6179da953c1d6b70e790ec12773b4d4
4
- data.tar.gz: 5bb06943b5d6d4c885ab7a86a8c6c16c0b934329c7c9181c7b2cf8359dec0bd6
3
+ metadata.gz: 7d83a3a82750170b564fbe961fa6f7289dedfe945cf51f7b7a3146ae85852ed3
4
+ data.tar.gz: fe2a32aefdf50775acf114990f8c646b89f0fafba413f4f3a3a196b8a7d011b2
5
5
  SHA512:
6
- metadata.gz: 5486e1e0ef128c7ac0e0f7b42b690376bf819bfcbf2d007657cde9153b54a8e14ba2df8bdc7927fea1c01029d92bd35b997d32357ef02d4f7dc11870ad34cdad
7
- data.tar.gz: 2b970301209c04842bc465146484c4b489af13c2e060ac6801fc26272dd4c72aa9de6c5bb4808e30dd6642fa57d5b0230326d861f2b72b14cd8615c1c08da441
6
+ metadata.gz: f936b20186d910ae89b0625f254f6d595a2b87af5b64561771333dc7a3faddfeafcf480e9c06dd042097840c652c455c8b73d1f0c1f988f5ae8fb7f4de60a991
7
+ data.tar.gz: b2373720653885600ec4c215752e6f285c4141808b82ba5e5bb52f7f52be285d0096991f41b78b69173e2524dd8a3e325ac422c5a45ab0fdb42223d78e4dadcf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release History
2
2
 
3
+ ### 1.63.1 (2026-05-05)
4
+
5
+ #### Bug Fixes
6
+
7
+ * use destination table's project_id for queries ([#33886](https://github.com/googleapis/google-cloud-ruby/issues/33886)) ([df84fa9](https://github.com/googleapis/google-cloud-ruby/commit/df84fa9883aa9e159bcafbf8033780f33bf19fc5)), closes [#33810](https://github.com/googleapis/google-cloud-ruby/issues/33810)
8
+
9
+ ### 1.63.0 (2026-04-15)
10
+
11
+ #### Features
12
+
13
+ * Update minimum Ruby to v3.2 and support v4.0 ([#33811](https://github.com/googleapis/google-cloud-ruby/issues/33811))
14
+
3
15
  ### 1.62.0 (2026-01-06)
4
16
 
5
17
  #### Features
@@ -757,6 +757,7 @@ module Google
757
757
 
758
758
  data_hash = service.list_tabledata destination_table_dataset_id,
759
759
  destination_table_table_id,
760
+ project_id: destination_table_project_id,
760
761
  token: token,
761
762
  max: max,
762
763
  start: start,
@@ -1828,6 +1829,10 @@ module Google
1828
1829
  @gapi.configuration.query.destination_table.table_id
1829
1830
  end
1830
1831
 
1832
+ def destination_table_project_id
1833
+ @gapi.configuration.query.destination_table.project_id
1834
+ end
1835
+
1831
1836
  def destination_table_gapi
1832
1837
  Google::Apis::BigqueryV2::Table.new(
1833
1838
  table_reference: @gapi.configuration.query.destination_table,
@@ -248,11 +248,11 @@ access_policy_version: access_policy_version, update_mode: update_mode
248
248
  ##
249
249
  # Retrieves data from the table.
250
250
  def list_tabledata dataset_id, table_id, max: nil, token: nil, start: nil,
251
- format_options_use_int64_timestamp: nil
251
+ format_options_use_int64_timestamp: nil, project_id: nil
252
252
  # The list operation is considered idempotent
253
253
  execute backoff: true do
254
254
  json_txt = service.list_table_data \
255
- @project, dataset_id, table_id,
255
+ project_id || @project, dataset_id, table_id,
256
256
  max_results: max,
257
257
  page_token: token,
258
258
  start_index: start,
@@ -16,7 +16,7 @@
16
16
  module Google
17
17
  module Cloud
18
18
  module Bigquery
19
- VERSION = "1.62.0".freeze
19
+ VERSION = "1.63.1".freeze
20
20
  end
21
21
  end
22
22
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-bigquery
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.62.0
4
+ version: 1.63.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Moore
@@ -188,7 +188,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
188
188
  requirements:
189
189
  - - ">="
190
190
  - !ruby/object:Gem::Version
191
- version: '3.1'
191
+ version: '3.2'
192
192
  required_rubygems_version: !ruby/object:Gem::Requirement
193
193
  requirements:
194
194
  - - ">="