fog-google 1.29.0 → 1.29.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: 2823e91b65c126736ad10ba861bcbdb0ca74115e6b7fe323f47167810a39b2e4
4
- data.tar.gz: f72382617a827ecbab25342f02e16447ebc22691cdeead4b08702f6f57cfcd7d
3
+ metadata.gz: b906fc99a99a411080813fa3b393740485e4e9f135be7770dc2ae9d561999755
4
+ data.tar.gz: 631201184861b22cc6d80c89328747df129b3f4a8ee5b9b02887ed0bc7879868
5
5
  SHA512:
6
- metadata.gz: 158e366dd84994ff4bcb71b75c226cc27d93ced775b88ce32985cc037a5de942694d5e487a2febcad280fc440baacd6ddde832cbd8ecd9b1be565c72f1aa5928
7
- data.tar.gz: db4b3bb11d68344ae3ebde04ef841ce93e8f9590921c42f30932fd9bf968a693e26cf0258da6491e60fbd53b23fe5889fbbbd86c89596f5e8b4329f03f99835e
6
+ metadata.gz: a5e4728aa283c129d71622823ec3314110be7879a2d29a420fbc0d2f9ec998ab8005a663bf8cbbcc9949ff09e7613c538612aaa3f2f226de5e4e370bdb44116e
7
+ data.tar.gz: 0feb92378a91ac6d133e042537b3084a376af760a8cdcb655273eb3326a2a28b9d584b66414a5f0227a3563d0b581957fb0603952ff2ae7dccec636e96217100
data/CHANGELOG.md CHANGED
@@ -4,6 +4,12 @@ The format is loosely based on [Keep a Changelog](http://keepachangelog.com/en/1
4
4
 
5
5
  This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## 1.29.1
8
+
9
+ ### User-facing
10
+
11
+ - #653 Ensure universe domain is applied to all services
12
+
7
13
  ## 1.29.0
8
14
 
9
15
  ### User-facing
@@ -88,9 +88,12 @@ module Fog
88
88
  # Applies given options to the client instance
89
89
  #
90
90
  # @param [Google::Apis::Core::BaseService] service API service client instance
91
- # @param [Hash] options (all ignored a.t.m., except :google_client_options)
91
+ # @param [Hash] options (:universe_domain, :google_client_options)
92
92
  # @return [void]
93
93
  def apply_client_options(service, options = {})
94
+ universe_domain = universe_domain_from_options(options)
95
+ service.universe_domain = universe_domain if universe_domain
96
+
94
97
  google_client_options = options[:google_client_options]
95
98
  return if google_client_options.nil? || google_client_options.empty?
96
99
 
@@ -20,7 +20,6 @@ module Fog
20
20
  @client = initialize_google_client(options)
21
21
 
22
22
  @storage_json = ::Google::Apis::StorageV1::StorageService.new
23
- @storage_json.universe_domain = universe_domain if universe_domain
24
23
  apply_client_options(@storage_json, options)
25
24
 
26
25
  @storage_json.client_options.open_timeout_sec = options[:open_timeout_sec] if options[:open_timeout_sec]
@@ -1,5 +1,5 @@
1
1
  module Fog
2
2
  module Google
3
- VERSION = "1.29.0".freeze
3
+ VERSION = "1.29.1".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fog-google
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.29.0
4
+ version: 1.29.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nat Welch