googleauth 0.16.1 → 0.16.2
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 +4 -4
- data/.github/renovate.json +6 -0
- data/.github/sync-repo-settings.yaml +18 -0
- data/.github/workflows/ci.yml +1 -1
- data/.github/workflows/release-please.yml +1 -1
- data/CHANGELOG.md +7 -0
- data/lib/googleauth/service_account.rb +4 -2
- data/lib/googleauth/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a1f96ad8fd7b2aae5671af839775b83db2c3f6b9c31e36622c2dc983d647e54d
|
|
4
|
+
data.tar.gz: 58db2385909da01755365839451a6a8bbb79fceaabd76de313dab9496a7ea0dd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 39f9a7e75bbb27ff0cd9bb50ebc077751f83ee22fec724d4de9ed54c3bde97a92e5a9f577859784d2c298405fa9cf57491bddf73043ff5a0cb6a567379fc2cbb
|
|
7
|
+
data.tar.gz: 543d6c2e8175ea1262c4235e581124378ef932fe96b7c63e27b75654a2e7cdfc5e427c6f9668141de1b06d770dedfb97ca8b94b1df800d0bdf04c1860644dc2c
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
rebaseMergeAllowed: true
|
|
2
|
+
squashMergeAllowed: true
|
|
3
|
+
mergeCommitAllowed: false
|
|
4
|
+
branchProtectionRules:
|
|
5
|
+
- pattern: master
|
|
6
|
+
isAdminEnforced: false
|
|
7
|
+
requiredStatusCheckContexts:
|
|
8
|
+
- 'cla/google'
|
|
9
|
+
requiredApprovingReviewCount: 1
|
|
10
|
+
requiresCodeOwnerReviews: true
|
|
11
|
+
requiresStrictStatusChecks: true
|
|
12
|
+
permissionRules:
|
|
13
|
+
- team: yoshi-admins
|
|
14
|
+
permission: admin
|
|
15
|
+
- team: yoshi-ruby-admins
|
|
16
|
+
permission: admin
|
|
17
|
+
- team: yoshi-ruby
|
|
18
|
+
permission: push
|
data/.github/workflows/ci.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Release History
|
|
2
2
|
|
|
3
|
+
### [0.16.2](https://www.github.com/googleapis/google-auth-library-ruby/compare/google-auth-library-ruby/v0.16.1...google-auth-library-ruby/v0.16.2) (2021-04-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* Stop attempting to get the project from gcloud when applying self-signed JWTs ([#317](https://www.github.com/googleapis/google-auth-library-ruby/issues/317)) ([39258ca](https://www.github.com/googleapis/google-auth-library-ruby/commit/39258cacafa5c770fb40d99075a97b8e6427adba))
|
|
9
|
+
|
|
3
10
|
### [0.16.1](https://www.github.com/googleapis/google-auth-library-ruby/compare/google-auth-library-ruby/v0.16.0...google-auth-library-ruby/v0.16.1) (2021-04-01)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -123,8 +123,10 @@ module Google
|
|
|
123
123
|
def apply_self_signed_jwt! a_hash
|
|
124
124
|
# Use the ServiceAccountJwtHeaderCredentials using the same cred values
|
|
125
125
|
cred_json = {
|
|
126
|
-
private_key:
|
|
127
|
-
client_email: @issuer
|
|
126
|
+
private_key: @signing_key.to_s,
|
|
127
|
+
client_email: @issuer,
|
|
128
|
+
project_id: @project_id,
|
|
129
|
+
quota_project_id: @quota_project_id
|
|
128
130
|
}
|
|
129
131
|
key_io = StringIO.new MultiJson.dump(cred_json)
|
|
130
132
|
alt = ServiceAccountJwtHeaderCredentials.make_creds json_key_io: key_io
|
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: 0.16.
|
|
4
|
+
version: 0.16.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: 2021-04-
|
|
11
|
+
date: 2021-04-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -140,6 +140,8 @@ files:
|
|
|
140
140
|
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
|
141
141
|
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
|
142
142
|
- ".github/ISSUE_TEMPLATE/support_request.md"
|
|
143
|
+
- ".github/renovate.json"
|
|
144
|
+
- ".github/sync-repo-settings.yaml"
|
|
143
145
|
- ".github/workflows/ci.yml"
|
|
144
146
|
- ".github/workflows/release-please.yml"
|
|
145
147
|
- ".gitignore"
|
|
@@ -226,7 +228,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
226
228
|
- !ruby/object:Gem::Version
|
|
227
229
|
version: '0'
|
|
228
230
|
requirements: []
|
|
229
|
-
rubygems_version: 3.2.
|
|
231
|
+
rubygems_version: 3.2.16
|
|
230
232
|
signing_key:
|
|
231
233
|
specification_version: 4
|
|
232
234
|
summary: Google Auth Library for Ruby
|