googleauth 1.11.1 → 1.11.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/googleauth/compute_engine.rb +31 -14
- data/lib/googleauth/credentials.rb +6 -0
- data/lib/googleauth/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1cfe9034bbf9362f45a8489765bee5b8253deb27c75d50a43b01a4ff3f46a002
|
4
|
+
data.tar.gz: e5bd5f777b3caa2aeae4d42e0576d8f10295cba035736f741399db80a58c50e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1bf31f0d2c50d10cbb1f2e0aec62bb720e0274b518617d0263e30c0952c72589784102a09f251a11996eb7c05181b1639b685803c575d1090c55ce573a62a9d7
|
7
|
+
data.tar.gz: e941dad8ae8e72483587a28d014870a694773dac46aa77f8a8ce0e7fabd2202f82d08e5b1bbc062a4e748effa40fb21f450b4b1b5e423cc66ea76ec04b1c2e23
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# Release History
|
2
2
|
|
3
|
+
### 1.11.2 (2024-10-23)
|
4
|
+
|
5
|
+
#### Bug Fixes
|
6
|
+
|
7
|
+
* Temporarily disable universe domain query from GCE metadata server ([#493](https://github.com/googleapis/google-auth-library-ruby/issues/493))
|
8
|
+
* Use updated metadata path for universe-domain ([#496](https://github.com/googleapis/google-auth-library-ruby/issues/496))
|
9
|
+
|
3
10
|
### 1.11.1 (2024-10-04)
|
4
11
|
|
5
12
|
#### Bug Fixes
|
@@ -80,11 +80,16 @@ module Google
|
|
80
80
|
alias unmemoize_all reset_cache
|
81
81
|
end
|
82
82
|
|
83
|
+
# @private Temporary; remove when universe domain metadata endpoint is stable (see b/349488459).
|
84
|
+
attr_accessor :disable_universe_domain_check
|
85
|
+
|
83
86
|
# Construct a GCECredentials
|
84
87
|
def initialize options = {}
|
85
88
|
# Override the constructor to remember whether the universe domain was
|
86
89
|
# overridden by a constructor argument.
|
87
90
|
@universe_domain_overridden = options["universe_domain"] || options[:universe_domain] ? true : false
|
91
|
+
# TODO: Remove when universe domain metadata endpoint is stable (see b/349488459).
|
92
|
+
@disable_universe_domain_check = true
|
88
93
|
super options
|
89
94
|
end
|
90
95
|
|
@@ -127,20 +132,8 @@ module Google
|
|
127
132
|
else
|
128
133
|
Signet::OAuth2.parse_credentials body, content_type
|
129
134
|
end
|
130
|
-
|
131
|
-
|
132
|
-
universe_domain = "googleapis.com" if !universe_domain || universe_domain.empty?
|
133
|
-
hash["universe_domain"] = universe_domain.strip
|
134
|
-
end
|
135
|
-
# The response might have been cached, which means expires_in might be
|
136
|
-
# stale. Update it based on the time since the data was retrieved.
|
137
|
-
# We also ensure expires_in is conservative; subtracting at least 1
|
138
|
-
# second to offset any skew from metadata server latency.
|
139
|
-
if hash["expires_in"].is_a? Numeric
|
140
|
-
offset = 1 + (Process.clock_gettime(Process::CLOCK_MONOTONIC) - retrieval_time).round
|
141
|
-
hash["expires_in"] -= offset if offset.positive?
|
142
|
-
hash["expires_in"] = 0 if hash["expires_in"].negative?
|
143
|
-
end
|
135
|
+
add_universe_domain_to hash
|
136
|
+
adjust_for_stale_expires_in hash, retrieval_time
|
144
137
|
hash
|
145
138
|
end
|
146
139
|
|
@@ -152,6 +145,30 @@ module Google
|
|
152
145
|
end
|
153
146
|
hash
|
154
147
|
end
|
148
|
+
|
149
|
+
def add_universe_domain_to hash
|
150
|
+
return if @universe_domain_overridden
|
151
|
+
universe_domain =
|
152
|
+
if disable_universe_domain_check
|
153
|
+
# TODO: Remove when universe domain metadata endpoint is stable (see b/349488459).
|
154
|
+
"googleapis.com"
|
155
|
+
else
|
156
|
+
Google::Cloud.env.lookup_metadata "universe", "universe-domain"
|
157
|
+
end
|
158
|
+
universe_domain = "googleapis.com" if !universe_domain || universe_domain.empty?
|
159
|
+
hash["universe_domain"] = universe_domain.strip
|
160
|
+
end
|
161
|
+
|
162
|
+
# The response might have been cached, which means expires_in might be
|
163
|
+
# stale. Update it based on the time since the data was retrieved.
|
164
|
+
# We also ensure expires_in is conservative; subtracting at least 1
|
165
|
+
# second to offset any skew from metadata server latency.
|
166
|
+
def adjust_for_stale_expires_in hash, retrieval_time
|
167
|
+
return unless hash["expires_in"].is_a? Numeric
|
168
|
+
offset = 1 + (Process.clock_gettime(Process::CLOCK_MONOTONIC) - retrieval_time).round
|
169
|
+
hash["expires_in"] -= offset if offset.positive?
|
170
|
+
hash["expires_in"] = 0 if hash["expires_in"].negative?
|
171
|
+
end
|
155
172
|
end
|
156
173
|
end
|
157
174
|
end
|
@@ -299,6 +299,12 @@ module Google
|
|
299
299
|
#
|
300
300
|
attr_reader :quota_project_id
|
301
301
|
|
302
|
+
# @private Temporary; remove when universe domain metadata endpoint is stable (see b/349488459).
|
303
|
+
def disable_universe_domain_check
|
304
|
+
return false unless @client.respond_to? :disable_universe_domain_check
|
305
|
+
@client.disable_universe_domain_check
|
306
|
+
end
|
307
|
+
|
302
308
|
# @private Delegate client methods to the client object.
|
303
309
|
extend Forwardable
|
304
310
|
|
data/lib/googleauth/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: googleauth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.11.
|
4
|
+
version: 1.11.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tim Emiola
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-10-
|
11
|
+
date: 2024-10-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -186,7 +186,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
186
186
|
- !ruby/object:Gem::Version
|
187
187
|
version: '0'
|
188
188
|
requirements: []
|
189
|
-
rubygems_version: 3.5.
|
189
|
+
rubygems_version: 3.5.21
|
190
190
|
signing_key:
|
191
191
|
specification_version: 4
|
192
192
|
summary: Google Auth Library for Ruby
|