google-cloud-bigquery 1.63.0 → 1.64.0

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: 52cd3568e7aae513bd61c21a72ff9aa34e8323938178813185a8932b362afa1a
4
- data.tar.gz: b1e6f9c15ca5d0bf01b97ee5d4018d2ac186f0f3a9a10b886b7557d590db3355
3
+ metadata.gz: 6ecf06feb2dbf7b6ae67eb02660b8d994e2ec367d7000a5c3cc7752606b3b6d5
4
+ data.tar.gz: 4ea541f6cc936f19f60a816f9c6159d48b6fed5488084a96757ec857d8198c7b
5
5
  SHA512:
6
- metadata.gz: 914cf619a05a65e8f17e3f8ee79ea79d725678630860206f497b6bd6684740f5ced3bb4b56bdf3ba6a314da9f53be06f1a6f3b5a10654d3ff2a860ca559d3f65
7
- data.tar.gz: f5c106b11b871c49f0fecdf242c3da4ae101b77fd329b1ad7736c9197a3ff511474625d95f1a618469327312b4c20676f9c595436673a52530870bc2be7e4106
6
+ metadata.gz: 822e3f496d70d7b5bd8f079132345273435c01aba6eafb11490467312b2b45ac949838a290d9bc457bb095a6708ce96dc74f4d9a01cd3b5f44ec5b99dd10cfe9
7
+ data.tar.gz: 5ca9a63ae1294459f9c35a974a43b4672f6d14572b81f105be1d036d5a8382a51b42dd302b084eb94a6395c68a6470e802cb67ea66496a613d27ad15fa7e7166
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release History
2
2
 
3
+ ### 1.64.0 (2026-05-11)
4
+
5
+ #### Features
6
+
7
+ * Support bigdecimal 4.x ([#33930](https://github.com/googleapis/google-cloud-ruby/issues/33930))
8
+
9
+ ### 1.63.1 (2026-05-05)
10
+
11
+ #### Bug Fixes
12
+
13
+ * 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)
14
+
3
15
  ### 1.63.0 (2026-04-15)
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.63.0".freeze
19
+ VERSION = "1.64.0".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.63.0
4
+ version: 1.64.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Moore
@@ -14,16 +14,22 @@ dependencies:
14
14
  name: bigdecimal
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '3.0'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '5'
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
25
28
  - !ruby/object:Gem::Version
26
29
  version: '3.0'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '5'
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: concurrent-ruby
29
35
  requirement: !ruby/object:Gem::Requirement