googleauth 1.13.0 → 1.13.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/googleauth/compute_engine.rb +2 -2
- data/lib/googleauth/service_account.rb +2 -2
- data/lib/googleauth/user_refresh.rb +0 -2
- data/lib/googleauth/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d8ca5b2b0c7f4ce54f7971d8de2f23f3ee0837d08d7d3c568c503308fcf82ab
|
4
|
+
data.tar.gz: d5f8b8fd2fcb4fef4240db58bf90f54a8bfd021c550a7bc9063c9087285f3921
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a4de2b23f4dc0310a18568e0618c5d81fad54dfc8d57fe3c27b954c4bd21272fcc467c2c313f98f80fa127eab11ebe0d0fc55ceed7e6c5439764500e334df49
|
7
|
+
data.tar.gz: f4aff68138105ea19875bb7a51d4b6ced9ec2e7185ce725eca205ea1dc11beb9e6019c9dd89449866598ca6e4d3abb06b91f277f34e51ac7726d79a39fc40c67
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# Release History
|
2
2
|
|
3
|
+
### 1.13.1 (2025-01-24)
|
4
|
+
|
5
|
+
#### Bug Fixes
|
6
|
+
|
7
|
+
* Signet client subclasses no longer make the update! method private ([#516](https://github.com/googleapis/google-auth-library-ruby/issues/516))
|
8
|
+
|
3
9
|
### 1.13.0 (2025-01-22)
|
4
10
|
|
5
11
|
#### Features
|
@@ -154,8 +154,6 @@ module Google
|
|
154
154
|
end
|
155
155
|
end
|
156
156
|
|
157
|
-
private
|
158
|
-
|
159
157
|
# Destructively updates these credentials.
|
160
158
|
#
|
161
159
|
# This method is called by `Signet::OAuth2::Client`'s constructor
|
@@ -177,6 +175,8 @@ module Google
|
|
177
175
|
self
|
178
176
|
end
|
179
177
|
|
178
|
+
private
|
179
|
+
|
180
180
|
def log_fetch_query
|
181
181
|
if token_type == :id_token
|
182
182
|
logger&.info do
|
@@ -136,8 +136,6 @@ module Google
|
|
136
136
|
super && !enable_self_signed_jwt?
|
137
137
|
end
|
138
138
|
|
139
|
-
private
|
140
|
-
|
141
139
|
# Destructively updates these credentials
|
142
140
|
#
|
143
141
|
# This method is called by `Signet::OAuth2::Client`'s constructor
|
@@ -164,6 +162,8 @@ module Google
|
|
164
162
|
self
|
165
163
|
end
|
166
164
|
|
165
|
+
private
|
166
|
+
|
167
167
|
def apply_self_signed_jwt! a_hash
|
168
168
|
# Use the ServiceAccountJwtHeaderCredentials using the same cred values
|
169
169
|
cred_json = {
|
data/lib/googleauth/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: googleauth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.13.
|
4
|
+
version: 1.13.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tim Emiola
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-01-
|
10
|
+
date: 2025-01-24 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: faraday
|