google-cloud-bigquery 1.43.1 → 1.44.0

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: c3c421b6b6ea746282462224af1fde4752ce96d59b1d93b4ab2648c76a3c76a3
4
+ data.tar.gz: 768f7aa713d59c6ab4a235dd25871eba33fdce377bfcc8df6506c9c0d0444a98
5
5
  SHA512:
6
- metadata.gz: f7f1782907b0e18570146a0bdb5470970ba2c041beeade1509dd6fe3c9ebd03a576db0a14c8e1d34fcdd2456adfbc82e674c86c302f7adaccc63cb278e95108d
7
- data.tar.gz: b95c3d7ef958259e10fcdb0765d123f5a71043278b6d7e592546940d28b7266dbc3cfa16c5de5bfcfec1ee235d57a7a1bf9060f4eec5b41cc9525e2c7ac42a7a
6
+ metadata.gz: 42adc11cd66bd69958627e92bd7914dec94f43bfc5347f8e5a3079d8f6409d260de99e36473ae977c66c4f25e823dd989e1d65525d3c53cf5eac88e9e78c58df
7
+ data.tar.gz: e0e00961fc853a5394d230af5a948803d9c8647101bede0fcc18d03d0d02c65ad0c2a522464dd6653ef9fbbf75db0758e69d29b04d63a0cfa428b65d46aaf736
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Release History
2
2
 
3
+ ### 1.44.0 (2023-09-04)
4
+
5
+ #### Features
6
+
7
+ * support BIGQUERY_EMULATOR_HOST env variable for endpoint
8
+
3
9
  ### 1.43.1 (2023-05-19)
4
10
 
5
11
  #### 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.0".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
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.0
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-04 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