google-cloud-bigquery 1.61.0 → 1.61.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: ae087fd9a1d2cc0921fe7b72c505fe3828add1beefa9482f4323de8759a6ef1f
4
- data.tar.gz: 7390b66a15f2b1b63efd8ce65b94190f437d8f20a3184512722e41d5f9a80e3f
3
+ metadata.gz: 3b011fdd6daa487b99c4c1bf684f3952f9cd380743048c5a314241750a01fbf3
4
+ data.tar.gz: d7668277ad007c19d12b06c8cf6fd02695345dea12a1e6f9d3ac573bc5c70e45
5
5
  SHA512:
6
- metadata.gz: d645597d965f183c9eefcdbbd7d5759eef90f05a68ac5210291dab1146924bb0bc3bd0b5c25f42055b4750474125123333333de177e40fb100d160af179eee62
7
- data.tar.gz: c08b54e15f8fdc7177f97ee7d073ab32057bce243ce0465dc26c121a29cbf95f913f1045eaafffcf614037e13c47d37b58dd00d386f30f268def6a50425b73b5
6
+ metadata.gz: a85f76563d165c7fecb23040c2f46a55edb0a89bb0564520fe1d95ac2a5e34862f5375adbefabd1764cab3fb888dfe40574b7b92d7292a297db5647d7e9fb121
7
+ data.tar.gz: ac10adf9544cf44fa4f7dee744340db9976fc86e09c458eb209692561fc9fb05abd350ceb358bfae3bb3bb06b2f7bc5a1804a7ef8811eca16c7d9f92c3e6002d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release History
2
2
 
3
+ ### 1.61.1 (2025-11-21)
4
+
5
+ #### Bug Fixes
6
+
7
+ * Fix broken links
8
+ #### Documentation
9
+
10
+ * Clarify comments on job error status
11
+
3
12
  ### 1.61.0 (2025-11-04)
4
13
 
5
14
  #### Features
data/OVERVIEW.md CHANGED
@@ -14,7 +14,7 @@ connecting in the {file:AUTHENTICATION.md Authentication Guide}.
14
14
 
15
15
  To help you get started quickly, the first few examples below use a public
16
16
  dataset provided by Google. As soon as you have [signed
17
- up](https://cloud.google.com/bigquery/sign-up) to use BigQuery, and provided
17
+ up](https://cloud.google.com/bigquery) to use BigQuery, and provided
18
18
  that you stay in the free tier for queries, you should be able to run these
19
19
  first examples without the need to set up billing or to load data (although
20
20
  we'll show you how to do that too.)
@@ -249,8 +249,8 @@ dataset = bigquery.create_dataset "my_dataset"
249
249
  Now that you have a dataset, you can use it to create a table. Every table is
250
250
  defined by a schema that may contain nested and repeated fields. The example
251
251
  below shows a schema with a repeated record field named `cities_lived`. (For
252
- more information about nested and repeated fields, see [Preparing Data for
253
- Loading](https://cloud.google.com/bigquery/preparing-data-for-loading).)
252
+ more information about nested and repeated fields, see
253
+ [Using Nested and Repeated Fields](https://docs.cloud.google.com/bigquery/docs/best-practices-performance-nested).)
254
254
 
255
255
  ```ruby
256
256
  require "google/cloud/bigquery"
@@ -455,7 +455,7 @@ bigquery = Google::Cloud::Bigquery.new retries: 10, timeout: 120
455
455
  ```
456
456
 
457
457
  See the [BigQuery error
458
- table](https://cloud.google.com/bigquery/troubleshooting-errors#errortable) for
458
+ table](https://docs.cloud.google.com/bigquery/docs/error-messages) for
459
459
  a list of error conditions.
460
460
 
461
461
  ## Additional information
@@ -327,8 +327,8 @@ module Google
327
327
  end
328
328
 
329
329
  ##
330
- # The last error for the job, if any errors have occurred. Returns a
331
- # hash.
330
+ # Output only. Final error result of the job. If present, indicates that
331
+ # the job has completed and was unsuccessful.
332
332
  #
333
333
  # @see https://cloud.google.com/bigquery/docs/reference/v2/jobs Jobs API
334
334
  # reference
@@ -346,8 +346,10 @@ module Google
346
346
  end
347
347
 
348
348
  ##
349
- # The errors for the job, if any errors have occurred. Returns an array
350
- # of hash objects. See {#error}.
349
+ # Output only. The first errors encountered during the running of the
350
+ # job. The final message includes the number of errors that caused the
351
+ # process to stop. Errors here do not necessarily mean that the job has
352
+ # not completed or was unsuccessful.
351
353
  #
352
354
  # @return [Array<Hash>, nil] Returns an array of hashes containing
353
355
  # `reason` and `message` keys:
@@ -16,7 +16,7 @@
16
16
  module Google
17
17
  module Cloud
18
18
  module Bigquery
19
- VERSION = "1.61.0".freeze
19
+ VERSION = "1.61.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.61.0
4
+ version: 1.61.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Moore