github-authentication 1.3.0 → 1.3.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 +4 -4
- data/CHANGELOG.md +3 -0
- data/Gemfile.lock +2 -2
- data/github-authentication.gemspec +1 -1
- data/lib/github_authentication/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d5d1f405a1d8680e371ec7630ecf71d5aed38bf1ddfa8cc5b8801d87540013c8
|
|
4
|
+
data.tar.gz: 01cf8cf5217d077f9551a10110bf5ac65434ad3e64da5e6303df951b680d5047
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a0751d30f569862d44602b2d0fbd2a835b14f734cbdf2abc9ff2b9ce544671f9d7f7a68118c531517aa88976cbf9fd9fcde9a684af471e6674debf7a33d2ac92
|
|
7
|
+
data.tar.gz: 54f30dfd8d38f12c716af4e6489af5ddeb25abafeee3342d74a24604135b3f47b0c7a45ca1eea2f3b4b34940487a8b6ac8416794d715b537347f8c0de36ebb7c
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
...
|
|
4
4
|
|
|
5
|
+
### 1.3.1
|
|
6
|
+
- Fixed activesupport to be a runtime dependency, not a development dependency
|
|
7
|
+
|
|
5
8
|
### 1.3.0
|
|
6
9
|
- Add `GithubAuthentication.provider(org:, env:)` as a high-level entrypoint for Ruby code that needs GitHub App tokens without manually wiring up Environment, Generator, Cache, and Provider
|
|
7
10
|
- Simplify `GitCredentialHelper` to accept a `provider` directly
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
github-authentication (1.3.
|
|
4
|
+
github-authentication (1.3.1)
|
|
5
|
+
activesupport (> 7)
|
|
5
6
|
jwt (~> 2.2)
|
|
6
7
|
|
|
7
8
|
GEM
|
|
@@ -94,7 +95,6 @@ PLATFORMS
|
|
|
94
95
|
x86_64-linux
|
|
95
96
|
|
|
96
97
|
DEPENDENCIES
|
|
97
|
-
activesupport
|
|
98
98
|
github-authentication!
|
|
99
99
|
minitest (~> 5.0)
|
|
100
100
|
mocha (~> 2)
|
|
@@ -39,7 +39,7 @@ Gem::Specification.new do |spec|
|
|
|
39
39
|
|
|
40
40
|
spec.required_ruby_version = ">= 2.7.0"
|
|
41
41
|
|
|
42
|
-
spec.
|
|
42
|
+
spec.add_dependency("activesupport", ">7")
|
|
43
43
|
spec.add_development_dependency("minitest", "~> 5.0")
|
|
44
44
|
spec.add_development_dependency("mocha", "~> 2")
|
|
45
45
|
spec.add_development_dependency("rake", "~> 13")
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: github-authentication
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Frederik Dudzik
|
|
@@ -27,16 +27,16 @@ dependencies:
|
|
|
27
27
|
name: activesupport
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
29
29
|
requirements:
|
|
30
|
-
- - "
|
|
30
|
+
- - ">"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: '
|
|
33
|
-
type: :
|
|
32
|
+
version: '7'
|
|
33
|
+
type: :runtime
|
|
34
34
|
prerelease: false
|
|
35
35
|
version_requirements: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
|
-
- - "
|
|
37
|
+
- - ">"
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: '
|
|
39
|
+
version: '7'
|
|
40
40
|
- !ruby/object:Gem::Dependency
|
|
41
41
|
name: minitest
|
|
42
42
|
requirement: !ruby/object:Gem::Requirement
|