github-app-auth 0.4.0 → 0.4.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 +6 -0
- data/lib/github_app_auth/app_installation.rb +1 -1
- data/lib/github_app_auth/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dd6c974c47b03e2bb0a05190dba174f12e9da3124a9ec4bea06a2e67cf18d22e
|
4
|
+
data.tar.gz: a595bc45847eda0d03ac331a26aa428b6dc22dddb54b8d4921d8b732b985f89f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 94e68a5b4c16113ee1ada2271897bfc59ee9151996535560752e78a6db5b58dd215a1ab9699030b04d81af5ee36e32763a31199beb6a3da5dd9133ea6e826dc9
|
7
|
+
data.tar.gz: 88a291a1f4566bfd7ccda3346dd934f5a9c68cecbe32278637c9c3bd5bc783c792d2e3415e141564d1613ebc7095e78fc34cf47ca55db9ed459cd80a2593c416
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 0.4.2
|
4
|
+
- fixed inaccurate error message
|
5
|
+
|
6
|
+
## 0.4.1
|
7
|
+
- loosen restriction on Octokit version
|
8
|
+
|
3
9
|
## 0.4.0
|
4
10
|
- remove deprecated app_* methods that were only repository installations
|
5
11
|
- change require to 'github_app_auth' when adding linter
|
@@ -39,7 +39,7 @@ module GitHub
|
|
39
39
|
|
40
40
|
resp = application_client.create_app_installation_access_token(installation[:id])
|
41
41
|
if resp.nil? || resp[:token].nil?
|
42
|
-
raise GitHub::App::Auth::TokenError, "Could generate installation token for #{type}: #{name}"
|
42
|
+
raise GitHub::App::Auth::TokenError, "Could not generate installation token for #{type}: #{name}"
|
43
43
|
end
|
44
44
|
|
45
45
|
resp[:token]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: github-app-auth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Horton
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-11-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jwt
|
@@ -28,14 +28,14 @@ dependencies:
|
|
28
28
|
name: octokit
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '6.1'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - "
|
38
|
+
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '6.1'
|
41
41
|
- !ruby/object:Gem::Dependency
|