google-cloud-bigquery 1.43.1 → 1.44.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e27ba48c9cd2221a917650e0499941a061badcd5f5cab2f190dccf6dd16328a0
4
- data.tar.gz: 51a6d6dde1b54ca6a83ce0826959d129280de0a1cc699a85f95dfb9dc5c18d09
3
+ metadata.gz: cbb9424743a823ba614589a7945d6cdef23b0c788d1240dc5d1be59b9c216751
4
+ data.tar.gz: b0a00cc425a642ad511938898edbe81dd29b613b504ae03e1600de416d057b8e
5
5
  SHA512:
6
- metadata.gz: f7f1782907b0e18570146a0bdb5470970ba2c041beeade1509dd6fe3c9ebd03a576db0a14c8e1d34fcdd2456adfbc82e674c86c302f7adaccc63cb278e95108d
7
- data.tar.gz: b95c3d7ef958259e10fcdb0765d123f5a71043278b6d7e592546940d28b7266dbc3cfa16c5de5bfcfec1ee235d57a7a1bf9060f4eec5b41cc9525e2c7ac42a7a
6
+ metadata.gz: d195d85dd1e139d6ecd2e79df8805ef9c1d3f268ff60aab6e9fe1a7a452e597e9b689f65625b015095772f4c4999576310360868fa0bf50c1e39f5c53b539ab2
7
+ data.tar.gz: 0e94844e318d214f25883c76572028f762f298357cbb021e1418276340491360209071fec9ce578e048f3d95fb88d1ab48f5c0d46aa0c5851bd63745550f170a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release History
2
2
 
3
+ ### 1.44.1 (2023-09-08)
4
+
5
+ #### Bug Fixes
6
+
7
+ * remove unnecessary warning ([#22904](https://github.com/googleapis/google-cloud-ruby/issues/22904))
8
+
9
+ ### 1.44.0 (2023-09-04)
10
+
11
+ #### Features
12
+
13
+ * support BIGQUERY_EMULATOR_HOST env variable for endpoint
14
+
3
15
  ### 1.43.1 (2023-05-19)
4
16
 
5
17
  #### Bug Fixes
@@ -479,7 +479,7 @@ module Google
479
479
  def tags
480
480
  ensure_full_data!
481
481
  return nil if @gapi.tags.nil?
482
- @gapi.tags.map { |gapi| Tag.from_gapi(gapi) }
482
+ @gapi.tags.map { |gapi| Tag.from_gapi gapi }
483
483
  end
484
484
 
485
485
  ##
@@ -16,7 +16,7 @@
16
16
  module Google
17
17
  module Cloud
18
18
  module Bigquery
19
- VERSION = "1.43.1".freeze
19
+ VERSION = "1.44.1".freeze
20
20
  end
21
21
  end
22
22
  end
@@ -122,6 +122,9 @@ Google::Cloud.configure.add_config! :bigquery do |config|
122
122
  default_project = Google::Cloud::Config.deferred do
123
123
  ENV["BIGQUERY_PROJECT"]
124
124
  end
125
+ default_endpoint = Google::Cloud::Config.deferred do
126
+ ENV["BIGQUERY_EMULATOR_HOST"]
127
+ end
125
128
  default_creds = Google::Cloud::Config.deferred do
126
129
  Google::Cloud::Config.credentials_from_env(
127
130
  "BIGQUERY_CREDENTIALS", "BIGQUERY_CREDENTIALS_JSON", "BIGQUERY_KEYFILE", "BIGQUERY_KEYFILE_JSON"
@@ -136,5 +139,5 @@ Google::Cloud.configure.add_config! :bigquery do |config|
136
139
  config.add_field! :quota_project, nil, match: String
137
140
  config.add_field! :retries, nil, match: Integer
138
141
  config.add_field! :timeout, nil, match: Integer
139
- config.add_field! :endpoint, nil, match: String
142
+ config.add_field! :endpoint, default_endpoint, match: String, allow_nil: true
140
143
  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.43.1
4
+ version: 1.44.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Moore
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-05-19 00:00:00.000000000 Z
12
+ date: 2023-09-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: concurrent-ruby
@@ -321,7 +321,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
321
321
  - !ruby/object:Gem::Version
322
322
  version: '0'
323
323
  requirements: []
324
- rubygems_version: 3.4.2
324
+ rubygems_version: 3.4.19
325
325
  signing_key:
326
326
  specification_version: 4
327
327
  summary: API Client library for Google BigQuery